Disclaimer: This reflects my personal preferences.
Note: This pretty much applies to any *buntu/deb-based.
"Anything to declare?" "Yeah. Don't use Discover" (AKA Software Center).
What you may want to do instead is:
In your /home, you have a file called .bashrc. Open with Kate.
Ctrl-F and find "alias".
Add a line in there:
alias upd='sudo apt update && sudo apt full-upgrade -y'
Save file, open konsole (F4 in Kate and Dolphin, btw) and type
source .bashrc
After that, you can just type upd, give it the pw, et voilà.
You can do other things while it works, you'll see it uses little resources.
You may want to eliminate the "-y" in case you want to confirm or abort the update if it looks too big - or something. Otherwise it's fire-and-forget.
Note: This pretty much applies to any *buntu/deb-based.
"Anything to declare?" "Yeah. Don't use Discover" (AKA Software Center).
What you may want to do instead is:
In your /home, you have a file called .bashrc. Open with Kate.
Ctrl-F and find "alias".
Add a line in there:
alias upd='sudo apt update && sudo apt full-upgrade -y'
Save file, open konsole (F4 in Kate and Dolphin, btw) and type
source .bashrc
After that, you can just type upd, give it the pw, et voilà.
You can do other things while it works, you'll see it uses little resources.
You may want to eliminate the "-y" in case you want to confirm or abort the update if it looks too big - or something. Otherwise it's fire-and-forget.
Comment