0

I use Ubuntu 14.04 LTS. When I run,

sudo apt-get update

the terminal gives me,

Reading package lists... Done
W: Duplicate sources.list entry http://dl.google.com/linux/chrome/deb/ stable/main amd64 Packages (/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-amd64_Packages)
W: Duplicate sources.list entry http://dl.google.com/linux/chrome/deb/ stable/main i386 Packages (/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-i386_Packages)
W: You may want to run apt-get update to correct these problems

How to resolve this.

ddas
  • 446
  • please read: http://askubuntu.com/questions/120621/how-to-fix-duplicate-sources-list-entry – Minos Jan 14 '15 at 10:39

1 Answers1

0

Edit sources.list and comment out the duplicate entry.

  • Edit sources.list:

    sudo nano /etc/apt/sources.list
    
  • Place a # in front of the duplicate entry

  • Save:

    CTRL + X, Y, ENTER

  • Update:

    sudo apt-get update
    

Now try again.

Source

Babbzzz
  • 346
  • 2
  • 12
  • actually, the google chrome entry should be found in an individual file under the directory /etc/apt/sources.list.d – mchid Jan 14 '15 at 21:37