This is tools i have created to help making my selfhosting experience way more easier and less hassle to use Everything here can be modified if needed its allowed to change it in your own ways
Projects DebUpgrades
debupgrade
is a custom command for Debian-based Linux systems that simplifies the process of updating and upgrading your system with a single command. It also includes an automatic removal of unnecessary packages to help keep your system clean.
-
Update Package Lists:
debupgrade
begins by runningsudo apt update
to update the package lists from your software repositories. -
Upgrade Installed Packages: After updating the package lists, it proceeds to upgrade all installed packages with
sudo apt upgrade -y
. The-y
flag automatically confirms package upgrades without user intervention. -
Autoremove Unused Packages: To keep your system tidy,
debupgrade
concludes by executingsudo apt autoremove -y
, which removes any unnecessary packages that are no longer required by any installed software.
To use debupgrade
, simply open your terminal and run the following sudo debupgrade which does evrything in one single command
sudo wget https://raw.githubusercontent.com/GamerX27/My-Linux-Server-Commands-tools/main/debupgrade.sh && sudo bash debupgrade.sh