E: entrada malformada 11 no arquivo de lista /etc/apt/sources.list (Component) [duplicate]

0

Eu tentei instalar o qt-5, mas consegui

E: Malformed entry 11 in list file /etc/apt/sources.list (Component)
E: The list of sources could not be read.
E: Malformed entry 11 in list file /etc/apt/sources.list (Component)
E: The list of sources could not be read.

Meu sources.list

#------------------------------------------------------------------------------#
#                            OFFICIAL UBUNTU REPOS                             #
#------------------------------------------------------------------------------#


###### Ubuntu Main Repos
deb http://55.archive.ubuntu.com/ubuntu/ xenial main 

###### Ubuntu Update Repos
deb http://55.archive.ubuntu.com/ubuntu/ xenial-updates main 
deb-src http://55.archive.ubuntu.com/ubuntu/ xenial-updates 

###### Ubuntu Partner Repo
deb http://archive.canonical.com/ubuntu xenial partner
deb-src http://archive.canonical.com/ubuntu xenial partner

#------------------------------------------------------------------------------#
#                           UNOFFICIAL UBUNTU REPOS                            #
#------------------------------------------------------------------------------#


###### 3rd Party Binary Repos

## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C6DAEA80
deb http://ppa.launchpad.net/boomaga/ppa/ubuntu xenial main # Boomaga PPA - https://launchpad.net/~boomaga/+archive/ubuntu/ppa

## Run this command: wget -q -O - http://dano.cu.cc/1Aci9Qp | sudo apt-key add - && sudo apt-get update
deb http://repo.daniil.it lenny main # Daniil's Bash Video Download - http://daniil.it

## Run this command: sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 614C4B38
deb http://ppa.launchpad.net/otto-kesselgulasch/gimp/ubuntu xenial main # Gimp PPA - https://launchpad.net/~otto-kesselgulasch/+archive/gimp

## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B1510FD
deb http://ppa.launchpad.net/gnome3-team/gnome3/ubuntu xenial main # GNOME3 Extra Apps PPA - https://launchpad.net/~gnome3-team/+archive/gnome3

## Run this command: wget -q https://dl.google.com/linux/linux_signing_key.pub -O- | sudo apt-key add -
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main # Google Chrome Browser - http://www.google.com/linuxrepositories/

## Run this command: wget -q https://dl.google.com/linux/linux_signing_key.pub -O- | sudo apt-key add -
deb [arch=amd64] http://dl.google.com/linux/earth/deb/ stable main # Google Earth - http://www.google.com/linuxrepositories/

## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys  247510BE
deb http://ppa.launchpad.net/ubuntu-mozilla-daily/ppa/ubuntu xenial main # Mozilla Daily Build Team PPA - http://edge.launchpad.net/~ubuntu-mozilla-daily/+archive/ppa

## Run this command: sudo wget -O - http://apt.mucommander.com/apt.key | sudo apt-key add - 
deb http://apt.mucommander.com stable main non-free contrib   # muCommander - http://www.mucommander.com/

## Run this command: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F24AEA9FB05498B7
deb [arch=i386] http://repo.steampowered.com/steam/ precise steam # Steam for Linux - http://store.steampowered.com/about/

## Run this command: curl -s https://syncthing.net/release-key.txt | sudo apt-key add -
deb http://apt.syncthing.net/ syncthing release # Syncthing - https://syncthing.net/

Conteúdo de /etc/apt/sources.list.d

canonical_partner.list       google.list.save     staticfloat-ubuntu-julia-deps-xenial.list          vivaldi.list.save
canonical_partner.list.save  hexinator.list       staticfloat-ubuntu-julia-deps-xensave
google.list                  libdvdcss.list.save  vivaldi.list
ial.list.save     webupd8team-ubuntu-java-xenial.list
google-chrome.list           hexinator.list.save  staticfloat-ubuntu-juliareleases-xenial.list       webupd8team-ubuntu-java-xenial.list.save
google-chrome.list.save      libdvdcss.list       staticfloat-ubuntu-juliareleases-xenial.list.
    
por Richard Rublev 12.09.2016 / 15:26

2 respostas

2

Isso parece o problema:

deb-src http://55.archive.ubuntu.com/ubuntu/ xenial-updates 

Você está perdendo a seção de componentes desta linha, deve ser algo como:

deb-src http://55.archive.ubuntu.com/ubuntu/ xenial-updates main universe

Sua sources.list não tem muitas seções importantes, incluindo atualizações de segurança, eu recomendo que você deixe o /etc/apt/sources.list sozinho e coloque suas personalizações em um arquivo .list em /etc/apt/sources.list.d/ para não quebrar o arquivo padrão.

Veja também:

por Jorge Castro 12.09.2016 / 16:51
0

Tente fazer uma atualização do apt-get para ver se isso ajuda. Se não acessar o arquivo com o vim / vi e vá para o prompt (ESC e :) e digite: 'set number' para ver o número das linhas. Verifique a linha 11 e se há algo errado com isso. Você pode tentar comentar esta linha e executar uma atualização do apt-get novamente para ver se isso ajuda.

    
por Adonist 12.09.2016 / 15:54