Announcement

Collapse
No announcement yet.

update broken?!!! :O:O [SOLVED]

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

    update broken?!!! :O:O [SOLVED]

    wow... after so many problems with oneiric, now my updates do not work!!

    Code:
    apt-get install update
    Reading package lists... Done
    Building dependency tree    
    Reading state information... Done
    E: Unable to locate package update
    I cant even find the GUI of Update in K menu anymore!!
    Cheers, -Linda

    #2
    Re: update broken?!!! :O:O

    It appears you're mixing commands. The command you've typed says, "Hello, computer, please install the package called update for me." Since no such package exists, the computer tells you that it can't do that.

    First, you need to update your computer's list of packages with this command:

    Code:
    sudo apt-get update
    After that, you can upgrade existing packages using either of these:

    Code:
    sudo apt-get upgrade
    Code:
    sudo apt-get dist-upgrade
    To understand the difference, run the following command to see the documentation:

    Code:
    man apt-get

    Comment


      #3
      Re: update broken?!!! :O:O

      Originally posted by SteveRiley
      It appears you're mixing commands. The command you've typed says, "Hello, computer, please install the package called update for me." Since no such package exists, the computer tells you that it can't do that.

      First, you need to update your computer's list of packages with this command:

      Code:
      sudo apt-get update
      After that, you can upgrade existing packages using either of these:

      Code:
      sudo apt-get upgrade
      Code:
      sudo apt-get dist-upgrade
      To understand the difference, run the following command to see the documentation:

      Code:
      man apt-get

      Thanks for the carification Steve... I just remembered I used to do it with 'install', but maybe im getting confused with 'yum' in Redhat... no idea for now
      thanks anyways
      Cheers, -Linda

      Comment

      Working...
      X