klax derivata slackware (kde 3.5)


creazione dell'iso da dvd di "linux&Co"

eseguire: make_iso.sh dall'interno del dvd

#!/bin/bash
# ---------------------------------------------------
# Script to create bootable ISO in Linux
# usage: make_iso.sh /tmp/klax.iso
# author: Tomas M.
# ---------------------------------------------------

CDLABEL="KLAX"

if [ "$1" = "" -o "$1" = "--help" -o "$1" = "-h" ]; then
echo "This script will create bootable ISO from files in curent directory."
echo "Current directory must be writable."
echo "example: $0 /mnt/hda5/klax.iso"
exit
fi

# isolinux.bin is changed during the ISO creation,
# so we need to restore it from backup.
cp -f boot/isolinux.bi_ boot/isolinux.bin
if [ $? -ne 0 ]; then
echo "Can't recreate isolinux.bin, make sure your current directory is writable!"
exit 1
fi

mkisofs -o "$1" -v -J -R -D -A "$CDLABEL" -V "$CDLABEL"
-no-emul-boot -boot-info-table -boot-load-size 4
-b boot/isolinux.bin -c boot/isolinux.boot .

--------------------------------------------------

per eseguirlo da qemu:

qemu-system-x86_64 -enable-kvm -m 2000 -hda /home/sacarde/dati-estranei/deb9.img -k en-us -net nic,vlan=0 -net tap,vlan=0,ifname=tap0 -k en-us -boot d -cdrom /root/klax-3.5-rc2.iso

occorre passare al kernel: acpi=off

p.s.
purtroppo non c'e' strumento per installarla su HDD


Articolo tratto da: #341724 Linux - http://sacarde.altervista.org/
URL di riferimento: http://sacarde.altervista.org/index.php?mod=read&id=1556983684