debian: aptitude instala sshfs Não foi possível encontrar nenhum pacote cujo nome [fechado]

0

Por que o fitness não encontrou o sshfs? E como posso instalar o sshfs via aptitude? Fundamentos, sem 3 partes.

link

Eu digitei isto:

root@s18:~# aptitude update
Hit http://security.debian.org wheezy/updates Release.gpg
Hit http://security.debian.org wheezy/updates Release
Hit http://ftp.de.debian.org wheezy Release.gpg
Hit http://security.debian.org wheezy/updates/main Sources
Hit http://ftp.de.debian.org wheezy Release
Hit http://security.debian.org wheezy/updates/contrib Sources
Hit http://security.debian.org wheezy/updates/non-free Sources
Hit http://security.debian.org wheezy/updates/main amd64 Packages
Hit http://ftp.de.debian.org wheezy/main Sources
Hit http://security.debian.org wheezy/updates/contrib amd64 Packages
Hit http://security.debian.org wheezy/updates/non-free amd64 Packages
Hit http://ftp.de.debian.org wheezy/contrib Sources
Hit http://security.debian.org wheezy/updates/contrib Translation-en
Hit http://security.debian.org wheezy/updates/main Translation-en
Hit http://ftp.de.debian.org wheezy/non-free Sources
Hit http://security.debian.org wheezy/updates/non-free Translation-en
Hit http://ftp.de.debian.org wheezy/contrib amd64 Packages
Hit http://ftp.de.debian.org wheezy/non-free amd64 Packages
Hit http://ftp.de.debian.org wheezy/contrib Translation-en
Hit http://ftp.de.debian.org wheezy/non-free Translation-en

root@s18:~# aptitude dist-upgrade
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.

root@s18:~# aptitude install sshfs
Couldn't find any package whose name or description matched "sshfs"
Couldn't find any package whose name or description matched "sshfs"
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.

root@s18:~# cat /etc/debian_version 
7.5
root@s18:~# 

Minhas fontes:

root@s18:~# cat /etc/apt/sources.list
deb http://ftp.de.debian.org/debian/ wheezy contrib non-free
deb-src http://ftp.de.debian.org/debian/ wheezy main contrib non-free
deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free
root@s18:~# ls /etc/apt/sources.list.d/
root@s18:~#

e

root@s18:~# aptitude search sshfs
root@s18:~# apt-cache search sshfs       
root@s18:~# apt-get -s install sshfs
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package sshfs
root@s18:~# 
    
por user68463 24.05.2014 / 15:08

1 resposta

1

Seu problema é sua principal linha de código deb :

deb http://ftp.de.debian.org/debian/ wheezy contrib non-free

Isso extrai os repositórios contrib e non-free da versão wheezy , mas não o repositório main , que é onde a maioria do Debian vive. No entanto, você está recebendo atualizações de segurança para main ; Eu suponho que sshfs não tenha tido nada que garanta um lançamento lá desde que Wheezy foi libertado.

Como foi descoberto nos comentários da pergunta, adicionar o repositório main resolve o problema:

deb http://ftp.de.debian.org/debian/ wheezy main contrib non-free

    
por 24.05.2014 / 16:41