TropicalDingdong@lemmy.world to linuxmemes@lemmy.world · 2 months agoi guess its about time..lemmy.worldimagemessage-square23linkfedilinkarrow-up1222arrow-down11
arrow-up1221arrow-down1imagei guess its about time..lemmy.worldTropicalDingdong@lemmy.world to linuxmemes@lemmy.world · 2 months agomessage-square23linkfedilink
minus-squareslazer2au@lemmy.worldlinkfedilinkEnglisharrow-up21·2 months agoI get that when I forget to update a Ubuntu VM for a week.
minus-squareTropicalDingdong@lemmy.worldOPlinkfedilinkarrow-up17·2 months agoi’m like 80/20 if this is just going to straight bork the machine.
minus-squareslazer2au@lemmy.worldlinkfedilinkEnglisharrow-up15·2 months agoExecute order Sudo apt update && sudo apt upgrade -y && sudo apt auto remove -y Needs a more concise order name…
minus-squareSkullgrid@lemmy.worldlinkfedilinkarrow-up8·edit-22 months agocd ~ nano .bash_aliases At the end of the file alias executeOrder="sudo apt update && sudo apt upgrade -y && sudo apt auto remove -y" Ctrl+X Y Enter. source .bash_aliases There. Now it’s executeOrder Edit : .bash_alias(es?) should be in the home folder. Switch to it with cd ~
minus-squareloweffortname@lemmy.dbzer0.comlinkfedilinkarrow-up5·2 months agoTiny nits: apt dist-upgrade is more potentially destructive. It’s apt autoremove (no spaces) Otherwise, I do this every morning on my work machine. It’s very satisfying to have updates.
I get that when I forget to update a Ubuntu VM for a week.
i’m like 80/20 if this is just going to straight bork the machine.
Execute order
Sudo apt update && sudo apt upgrade -y && sudo apt auto remove -yNeeds a more concise order name…
At the end of the file
Ctrl+X
Y
Enter.
There. Now it’s executeOrder
Edit : .bash_alias(es?) should be in the home folder. Switch to it with cd ~
Tiny nits:
apt dist-upgradeis more potentially destructive.apt autoremove(no spaces)Otherwise, I do this every morning on my work machine. It’s very satisfying to have updates.