CDROM 대신 USB에서 pppoe 패키지를 설치하는 방법은 무엇입니까?

CDROM 대신 USB에서 pppoe 패키지를 설치하는 방법은 무엇입니까?

내 데비안은 USB 디스크(/dev/sdb)에서 설치되었습니다.
CD에서 pppoe 패키지를 설치하는 것은 간단합니다.

sudo vi  /etc/apt/sources.list 
deb cdrom:[Official Debian GNU/Linux Live 9.2.0 lxde 2017-10-07T13:15]/ stretch main
sudo apt-get install  pppoe

CDROM은 없고 컴퓨터에 USB가 있습니다.
USB 디스크에서 pppoe 소프트웨어 패키지를 설치하고 싶습니다.

sudo  mount  /dev/sdb   /home/back
ls  /home/back/
boot  d-i  dists  isolinux  live  pool

USB 디스크를 소스로 지정합니다.

sduo vi  /etc/apt/sources.list
deb file:/home/back/ stretch main contirb

USB 디스크를 사용하여 설치합니다.

sudo apt-get install  pppoe
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  ebtables ipset libipset3 python3-decorator python3-selinux python3-slip python3-slip-dbus
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  ppp
The following NEW packages will be installed:
  ppp pppoe
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 424 kB of archives.
After this operation, 1,182 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Err:1 http://deb.debian.org/debian stretch/main amd64 ppp amd64 2.4.7-1+4
  Could not resolve 'deb.debian.org'
Err:2 http://deb.debian.org/debian stretch/main amd64 pppoe amd64 3.12-1.1
  Could not resolve 'deb.debian.org'
E: Failed to fetch http://deb.debian.org/debian/pool/main/p/ppp/ppp_2.4.7-1+4_amd64.deb  Could not resolve 'deb.debian.org'
E: Failed to fetch http://deb.debian.org/debian/pool/main/r/rp-pppoe/pppoe_3.12-1.1_amd64.deb  Could not resolve 'deb.debian.org'
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

답변1

이 패키지 pppoe는 다음 항목에 포함되어 있지 않습니다.데비안 라이브 9.2.0 lxde.iso, 여기에서 패키지 목록을 볼 수 있습니다.debian-live-9.2.0-amd64-lxde.packages

명령줄을 사용하여 패키지를 확인할 수 있습니다 pppoe.

curl https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid/debian-live-9.2.0-amd64-lxde.packages | grep pppoe

관련 정보