Results 1 to 6 of 6

Thread: Install from ISO on local drive

  1. #1
    Join Date
    Oct 2005
    Beans
    520

    Install from ISO on local drive

    Hello ! I am trying to install ubuntu from an ISO on a FAAT32 Partition. Is there a way of booting into the FAT32 partition with the ISO on it, and mount it to install from, from the Debian installer ?

    I have been searching for over a month now and still have not found anything that gives some information on how to do that. I remember that i was able to make a rescue disk for Fedora 5 and use the installer from it and select the partition and then the iso i wanted to use.

    Thanks in advance for any help.

  2. #2
    Join Date
    Oct 2005
    Beans
    520

    Re: Install from ISO on local drive

    I have found this web page , but a question .

    http://ubuntu-tutorials.com/2007/10/...r-the-network/

    After running the network installer and using the locally mounted cd will it install a full desktop or just a partial desktop ?

    It just doesn't seem like there is a way to only install off a fat32 partition mounted iso. oh well

  3. #3
    Join Date
    Oct 2005
    Beans
    520

    Re: Install from ISO on local drive

    I also found this , this is similar to what i want to do , except that it requires a system to be installed already

    I want to be able to do the following without the linux system being installed already :




    Install from hard drive

    Use this method for a faster system installation and if you don't have a CD/DVD-ROM drive! For this method, you will need to have a working Ubuntu system on the computer on which you want to install the new Gutsy OS.

    First of all, you need to use GParted or PartedMagic to create a new primary partition and format it to ext3. For example, let's say that the partition is /dev/sda3 (for a SATA drive) or /dev/hda3 (for a IDE drive). You will need to copy the ISO's contents over to the new partition. Open a Terminal (Applications -> Accessories -> Terminal) and type:

    mkdir /tmp/installcd
    sudo mount -o loop /path-to/ubuntu-7.10-desktop-i386.iso /tmp/installcd (for an i386 PC)

    or

    sudo mount -o loop /path/to/ubuntu-7.10-desktop-amd64.iso /tmp/installcd (for an AMD 64/Intel 64 PC)
    sudo mkdir /mnt/installer
    sudo mount /dev/sda3 /mnt/installer (for the SATA drive)

    or

    sudo mount /dev/hda3 /mnt/installer (for the IDE drive)
    sudo cp -r /tmp/installcd/* /mnt/installer
    cd ~/
    sudo umount /tmp/installcd


    Next, you'll need to edit your current Grub configuration file to boot the new partition. To do this, open the /boot/grub/menu.lst in a text editor with:

    sudo gedit /boot/grub/menu.lst

    ...and add the following lines at the end of the file:

    title Ubuntu Hard Drive Installation
    root (hd0,2)
    kernel /casper/vmlinuz boot=casper root=/dev/ram ramdisk_size=1048576 rw
    initrd /casper/initrd.gz

    NOTE: the root line tells Grub which partition contains the installer. If in your case, the partition you created is /dev/hda1, you'll need to edit that line to root (hd0,0). Grub starts counting your partition from 0, therefore the fourth partition will be (hd0,3) and so on. If you have a secondary hard disk, you will have to modify the first number from 0 to 1 (e.g. hd1,0 - for the second hard disk, first partition).

    Save the file, close the text editor, reboot the computer and choose 'Ubuntu Hard Drive Installation' from the grub boot menu and install Ubuntu 7.10 Gutsy Gibbon.

  4. #4
    Join Date
    Oct 2009
    Location
    Reykjavík, Ísland
    Beans
    13,647
    Distro
    Xubuntu

    Re: Install from ISO on local drive

    Are you aware that 7.10 is unsupported?
    Bringing old hardware back to life. About problems due to upgrading.
    Please visit Quick Links -> Unanswered Posts.
    Don't use this space for a list of your hardware. It only creates false hits in the search engines.

  5. #5
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Install from ISO on local drive

    the loop mount only works on new versions of Ubuntu. I think it was 9.04 or newer, but not sure. It works for sure with 9.10 and 10.04 as I have done it.

    [SOLVED] Using grub 2 to boot an iso off hard drive
    http://ubuntuforums.org/showthread.p...&highlight=ISO
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  6. #6
    Join Date
    Oct 2005
    Beans
    520

    Re: Install from ISO on local drive

    Yes i am aware that the info was for 7.10. That was the only info on what i want to do that i could find.

    I am still looking for a way to put a ubuntu iso on a fat32 partition mount it and then install from that mounted iso.

    I guess i will have to dig through all my old cds ( 5 or 6 years worth )and see if i can find the fedora 5 one i did that with. Maybe i can revers engineer it to work with debian installer.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •