Does anyone know the proper route to change /etc/apt/sources.list so that you do not end up with duplicates in Muon Package Manager or Apt-get.
On two machines I totally replaced the contents of sourses.list with a nice new shiny formated easy to read one as like below only with more entries.
When I did this I ended up with a nightmare of duplicate warnings when running apt-get update.
It turns out that in order to avoid this problem I had to do the following procedure.
1) Go into Muon Package manager to get to Software sources and delete all sources and then close the app
2) change /etc/apt/sources.list
3) run sudo apt-get update
4) now open Muon again and check for updates.
Question is Here >> Is there a way to get these two pieces of software in sync with the same sources.list without having to do the 4 steps above?
On two machines I totally replaced the contents of sourses.list with a nice new shiny formated easy to read one as like below only with more entries.
When I did this I ended up with a nightmare of duplicate warnings when running apt-get update.
It turns out that in order to avoid this problem I had to do the following procedure.
1) Go into Muon Package manager to get to Software sources and delete all sources and then close the app
2) change /etc/apt/sources.list
3) run sudo apt-get update
4) now open Muon again and check for updates.
Question is Here >> Is there a way to get these two pieces of software in sync with the same sources.list without having to do the 4 steps above?
Code:
################################################################################ OFFICIAL UBUNTU REPOS ################### ############################################################# ###### Ubuntu Main Repos deb http://us.archive.ubuntu.com/ubuntu/ utopic main restricted universe multiverse deb-src http://us.archive.ubuntu.com/ubuntu/ utopic main restricted universe multiverse ###### Ubuntu Update Repos deb http://us.archive.ubuntu.com/ubuntu/ utopic-security main restricted universe multiverse deb http://us.archive.ubuntu.com/ubuntu/ utopic-updates main restricted universe multiverse deb-src http://us.archive.ubuntu.com/ubuntu/ utopic-security main restricted universe multiverse deb-src http://us.archive.ubuntu.com/ubuntu/ utopic-updates main restricted universe multiverse ###### Ubuntu Partner Repo deb http://archive.canonical.com/ubuntu utopic partner deb-src http://archive.canonical.com/ubuntu utopic partner ############################################################## ##################### UNOFFICIAL REPOS ###################### ############################################################## ###### 3rd Party Binary Repos #### Dropbox PPA - http://dropbox.com ## Run this command: sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 5044912E deb http://linux.dropbox.com/ubuntu/ utopic main #### Kubuntu Backports PPA - https://edge.launchpad.net/~kubuntu-ppa/+archive/backports ## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8AC93F7A deb http://ppa.launchpad.net/kubuntu-ppa/backports/ubuntu utopic main
Comment