| 11 | | First thing to do is update the Ubuntu packages using apt-get. |
| | 11 | Manually uncomment all repositories to include "universe" and "multiverse" either via direct editing |
| | 12 | |
| | 13 | sudo <EDITOR> /etc/apt/sources.list |
| | 14 | |
| | 15 | or via the provided GUI: System -> Administration -> Software Sources. Then enter the admin password for access. On the "Ubuntu" tab, make sure all of "main restricted universe multiverse" are checked and the rest unchecked (or deal with those are you deem correct for your setup). Click "Close", then "Reload" to update the package list. |
| | 16 | |
| | 17 | The uncommented lines of the file "/etc/apt/sources.list" should read something like: |
| | 18 | |
| | 19 | {{{ |
| | 20 | deb http://us.archive.ubuntu.com/ubuntu/ gusty main restricted universe multiverse |
| | 21 | deb http://us.archive.ubuntu.com/ubuntu/ gutsy-updates main restricted universe multiverse |
| | 22 | deb http://security.ubuntu.com/ubuntu/ gusty-security main restricted universe multiverse |
| | 23 | }}} |
| | 24 | |
| | 25 | |
| | 26 | Update the local dpkg cache and upgrade: |