Do I need to update the Octo-Pi OS? (YUM)

Just curious, should I be running YUM updates on my Octo-Pi? If so, is there a way to do this from Octo-print directly? I don't see a command shell plugin.

Thank you for your time.

Tony

I run it every week or so from an ssh session
It is actually sudo apt-get update on the pi

1 Like

Ah ok Apt-Get. Thanks.

Yeah...

...no.

sudo apt-get update          # Update the app repository database about the possibilities available
sudo apt-get upgrade -y      # Update the current collection of installed apps
1 Like

I get that I need to sudo first, just didn't type it all out. :wink:

OutsourcedGuru's answer is not about the need of "sudo" , it's about the two needed commands: "update" and "upgrade" ... :wink:

1 Like

Thank you. While I am familiar with how Apt-get works I do appreciate the extra detail in this post for those who might not. I don't want anyone to think that I'm ungrateful. A little lazy when it comes to typing perhaps.

Again thank you all!

Tony

One line command

$ sudo apt update && apt upgrade -y

sudo = super user do or run this command as "root" user

Sit back and let it finish up :slight_smile:

1 Like

Sudo doesn't chain, btw.

$ sudo apt update && sudo apt upgrade -y
3 Likes

Right..gotta be sudo su'd to do it...sorry

$ sudo apt update && sudo apt upgrade -y && sudo reboot