Linked by Clinton De Young on Sun 27th Oct 2002 18:15 UTC
Permalink for comment
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
News
Linked by Thom Holwerda on 05/18/13 21:06 UTC
Linked by Thom Holwerda on 05/18/13 7:37 UTC
Linked by fran on 05/18/13 1:38 UTC
Linked by Thom Holwerda on 05/17/13 23:35 UTC, submitted by kragil
Linked by MOS6510 on 05/17/13 22:22 UTC
Linked by Thom Holwerda on 05/17/13 22:15 UTC, submitted by Tom
Linked by Thom Holwerda on 05/16/13 21:41 UTC
Linked by Thom Holwerda on 05/16/13 17:04 UTC
Linked by Thom Holwerda on 05/16/13 13:17 UTC
Linked by Thom Holwerda on 05/16/13 12:06 UTC
More News »
Sponsored Links



(Someone with no Debian experience here): I think what you're suggesting is to download the package files:
http://packages.debian.org/stable/base/ppp.html
http://packages.debian.org/stable/base/pppconfig.html
copy them to a floppy, boot into Debian, and then tell apt where to find them (that is, on the floppy). Correct?
Actually, once you've got the .deb packages on a floppy or FAT partition and rebooted back to Debian (or came home from work or other connected computer where you downloaded the files onto a diskette), mount it (mount /floppy for diskette or, if you have it on the same computer on a different partition by, say, mount /dev/hda1 /mnt) and then use dpkg instead of apt-get:
dpkg --install /floppy/ppp*deb
(maybe --install can be -i, but I don't remember at the moment)
This way you would install every Debian package in /floppy that started with ppp. If your mounted partition is /mnt, then replace /floppy/ppp*deb with /mnt/ppp*deb, etc. Also, if you've managed to install and configure mtools, you could first run:
mcopy A:ppp*.deb /tmp
and then
dpkg --install /tmp/ppp*.deb
I believe those commands should work. Let me know if I messed up somewhere. :-) (you can also use my e-mail)
That backslash for mcopy is correct and required to "escape" the star.
- Peter.