Skip to content

eknwoye/Systems-Update-Script

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Systems-Update-Script

BASH Systems Update Script For Debian & Ubuntu Linux Derivatives On x86/64 Chip set Platform Architectures. Unfettered Internet Access Is Essential In Running This Script

Explanation:

Shebang line: #!/bin/bash specifies the interpreter to use for the script. Update and Upgrade: sudo apt-get update: Updates the package lists to get the latest information about available packages. sudo apt-get dist-upgrade -y: Upgrades the system to the newest versions of packages, resolving dependencies automatically. The -y flag automatically answers "yes" to prompts. Install Build-Essential: sudo apt-get install build-essential -y: Installs the build-essential package, which provides essential development tools like a C compiler and other necessary libraries. Clean Package Cache: sudo apt-get clean: Removes package archives downloaded by apt-get. sudo apt-get autoclean: Removes obsolete packages. To run the script:

Save the script: Save the script as a .sh file (e.g., update_system.sh). Make it executable: Open a terminal and run the following command: Bash chmod +x update_system.sh Use code with caution.

Run the script: Execute the script using: Bash ./update_system.sh Use code with caution.

Note: You may need to provide your system's password when prompted by sudo.

About

BASH Systems Update Script For Debian & Ubuntu Linux Derivatives

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages