-
vtel57
-
RE: Update ManagerPackage Manager problem please help!
-
Matt,
Unless you've manually enabled the root account on your Ubuntu, then there won't be a root account accessible to you. Ubuntu uses "sudo", which is a command that gives regular users temporary rights to perform what would normally be a root (administrator) chore.
When you open Synaptic (Add/Remove Software in the Menu), it should ask you for your password. It's asking for the password you created for your user account when you installed Ubuntu on your system.
Once in Synaptic, you should check to see that the repositories are set up correctly and have not been changed. One thing to always try to remember in situations like this is what did you do JUST BEFORE this problem started? Did you install something new? Did you update something? Did you make any other changes to the system? Et cetera... This will help you to troubleshoot where the problem began.
I'm not an Ubuntu guru. I haven't used it since '06 or so. I don't really remember the layout of the Synaptic package manager or how it works. I can tell you how to update manually, though...
In the command line (Terminal application from the Menu), type the following:
[code]$ sudo apt-get update[/code]
This command will ask you for your password. Enter it and continue. The "apt-get update" command will check the repos for updated files. Once it's completed its thing, type:
[code]$ sudo apt-get upgrade[/code]
This will again ask for you password. Enter it and go on. This command will upgrade all the software on your system for which there are updates available in the repos.
The two commands above "apt-get update" and "apt-get upgrade" are the actual commands underneath the pretty graphic Synaptic Package Manager that you use from the Menu in Ubuntu.
If there are any errors while running these commands, please post them here. They could help us to help you better to figure out what's wrong on your Ubuntu system.
Luck!
-
31 Mar 10
Matt,
Unless you've manually enabled the root account on your Ubuntu, then there won't be a root account accessible to you. Ubuntu uses "sudo", which is a command that gives regular users temporary rights to perform what would normally be a root (administrator) chore.
When you open Synaptic (Add/Remove Software in the Menu), it should ask you for your password. It's asking for the password you created for your user account when you installed Ubuntu on your system.
Once in Synaptic, you should check to see that the repositories are set up correctly and have not been changed. One thing to always try to remember in situations like this is what did you do JUST BEFORE this problem started? Did you install something new? Did you update something? Did you make any other changes to the system? Et cetera... This will help you to troubleshoot where the problem began.
I'm not an Ubuntu guru. I haven't used it since '06 or so. I don't really remember the layout of the Synaptic package manager or how it works. I can tell you how to update manually, though...
In the command line (Terminal application from the Menu), type the following:
$ sudo apt-get update
This command will ask you for your password. Enter it and continue. The "apt-get update" command will check the repos for updated files. Once it's completed its thing, type:
$ sudo apt-get upgrade
This will again ask for you password. Enter it and go on. This command will upgrade all the software on your system for which there are updates available in the repos.
The two commands above "apt-get update" and "apt-get upgrade" are the actual commands underneath the pretty graphic Synaptic Package Manager that you use from the Menu in Ubuntu.
If there are any errors while running these commands, please post them here. They could help us to help you better to figure out what's wrong on your Ubuntu system.
Luck!