search for: iso_root

Displaying 8 results from an estimated 8 matches for "iso_root".

Did you mean: is_root
2014 Feb 09
0
Hurd boot difficulties.
....so.1 exec /hurd/exec '$(exec-task=task-create)' And apparently at least most of these arguments are necessary to get Hurd to boot. I don't have any idea if it is possible to pass that syntax into syslinux. The following formula is as close as i have gotten: rsync -a /usr/lib/syslinux ISO_root wget http://ftp.debian-ports.org/debian-cd/hurd-i386/current/ext2fs.static -O ISO_root/ext2fs.static<http://ftp.debian-ports.org/debian-cd/hurd-i386/current/ext2fs.static> wget http://ftp.debian-ports.org/debian-cd/hurd-i386/current/ld.so.1 -O ISO_root/ld.so.1<http://ftp.debian-ports.org...
2014 Feb 02
2
xorriso or genisoimage syntax assistance
On Sun, Feb 2, 2014 at 6:27 AM, Mattias Schlenker <ms at mattiasschlenker.de>wrote: [...] > Build a recent xorriso - this can be run from the build directory without > installing (thanks, Thomas!): > > ./configure --enable-static > > Thank you for pointing this out, I tried desperately to statically compile `mkisofs' yesterday, to no avail. To hear that xorriso is
2014 Feb 01
5
xorriso or genisoimage syntax assistance
Could someone help me get the syntax for `genisoimage' and/or `xorriso' correct? Apparently it is not in many linux distros so below my little HOWTO shows how to compile it. ( which adds tons of crap that can go wrong) mkdir -p ISO_root/isolinux cp /usr/lib/syslinux/[i,m,v]* ISO_root/isolinux cat > ISO_root/isolinux/isolinux.cfg << EOF UI menu.c32 label isolinuxtests EOF # Most linux distros dont have `mkisofs' # So... Download and compile "cdrtools" wget ftp://ftp.berlios.de/pub/cdrecord/cdrtools-3.00.tar....
2014 Feb 02
2
xorriso or genisoimage syntax assistance
...os dont have `mkisofs' Or they have genisoimage under the name "mkisofs". (e.g. Debian, Archlinux) > mkisofs \ > -o output.iso \ > -no-emul-boot \ > -boot-info-table \ > -boot-load-size 4 \ > -c isolinux/boot.cat \ > -b isolinux/isolinux.bin \ > ISO_root I would add option -R or -r for Rock Ridge names and file attributes. This will make appear the files with their original names, as in ISO_root, when the ISO filesystem gets mounted on unix-like systems. (Up to 255 characters of 8 bit each. E.g. UTF-8.) Maybe add option -J for Joliet names, so th...
2014 Feb 02
0
xorriso or genisoimage syntax assistance
...nux distros dont have `mkisofs' ( > > Or they have genisoimage under the name "mkisofs". > (e.g. Debian, Archlinux) > ... > I would add option -R or -r for Rock Ridge names and file attributes. > This will make appear the files with their original names, as in > ISO_root, when the ISO filesystem gets mounted on unix-like systems. > (Up to 255 characters of 8 bit each. E.g. UTF-8.) > > Thank you for this ^ . > > http://wiki.osdev.org/El-Torito#Example_of_ISO_Filesystem_Production_Run_for_BIOS > And this ^. man xorrisofs > http://www.gnu.or...
2014 Feb 02
4
xorriso or genisoimage syntax assistance
...econd partition is working well with `parted' and `fdisk', so I am quite pleased. Below is, again, "what I came up with". I tried to integrate each of your suggestions fully. If any of you have time, let me know if it looks wrong or if I missed anything anyone suggested. mkdir -p ISO_root/isolinux cp /usr/lib/syslinux/[i,m,v]* ISO_root/isolinux cat > ISO_root/isolinux/isolinux.cfg <<EOF UI menu.c32 LABEL isolinuxtests EOF xorrisofs -R -J \ -o output.iso \ -no-emul-boot \ -boot-info-table \ -boot-load-size 4 \ -c isolinux/boot.cat...
2014 Jan 20
3
[PATCH] Add some man pages.
Add very basic pages for: isohybrid - It's not particularly more useful than --help, but my QA department really wants this to exist. memdiskfind - Explain what it does and its invocation. Signed-off-by: Peter Jones <pjones at redhat.com> --- man/isohybrid.1 | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ man/memdiskfind.1 | 10 +++++++++ 2 files changed, 71
2014 Feb 03
0
xorriso or genisoimage syntax assistance
Hi, > If any of you have time, let me know if it > looks wrong or if I missed anything anyone suggested. Nitpicking: Consider whether to use -r instead of -R, i.e. whether to make up ownership and permissions for publishing, or whether to preserve the ownership and permission as in ISO_root. The latter (-R) is more suitable for backup purposes, or if you have reason to have multiple owners and/or finely structured access permissions. Mention that virtual machines can test the .iso file as virtual CD-ROM, and that it can be burnt onto CD/DVD/BD so that BIOS boots it from such media....