Sample Header Ad - 728x90

How to create a custom slackware "live" dvd?

0 votes
1 answer
377 views
I usually use a slackware-15 setup DVD as "livecd". Is more fast than other real live cd and contain a ssh daemon. When I use it as livecd I did those steps step1: give an easy root password echo -e'password\npassword\n' |passwd root step2: start networking dhcpcd -q -4 eth0 step3: start dropbear (ssh) /etc/rc.d/rc.dropbear start my question is: is possible to create a custom iso of 15.0 which make automatically those 3 steps? How to start? Thanks personally I tried those steps cp -av /mnt/cdrom /tmp/tmpdir then I go to tmpdir and extract the initrd.img (is a cpio xz compressed file) cp initrd.img initrd.xz xz -d initrd.xz mkdir pro1 cd pro1 cpio -i -d -m -H newc --no-absolute-filenames ../initrd.img I made the iso mkisofs -o /tmp/slackware-dvd.iso -R -J -A "Slackware Install" -hide-rr-moved -v -d -N -no-emul-boot -boot-load-size 4 -boot-info-table -sort isolinux/iso.sort -b isolinux/isolinux.bin -c isolinux/isolinux.boot -eltorito-alt-boot -no-emul-boot -eltorito-platform 0xEF -eltorito-boot isolinux/efiboot.img -m 'source' -V "SlackDVD" . testing the iso on a vm and.. enter image description here [IMG]https://i.imgur.com/CbNlo0J.png[/IMG] enter image description here
Asked by elbarna (13690 rep)
Jan 10, 2023, 04:14 PM
Last activity: Jan 10, 2023, 10:04 PM