Por que não consigo instalar o comando midnight no Debian?

6

O comando midnight não está instalado no meu Debian Linux, então tentei baixá-lo.

Eu corri apt-get install mc no terminal, mas ele diz the pack is not found . Eu fiz essa tarefa como root e a conexão com a internet é perfeita. Não sei porque não consigo baixar e instalar o MC. Alguém sabe?

Meu /etc/apt/sources.list :

#

# deb cdrom: [Debian GNU/Linux 7.6.0 _Wheezy_ - Offical amd64 CD Binary-1 20140712-14:11]/ wheezy main

deb cdrom: [Debian GNU/Linux 7.6.0 _Wheezy_ - Offical amd64 CD Binary-1 20140712-14:11]/wheezy main

deb http://security.debian.org/ wheezy/update main
deb-src http://security.debian.org/ wheezy/updates main

# wheezy-updates, previously known as 'volatile'
# A networl mirror was not selected during install. The following entries
# are provided as examples, but you should amend them as appropriate
# for your mirror of choice.
#
# deb http://ftp.debian.org/debian/ wheezy-updates main
# deb-src http://ftp.debian.org/debian/ wheezy-updates main
    
por blackcornail 10.10.2014 / 16:48

2 respostas

6

Você está perdendo os repositórios principais do Debian, suas fontes apenas apontam para o repositório de segurança. Descomente as últimas linhas em /etc/apt/sources/list . Mude isso:

# deb http://ftp.debian.org/debian/ wheezy-updates main
# deb-src http://ftp.debian.org/debian/ wheezy-updates main

para isso:

 deb http://ftp.debian.org/debian/ wheezy main
 deb-src http://ftp.debian.org/debian/ wheezy main

Isso, no entanto, lhe dará acesso aos repositórios genéricos, você terá um desempenho muito melhor se escolher um de seus espelhos locais. Então, escolha um próximo a você em esta lista ou use netselect-apt :

sudo apt-get install netselect-apt
sudo netselect-apt -n wheezy
sudo cp ./sources.list /etc/apt/sources.list

Não importa o que você escolha fazer, lembre-se de atualizar suas fontes executando

sudo apt-get update
    
por 10.10.2014 / 17:46
3

Para utilizar o redirecionador do Debian ( link ) ...

The redirector uses the geo and network location of the user and the mirrors, the architecture of the requested files, IP address family, the availability and freshness of the mirrors, and a few other things.

Usando main, contrib e non-free com o redirecionador, /etc/apt/sources.list tem esta aparência:

deb http://http.debian.net/debian/ wheezy main contrib non-free
deb-src http://http.debian.net/debian/ wheezy main contrib non-free

deb http://security.debian.org/ wheezy/updates main contrib
deb-src http://security.debian.org/ wheezy/updates main contrib

# wheezy-updates, previously known as 'volatile'
deb http://http.debian.net/debian/ wheezy-updates main contrib
deb-src http://http.debian.net/debian/ wheezy-updates main contrib

Atualização: sudo apt-get update Instale o mc: sudo apt-get install mc

    
por 10.10.2014 / 18:03