“apt-get update” falha com o erro “Malformed entry in list file” [duplicado]

2

Depois de logar como root, eu digito apt-get update , e isso me dá:

E: Malformed entry 51 in list file /etc/apt/sources.list (URI parse)
E: Malformed entry 1 in list file /etc/apt/sources.list.d/docker.list (Component)
E: The list of sources could not be read.

O que há de errado com isso?

Vendo muitas respostas relacionadas, introduzo o código: sudo -H gedit /etc/apt/sources.list

então mostra:

# deb cdrom:[Ubuntu 16.10 _Yakkety Yak_ - Release amd64 (20161012.2)]/ yakkety main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ yakkety main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ yakkety main restricted

## Major bug fix updates produced after the final release of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ yakkety-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ yakkety universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ yakkety universe
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ yakkety-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ yakkety multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ yakkety multiverse
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-updates multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ yakkety-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ yakkety-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ yakkety-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu yakkety partner
# deb-src http://archive.canonical.com/ubuntu yakkety partner

deb http://security.ubuntu.com/ubuntu yakkety-security main restricted
# deb-src http://security.ubuntu.com/ubuntu yakkety-security main restricted
deb http://security.ubuntu.com/ubuntu yakkety-security universe
# deb-src http://security.ubuntu.com/ubuntu yakkety-security universe
deb http://security.ubuntu.com/ubuntu yakkety-security multiverse
deb http yakkety main  
# deb-src http yakkety main
deb http://dl.openfoam.org/ubuntu yakkety main
# deb-src http://dl.openfoam.org/ubuntu yakkety main
# deb-src http://dl.openfoam.org/ubuntu yakkety main
# deb-src http://security.ubuntu.com/ubuntu yakkety-security multiverse

Por favor, explique-me como remover essa linha malformada. A linha 51 é deb http yakkety main 6 do final.

    
por Draco 04.01.2017 / 16:05

3 respostas

4

A linha 51, "deb http yakkety main", não é uma referência a um repositório, e o repositório "yakkety / main" do Ubuntu já está vinculado à linha 5. Portanto, a linha 51 deve ser removida. A linha 52 também é uma linha mal-comentada comentada e também deve ser removida para evitar futuras confusões.

Para remover as linhas 51 e 52:

  • Execute este comando sed -i.bak -e '51d; 52d;' /etc/apt/sources.list . Isso também criará um backup chamado "/etc/apt/sources.list.bak" para o caso de ser recuperado e você desejar recuperá-lo mais tarde. Ele não deve produzir nenhuma saída e você só precisará executar o comando uma vez.

OR

  • Abra /etc/apt/sources.list em seu editor de texto favorito (certifique-se de executá-lo com sudo . Por exemplo: sudo -H gedit /etc/apt/sources.list ), exclua as duas linhas e salve e feche o arquivo.

Agora você pode executar sudo apt update e ele deve ser concluído com êxito.

    
por Danyc0 04.01.2017 / 16:24
3

Provavelmente você deve remover deb http yakkety main , já que não é um repositório, (url), para removê-lo, abrir o arquivo sources.list com privilégios e simplesmente excluí-lo normalmente, depois salve o arquivo e faça sudo apt-get update

Além disso, você não postou o conteúdo em /etc/apt/sources.list.d/docker.list , mas precisará remover a primeira linha em /etc/apt/sources.list.d/docker.list quando o erro se referir a ela

Backup dos arquivos

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

sudo cp /etc/apt/sources.list.d/docker.list/ /etc/apt/sources.list.d/docker.list.bak

Em seguida, abra o arquivo com gedit sudo gedit /etc/apt/sources.list e remova a linha

Faça o mesmo com docker.list , sudo gedit /etc/apt/sources.list.d/docker.list

Em seguida, salve os arquivos e pronto.

    
por Arduino_Sentinel 04.01.2017 / 16:18
1

Como diz o erro. Na linha 51:

deb http yakkety main 

comente isso.

    
por Carl 04.01.2017 / 16:18