install pacote do ubuntu dvd

1

Eu quero instalar algum pacote do ubunu 14.04 LTS dvd. Abaixo está o que eu fiz. Alguém poderia por favor apontar o que estava faltando?

root@ubunto:~# mount ~/ubuntu-14.04-desktop-amd64.iso /tmpmt -o loop
root@ubunto:~# ls /tmpmt 
autorun.inf  casper  EFI      isolinux    pics  preseed             ubuntu
boot         dists   install  md5sum.txt  pool  README.diskdefines  wubi.exe

root@ubunto:~# add-apt-repository "deb file:/tmpmt/ trusty dists"
root@ubunto:~# apt-get update
Ign cdrom://Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417) trusty InRelease
Ign file: trusty InRelease                                                                                    
Get:1 file: trusty Release.gpg [198 B]                                                                        
Ign cdrom://Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417) trusty/main Translation-en_US           
Ign cdrom://Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417) trusty/main Translation-en              
Ign cdrom://Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417) trusty/restricted Translation-en_US     
Ign cdrom://Ubuntu 14.04 LTS _Trusty Tahr_ - Release amd64 (20140417) trusty/restricted Translation-en        
Get:2 file: trusty Release [3,334 B]                                                                          
65% [Connecting to us.archive.ubuntu.com (91.189.91.13)] [Connecting to security.ubuntu.com (91.189.91.14)] ^C

root@ubunto:~# apt-get install apt-file
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package apt-file is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'apt-file' has no installation candidate

Obrigado antecipadamente, Alex

    
por AlexL 13.08.2014 / 16:25

2 respostas

1

Faça o seguinte como root para cada CD.

Monte seu CD / DVD em / media e adicione a seguinte linha ao seu /etc/apt/sources.list:

deb "file:/media/Ubuntu-Server 12.04.5 LTS amd64" precise main restricted

Após essa atualização, pacotes db e install:

apt-get update
apt-get install vim

Feito!

    
por olafrv 06.04.2017 / 14:32
0

O apt-file está disponível no repositório do universo em trusty. Não tenho certeza se o dvd inclui. (Eu costumo encontrar o dicrectoy principal e não o universo no dvd do Ubuntu)

Você pode ... verificar.

find /mount/cdrom/something -iname "apt-file*"
    
por sugatang itlog 14.08.2014 / 07:38