When I try sudo apt-get install ubuntu-desktop I get the error message: unable to locate package ubuntu-desktop. Where do I obtain the package? Or what am I doing wrong?
Asked
Active
Viewed 1.4e+01k times
2 Answers
14
The most likely situation is that you need to update your sources for some reason, with
sudo apt-get update
It's also possible that your sources aren't set up correctly. You can configure them in the update manager. They are located in the file /etc/apt/sources.list - if you continue to have problems paste the source of that file here.
thomasrutter
- 36,068
- 10
- 86
- 105
-
how do I navigate to that file? Whenever I try typing /etc/apt/...I get the message - command not found. I'm a very new beginner btw. – Tom May 05 '12 at 06:04
-
gedit /etc/apt/ sources.list ;if you use ubuntu gedit installed by default – Nur May 28 '13 at 14:28
8
Enter the following in the terminal:
sudo su
apt-get clean
cd /var/lib/apt
mv lists lists.old
mkdir -p lists/partial
apt-get clean
apt-get update
Mehdi Charife
- 119
- 7
zaighum
- 81
- 1
- 1