[UBUNTU] Update OS แบบ Command Line

หลังจากใช้ Ubuntu มาสักพัก ลองใช้ Update ผ่าน UI แล้ว ไม่ค่อยประทับใจเท่าไหร่เลย ปล่อยทั้งวันก็ยังไม่เสร็จ มาลองคำสั่งดีกว่าครับ ง่ายเพียงแค่ 3 บรรทัดเท่านั้น

sudo apt-get update        # Fetches the list of available updates
sudo apt-get upgrade       # Strictly upgrades the current packages
sudo apt-get dist-upgrade  # Installs updates (new ones)

หรือใหม่กว่าหน่อย เค้าว่า apt เร็วกว่า apt-get

sudo apt update        # Fetches the list of available updates
sudo apt upgrade       # Strictly upgrades the current packages
sudo apt dist-upgrade  # Installs updates (new ones)

Reference


Discover more from naiwaen@DebuggingSoft

Subscribe to get the latest posts sent to your email.