Ubuntu – How to change the repositories to saucy from raring after upgrade

13.10release-managementrepositoryupgrade

During the Saucy update it said that it would disable some packages, and it did.

In Software & Updates under Other Software a lot of my repositories are either "disabled on upgrade to saucy" or end in raring.
IE:

Http://ppa.launchpad.net/webupd8team/java/ubuntu
Distribution: raring
Componets: main
Comment: disabled on upgrade to saucy

Do I just change the distribution to saucy?
Do I have to do that to all of them?

Best Answer

I wrote a bash script that removes the leading hash character from all files in sources.list.d that were disabled during the upgrade. I also posted the same code in What's the best way to re-enable ppa's/repos after an upgrade?.

The following code is for upgrading raring sources to saucy.

If you want to keep the suffix # disabled on upgrade to ..., use

for f in /etc/apt/sources.list.d/*.list; do sudo sed -i 's/raring/saucy/g' $f; sudo sed -i 's/^# \(.*disabled on upgrade to.*\)/\1/g' $f;done

if you want to delete the suffix # disabled on upgrade to ..., use

for f in /etc/apt/sources.list.d/*.list; do sudo sed -i 's/raring/saucy/g' $f; sudo sed -i 's/^# \(.*\) # disabled on upgrade to.*/\1/g' $f;done
Related Question