#!/bin/bash # # echo -n "Lege neue sources.list mit Paketquellen an ..." cat <> /etc/apt/sources.list # # Quelle: http://repogen.simplylinux.ch/ # deb http://www.heise.de/ct/projekte/desinfect/ubuntu 2013 main #deb http://archive.ubuntu.com/ubuntu precise main restricted #deb http://security.ubuntu.com/ubuntu precise-updates main restricted #deb http://security.ubuntu.com/ubuntu precise-security main restricted ############################################################# ################### OFFICIAL UBUNTU REPOS ################### ############################################################# ###### Ubuntu Main Repos deb http://de.archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse deb-src http://de.archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse ###### Ubuntu Update Repos deb http://de.archive.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse deb http://de.archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse deb-src http://de.archive.ubuntu.com/ubuntu/ precise-security main restricted universe multiverse deb-src http://de.archive.ubuntu.com/ubuntu/ precise-updates main restricted universe multiverse ###### Ubuntu Partner Repo deb http://archive.canonical.com/ubuntu precise partner deb-src http://archive.canonical.com/ubuntu precise partner ###### Ubuntu Extras Repo deb http://extras.ubuntu.com/ubuntu precise main deb-src http://extras.ubuntu.com/ubuntu precise main ############################################################## ##################### UNOFFICIAL REPOS ###################### ############################################################## ###### 3rd Party Binary Repos #### Opera - http://www.opera.com/ ## Run this command: sudo wget -O - http://deb.opera.com/archive.key | sudo apt-key add - deb http://deb.opera.com/opera/ stable non-free #### PlayOnLinux - http://www.playonlinux.com/en ## Run this command: wget -q "http://deb.playonlinux.com/public.gpg" -O- | sudo apt-key add - deb http://deb.playonlinux.com/ precise main #### Ubuntu Tweak - http://ubuntu-tweak.com/ ## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0624A220 deb http://ppa.launchpad.net/tualatrix/ubuntu precise main #### Unsettings - http://www.florian-diesch.de/software/unsettings/ ## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0FEB6DD9 deb http://ppa.launchpad.net/diesch/testing/ubuntu precise main ####### 3rd Party Source Repos #### Ubuntu Tweak (Source) - http://ubuntu-tweak.com/ ## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0624A220 deb-src http://ppa.launchpad.net/tualatrix/ubuntu precise main #### Unsettings (Source) - http://www.florian-diesch.de/software/unsettings/ ## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0FEB6DD9 deb-src http://ppa.launchpad.net/diesch/testing/ubuntu precise main EOF echo " Done"