Find the answer to your Linux question:
Results 1 to 2 of 2
hi all.... I dont have cdrom in my system..I am trying to install windows using virtual machine manager in fedora...but it is asking for cdrom as boot device..i have windowz.iso ...
  1. #1
    Just Joined!
    Join Date
    Jun 2009
    Posts
    7

    mounting .iso image as cdrom

    hi all....

    I dont have cdrom in my system..I am trying to install windows using virtual machine manager in fedora...but it is asking for cdrom as boot device..i have windowz.iso image ..how can i mount it as cdrom and continue my installation........

  2. #2
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    You use the mount command to mount an image file. You first must have an empty folder where it can be mounted. So make a directory, but first gain root permissions with the su command.
    Code:
    su
    Password:
    Code:
    mkdir /mounted
    You can then mount the image in the /mounted folder, using the "loop" option. List the full path to the image first, and then the full path to the folder to mount it in.
    Code:
    mount -o loop /path/to/CD/image.iso /mounted
    The CD should now be mounted in the /mounted folder. To unmount it when done, use this command.
    Code:
    umount /mounted
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

Posting Permissions

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