Announcement

Collapse
No announcement yet.

How to check for updates/upgrades?

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to check for updates/upgrades?

    What's the best way that covers all I have in my 8.10 box to get upgrades/updates? I have the auto updates turned on to "daily" already but would like a command line so I could check when I feel the need!

    Thanx Bob
    Being able to access the internet whilst answering a call of nature was 'one of life's most liberating experiences.'  Vic Hayes

    #2
    Re: How to check for updates/upgrades?

    Code:
    sudo apt-get update
    This forces a check for updates.
    Windows no longer obstructs my view.
    Using Kubuntu Linux since March 23, 2007.
    "It is a capital mistake to theorize before one has data." - Sherlock Holmes

    Comment


      #3
      Re: How to check for updates/upgrades?

      Thanx Snowhog, I watched as I ran the command line. I got a couple updates and I think they were installed. Does that command line install them as well as check for them?

      Bob
      Being able to access the internet whilst answering a call of nature was 'one of life's most liberating experiences.'  Vic Hayes

      Comment


        #4
        Re: How to check for updates/upgrades?

        No, it just checks for updates. If updated packages are identified, it's easiest to then launch Adept Manager, either from K Menu, or by clicking on the Update Notifier icon in the system tray (if it shows up).
        Windows no longer obstructs my view.
        Using Kubuntu Linux since March 23, 2007.
        "It is a capital mistake to theorize before one has data." - Sherlock Holmes

        Comment


          #5
          Re: How to check for updates/upgrades?

          If you want to install package upgrades with a command, you can do either:
          Code:
          sudo apt-get update && sudo apt-get upgrade
          (upgrade only packages that can be upgraded without removing packages or installing new packages)
          or
          Code:
          sudo apt-get update && sudo apt-get dist-upgrade
          (upgrade all packages, even if the upgrade installs new packages or removes packages, due to changed dependencies/conflicts)

          Another option would be to install wajig (which is an advanced front-end to apt and dpkg). With wajig you can do, for example:
          Code:
          wajig daily-upgrade
          which will update the package lists and perform a dist-upgrade.
          You can get a list of things wajig can do with 'wajig commands'

          Comment


            #6
            Re: How to check for updates/upgrades?

            Thanx Snowhog, I went ahead and used Adept to get the upgrades and it worked fine. My upgrade notifier doesn't seem to be popping up anywhere on the panel. Is there a certain time of day that it checks for updates?

            Kubicle, earlier today was the first time I used "wajig" I used it to generate a list of apps to a *.lst.... pretty slick. In a couple days I'll do an upgrade with it and see how it works. Thanx for the tip.

            Bob
            Being able to access the internet whilst answering a call of nature was 'one of life's most liberating experiences.'  Vic Hayes

            Comment

            Working...
            X