Como restauro o arquivo sources.list? [duplicado]

13

Eu acidentalmente removi meu arquivo /etc/apt/sources.list . É hospedado pela Canonical em algum lugar para que eu possa adicioná-lo novamente ao sistema? É um pouco de emergência, então espero que alguém possa dar uma resposta rápida.

    
por Oxwivi 19.06.2011 / 22:33

4 respostas

10

Você pode inicializar em um Live CD (uma máquina virtual será suficiente) e copiar /etc/apt/sources.list dele. Como alternativa, tenha uma imagem do Live CD pronta e siga estas instruções:

  1. Monte o CD. Se você tiver um arquivo .iso , monte-o usando:

    sudo mount -o loop ubuntu-11.04-desktop-amd64.iso /media/cdrom
    
  2. Monte o arquivo do sistema de arquivos a partir do CD:

    sudo mount -o loop /media/cdrom/casper/filesystem.squashfs /mnt
    
  3. Copie o arquivo sources.list:

    sudo cp {/mnt,}/etc/apt/sources.list
    
  4. Altere as permissões do arquivo, se necessário:

    sudo chmod 644 /etc/apt/sources.list
    

Do meu Live CD do Ubuntu 11.04:

deb http://archive.ubuntu.com/ubuntu natty main restricted
deb-src http://archive.ubuntu.com/ubuntu natty main restricted

deb http://security.ubuntu.com/ubuntu natty-security main restricted
deb-src http://security.ubuntu.com/ubuntu natty-security main restricted

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

## Uncomment the following two lines to add software from the 'universe'
## repository.
## 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://archive.ubuntu.com/ubuntu natty universe
# deb-src http://archive.ubuntu.com/ubuntu natty universe
# deb http://archive.ubuntu.com/ubuntu natty-updates universe
# deb-src http://archive.ubuntu.com/ubuntu natty-updates universe
# deb http://security.ubuntu.com/ubuntu natty-security universe
# deb-src http://security.ubuntu.com/ubuntu natty-security 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://archive.ubuntu.com/ubuntu natty multiverse
# deb-src http://archive.ubuntu.com/ubuntu natty multiverse
# deb http://archive.ubuntu.com/ubuntu natty-updates multiverse
# deb-src http://archive.ubuntu.com/ubuntu natty-updates multiverse
# deb http://security.ubuntu.com/ubuntu natty-security multiverse
# deb-src http://security.ubuntu.com/ubuntu natty-security multiverse

Para a melhor velocidade de download, você precisa selecionar novamente um espelho perto de você:

  1. Abra o Ubuntu Software Center
  2. Abrir Editar - > Fontes de software ...
  3. Clique na caixa de seleção ao lado de Download de:
  4. Selecione um servidor à sua escolha

Você pode querer ativar alguns repositórios também, como software de código aberto mantido pela comunidade (universo) e Software restrito por direitos autorais e questões legais (multiverse)

    
por Lekensteyn 19.06.2011 / 22:39
3

Caso você não esteja no servidor Ubuntu, ou seja, sem GUI. Você pode seguir os seguintes passos: -

  1. Ir para Software e atualizações .
  2. Selecione Ubuntu Software .
  3. Selecione as fontes que você deseja ter.
  4. Clique em Fechar . Ele pedirá para recarregar e atualizar o cache.
  5. Clique em Recarregar .

Espere e relaxe; Ele irá criar automaticamente o arquivo sources.list para você.

    
por ARP 27.01.2017 / 23:20
2

Para 16.04

Aqui está uma lista que você pode usar para /etc/apt/sources.list

Basta executar o seguinte comando:

sudo nano /etc/apt/sources.list

e copie e cole o seguinte conteúdo no arquivo (estas devem ser as únicas linhas no arquivo!):

deb http://archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse

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

deb http://archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu xenial-security main restricted universe multiverse
deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted universe multiverse

deb http://archive.canonical.com/ubuntu xenial partner
deb-src http://archive.canonical.com/ubuntu xenial partner

Pressione CTRL + o e depois pressione ENTER para salvar o arquivo. Pressione CTRL + x para sair de nano .

    
por mchid 22.05.2016 / 12:27
1

Eu usei o gerador nifty sources.list no link - isso pode não ser apropriado para todos, mas funciona de maneira rápida e simples se você souber quais opções deseja selecionar.

    
por sage 10.04.2013 / 20:05