Displaying 4 results from an estimated 4 matches for "isolinuxtest".
Did you mean:
isolinuxtests
2014 Feb 09
0
Hurd boot difficulties.
...d-i386/current/initrd.gz>
wget http://ftp.debian-ports.org/debian-cd/hurd-i386/current/gnumach.gz -O
ISO_root/gnumach.gz<http://ftp.debian-ports.org/debian-cd/hurd-i386/current/gnumach.gz>
cd ISO_root/
gunzip *
cd ..
cat > ISO_root/syslinux/isolinux.cfg << EOF
UI menu.c32
label isolinuxtests
KERNEL mboot.c32
APPEND /gnumach --- /initrd
EOF
genisoimage \
-o output.iso \
-no-emul-boot \
-boot-info-table \
-boot-load-size 4 \
-c syslinux/boot.cat \
-b syslinux/isolinux.bin \
ISO_root
# test it (optional)
kvm -m 1000 -cdrom output.iso
If I try enough random combinations,...
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
...'
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.bz2
tar -xf cdrtools-3.00
make -C cdrtools-3.00 install DESTDIR="$(pwd)/pkg" INS_BASE=""
PATH="${PATH}:$(pwd)/pkg/bi...
2014 Feb 02
4
xorriso or genisoimage syntax assistance
.... 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 \
-b isolinux/isolinux.bin \
-partition_offset 16 \
-isohybrid-mbr ISO_root/isolinux/isohdpfx.bin \
ISO_root
# Put the .iso to a driv...