I'm trying to either test a fix that's been proposed or I want to volunteer to test stable release updates before they are pushed out to general users, how can I enable the "proposed" repository?
4 Answers
From the wiki page on the -proposed repository:
To enable the proposed archive for Ubuntu 11.04 go to Applications→Ubuntu Software Center→Edit→Software Sources→Updates and ensure that natty-proposed is ticked.


Those directions map well to recent Ubuntu releases such as 10.10, 10.04, 9.10, etc.
Here are recent pictures from 12.04.


- 8,152
- 410
Using the Command Line
Manual addition
With root permissions edit your /etc/apt/sources.list:
sudo vim /etc/apt/sources.list
Then look for the following line or add it yourself:
deb http://archive.ubuntu.com/ubuntu/ precise-proposed restricted main multiverse universe
(If you are not using precise, you can replace it with your current version)
Save your file. Then run sudo apt-get update and install the package you want to use sudo apt-get install package/precise-proposed or sudo apt-get -t precise-proposed install package.
sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu/ $(lsb_release -cs)-proposed restricted main multiverse universe' >> /etc/apt/sources.list.d/proposed-repositories.list"
- 69,112
The answer marked as the best one is a bit outdated. From Ubuntu 16.04 the steps are the following:
- Open Software & Updates app.
- Go to the latest tab Developer Options.
- Tick Pre-release updates.
Always up-to-date instruction you can find here: https://wiki.ubuntu.com/Testing/EnableProposed
You can try UBUNTU SOURCES.LIST AUTOMATIC GENERATOR: includes all of the default repositories that are available through Ubuntu's own GUI, and you can also add other popular/useful PPAs like wine, virtualbox, tor, playdeb and getdeb, mozilla daily builds, medibuntu, etc...
- 1,945
