1

I am new to Ubuntu and excuse me if this is a quick fix. I am having issues running apt-get update and the error message that repeatedly comes up is:

Ign http://archive.ubuntu.com trusty InRelease
Hit http://archive.ubuntu.com trusty Release.gpg                               
Hit http://archive.ubuntu.com trusty Release                                   
Ign http://archive.canonical.com trusty InRelease                              
Hit http://archive.ubuntu.com trusty/restricted Sources
Hit http://archive.ubuntu.com trusty/main Sources                              
Ign http://extras.ubuntu.com trusty InRelease                                  
Hit http://archive.canonical.com trusty Release.gpg                            
Hit http://archive.ubuntu.com trusty/universe Sources              
Hit http://archive.ubuntu.com trusty/multiverse Sources                        
Hit http://extras.ubuntu.com trusty Release.gpg                                
Hit http://archive.canonical.com trusty Release                   
Hit http://archive.ubuntu.com trusty/restricted amd64 Packages                 
Hit http://archive.ubuntu.com trusty/main amd64 Packages          
Hit http://extras.ubuntu.com trusty Release                       
Hit http://archive.canonical.com trusty/partner Sources                        
Hit http://archive.ubuntu.com trusty/universe amd64 Packages      
Hit http://archive.ubuntu.com trusty/multiverse amd64 Packages    
Hit http://extras.ubuntu.com trusty/main Sources
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/trusty/Release  Unable to find expected entry 'restricted/binary-i3836/Packages' in Release file (Wrong sources.list entry or malformed file)

E: Some index files failed to download. They have been ignored, or old ones used instead.

I have tried removing the sources.list file and then replacing it by using the command "software-properties-gtk" but it doesn't work. Any thoughts?

muru
  • 207,228
jpn
  • 21
  • 2

1 Answers1

1

It seems like I had accidentally added an incorrect foreign architecture to my computer when using the "dpkg --add-architecture" command at a previous date. Below is the incorrect command I had entered:

sudo dpkg --add-architecture i3836

That is why binary-i3836 was a reoccurring issue. I used the command below to fix the issue:

sudo dpkg --remove-architecture i3836

I can use sudo apt-get update fine now.

jpn
  • 21
  • 2