How to install packages from server CD after installing the system

13,861

Follow the step-by-step approach described in the link. You should be able to do it. https://help.ubuntu.com/community/Repositories/Ubuntu

Regarding the mounting related query

When you mount a disc normally with the file browser (nautilus etc) it mounts disks by interacting with udisks behind the scenes. You can do the same thing on the command line with the udisks tool. eg /usr/bin/udisks --mount /dev/sdb1 The bit after --mount is the device name of the partition you want to mount. (/dev/something)

Alternately try mounting the CD using the mount command.You can check the MAN page for "mount" if you are new to mount command.

Share:
13,861
jon1000
Author by

jon1000

Teaching computing, applied maths and statistics

Updated on September 18, 2022

Comments

  • jon1000
    jon1000 over 1 year

    I installed Ubuntu Server 12.04 from CD onto a machine with no Internet connection. Originally I did not select the Samba file server task during installation, but now I want to install it. I have tried "sudo apt-get install samba" and "sudo apt-get install samba4" but the packages cannot be found.

    I assume the necessary packages are on the CD. Do I have to explicitly mount the CD? If so, what should I mount it as?

    I have found answers to questions about upgrading packages from the Internet, or installing lesser-used packages using apt-offline. But that seems unnecessarily complicated.

    • Admin
      Admin about 11 years
    • Fabby
      Fabby about 9 years
      @user300458: For the future, please try to refrain from editing a post just to add the correct tags, especially when the question already has an answer... This creates unnecessary work for the reviewers... Thank you! :P ;-)
  • jon1000
    jon1000 about 11 years
    The linked page and a related page have the solution. It seems that the "deb cdrom:" line is commented out by default. I uncommented it by removing a # and then executed sudo apt-get update. It is not necessary to mount the CD; it is sufficient to put the CD in the drive. Another useful command is sudo tasksel which reruns part of the character-mode GUI system install, and sudo tasksel install samba-server which installs the specific task. Thanks.