Search found 1 match

by Jdwhatnot
Mon Aug 08, 2016 9:52 pm
Forum: UBCD V5 Tutorials & How-Tos
Topic: Create a bootable USB flash drive using UBCD iso
Replies: 11
Views: 362988

Re: Create a bootable USB flash drive using UBCD iso

How to copy from iso in Linux. Sorry I'm typing from a phone.

cd ~/desktop
mv $isofile ~/desktop/
mkdir iso/
mkdir disk/
mount -t iso9660 $isofile iso/
mount $device disk/
rsync -ra iso/ disk
umount iso/
umount disk/