Results 1 to 10 of 11
How can I create a CD to boot fedora live image from pen drive for using it with computers which don't support booting using usb port?
Tried to do so ...
- 06-17-2009 #1Just Joined!
- Join Date
- Jul 2008
- Location
- Delhi, India
- Posts
- 72
Create bootcd for booting fedora on pen drive
How can I create a CD to boot fedora live image from pen drive for using it with computers which don't support booting using usb port?
Tried to do so with ubuntu using that tutorial, but it didn't work.
- 06-24-2009 #2Just Joined!
- Join Date
- Jul 2008
- Location
- Delhi, India
- Posts
- 72
No one having any solution??
- 08-02-2009 #3Just Joined!
- Join Date
- Jul 2008
- Location
- Delhi, India
- Posts
- 72
Another bump.
- 08-02-2009 #4
You can do this by using the Fedora LiveCD.
I actually have written myself a little How-To, for doing this on a SD card. The process is the same for a USB drive. You first should install syslinux and Mtools.
================================================== =========
How to Install LiveCD on a USB drive or SD card
Run commands as root (use su)
Find the disk:
# fdisk -l
I will use sdb1 as my example. Please make sure that you are using the correct drive. Otherwise you could destroy your entire system!
Format the disk (sdb1):
# fdisk /dev/sdb1
Command (m for help):d (delete any existing partitions)
Command (m for help):n (create a new partition)
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4):1
Command (m for help):t
Partition number (1-4):1
Hex code (type L to list codes):6 (for fat16)
Command (m for help):w (to write the changes to the disk)
Format the card. You may need to unmount it first:
# umount /dev/sdb1
# mkfs.vfat -F 16 /dev/sdb1
Mount it again. You need syslinux and Mtools installed, Then run syslinux on the card:
# syslinux /dev/sdb1
Copy the CD files to it. Then rename the folder isolinux to syslinux. Then rename isolinux.cfg to syslinux.cfg
================================================== ==============
You can mount the CD image, by using the loop option of mount. First, make a folder to mount it in.
Then mount the CD image. You will need the full path to the image file (/home/<user>/<image>.iso)Code:mkdir -p /mnt/image
You then can copy the entire contents of the /mnt/image folder to the USB drive.Code:mount -o loop <image>.iso /mnt/image
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 08-02-2009 #5Just Joined!
- Join Date
- Jul 2008
- Location
- Delhi, India
- Posts
- 72
^I want that the all system files reside on the pen drive, but the computer uses a cd for booting for use with a computer where booting from pen drive isn't possible.
- 08-02-2009 #6
I don't believe it is possible to boot from a USB drive if the system BIOS was not designed to do so.
Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 08-02-2009 #7Just Joined!
- Join Date
- Jul 2008
- Location
- Delhi, India
- Posts
- 72
^The files required to boot the system will be on cd, and they will be using files on usb to proceed further. The link that I provided in my first post claims to do so, but I wasn't able to do that.
- 08-02-2009 #8
What was the problem? Did you get errors? What were the errors?
You will have to provide more detailed info on your problem then.Paul
Please do not send Private Messages to me with requests for help. I will not reply.
- 08-02-2009 #9Just Joined!
- Join Date
- Jul 2008
- Location
- Delhi, India
- Posts
- 72
Will post the exact error messages soon.
- 08-03-2009 #10Just Joined!
- Join Date
- May 2009
- Posts
- 46


Reply With Quote
