7

How do I install ubuntu packages from the ubuntu cd. I have ubuntu-desktop 10.04 running and I have to install wvdial package but no internet connection for installing from apt repository.

Oli
  • 293,335
user3215
  • 5,383

5 Answers5

6

Since wvdial is on the installation CD, you can enable System -> Administration -> Software Sources -> Ubuntu Software -> Installable from CD-ROM/DVD -> Cdrom with Ubuntu 10.04 and then install it via Synaptic.

In the long run, though, you should have a way to install software upgrades and packages that aren't included on the CD. For this I recommend using Keryx, which is essentially a relay for your package manager over a USB drive. Updates can be downloaded using an internet-connected computer running Windows, OS X, or Linux.

ændrük
  • 76,794
1

See APTonCD

http://aptoncd.sourceforge.net/

https://help.ubuntu.com/community/APTonCD

lovinglinux
  • 6,367
1

Using System -> Administration -> Software Sources (or Settings -> Edit Origins in KPackageKit), go to Other Software tab and click "Add CD-ROM" while the CD is in the drive. Choose to reload the software sources, and then install as usual. It'll use the CD as a repository.

maco
  • 15,892
  • When i click "Add CD-ROM" it prompts to insert cd. The cd is inserted and no problem with the cd drive and the cd is mounted on the desktop automatically. Don't know what's the problem. – user3215 Oct 13 '10 at 01:23
  • I think it's getting dependency error – user3215 Jan 05 '11 at 16:34
0

It is not dependency error. The apt is not recognizing it.

Try to see where the cdrom mounts, by entering command mount in the terminal. It probably mounts on /media/cdrom but apt recognizes cdrom in the /media/apt directory. so make a symbolic link

sudo ln -s /media/cdrom /media/apt. After that you can enter this command,
sudo apt-cdrom add, it will work.

Anwar
  • 76,649