Changes between Version 74 and Version 75 of FAQ


Ignore:
Timestamp:
Jan 25, 2010, 4:43:25 PM (14 years ago)
Author:
Bruno Cornec
Comment:

Q42

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v74 v75  
    658658echo 'FORCE_MODS="driver1 driver2"' >> /etc/mindi/mindi.conf
    659659}}}
     660
     661== Q42/ How to transform a mondo CD/DVD into a mondo USB device ? ==
     662
     663Follow and adapt the following recipe. First prepare the USB device (here /dev/sdc):
     664{{{
     665# dd if=/dev/zero of=/dev/sdc bs=1M count=10
     666# fdisk /dev/sdc << EOF
     667n
     668p
     6691
     670
     671
     672t
     673b
     674a
     6751
     676w
     677EOF
     678# mkdosfs -F 32 /dev/sdc1
     679# mkdir -p /mnt1
     680# mount /dev/sdc1 /mnt1
     681}}}
     682Then copy the content of the mondo CD/DVD to the USE device mounted and prepare the device.
     683{{{
     684# mkdir -p /mnt
     685# mount /path/to/mondorescue-1.iso /mnt -o loop
     686# cp -a /mnt/* /mnt1/*
     687# umount /mnt1
     688# umount /mnt
     689# syslinux -s /dev/sdc1
     690}}}