[Solved] How can I set kernel parameters against the "system-builder" iso?
Please describe in detail what has been changed and hopefully other kiosk user will be able to help.
Porteus team wont resolve bugs posted in this category as we support only modifications made by the kiosk wizard.
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries: https://porteus-kiosk.org/contact.html
-
- White ninja
- Posts: 19
- Joined: 08 May 2018, 13:35
- Distribution: Porteus Kiosk version 20180422
[Solved] How can I set kernel parameters against the "system-builder" iso?
Post#1 by casystems » 17 May 2018, 11:13
casystems
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
How can I set kernel parameters against the "system-builder" iso?
Post#2 by fanthom » 17 May 2018, 11:43
Code: Select all
append initrd=/boot/initrd.xz quiet first_run reboot=efi,pci,force
fanthom
-
- White ninja
- Posts: 19
- Joined: 08 May 2018, 13:35
- Distribution: Porteus Kiosk version 20180422
[Solved] How can I set kernel parameters against the "system-builder" iso?
Post#3 by casystems » 18 May 2018, 12:41
I used vmware player and Linux Mint with shared folders - from within the Linux session:
* start in a tmp folder
Code: Select all
cd /tmp
Code: Select all
su
Code: Select all
cp /mnt/hgfs/temp/*.iso source.iso
Code: Select all
mkdir /mnt/kiosk
Code: Select all
mount -o loop source.iso /mnt/kiosk
Code: Select all
mkdir /tmp/kiosk_ISO
Code: Select all
cp -a /mnt/kiosk/* /tmp/kiosk_ISO
Code: Select all
umount /mnt/kiosk
Code: Select all
rmdir /mnt/kiosk
Code: Select all
cd kiosk_ISO
Code: Select all
nano boot/isolinux/isolinux.cfg
Code: Select all
append initrd=/boot/initrd.xz quiet first_run reboot=efi,pci,force
Code: Select all
nano boot/isolinux/grub.cfg
Code: Select all
linux ... first_run reboot=efi,pci,force
Code: Select all
bash make_iso.sh
Code: Select all
mv /home/{your-home-dir}/Downloads/mkisofs /usr/local/bin
chmod +x /usr/local/bin/mkisofs
Code: Select all
isohybrid -u /tmp/Porteus-Kiosk.iso
Code: Select all
cp /tmp/Porteus-Kiosk.iso /mnt/hgfs/temp/
** if you need to burn it onto a pen-stick now ; list usb devices
Code: Select all
ls -l /dev/disk/by-id/usb*
Code: Select all
sudo dd if=/tmp/Porteus-Kiosk.iso of=/dev/sdb
casystems
-
- White ninja
- Posts: 19
- Joined: 08 May 2018, 13:35
- Distribution: Porteus Kiosk version 20180422
How can I set kernel parameters against the "system-builder" iso?
Post#4 by casystems » 18 May 2018, 13:22
I've used the GUI to mount the .iso I made, nemo to browse to the folder and Text Editor to open the file and can confirm:
Code: Select all
timeout 0
prompt 0
default kiosk
label kiosk
kernel /boot/vmlinuz
append initrd=/boot/initrd.xz quiet first_run reboot=efi,pci,force
casystems
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
How can I set kernel parameters against the "system-builder" iso?
Post#5 by fanthom » 18 May 2018, 14:09
Code: Select all
linux /boot/vmlinuz quiet first_run reboot=efi,pci,force
fanthom
-
- White ninja
- Posts: 19
- Joined: 08 May 2018, 13:35
- Distribution: Porteus Kiosk version 20180422
[Solved] How can I set kernel parameters against the "system-builder" iso?
Post#6 by casystems » 24 May 2018, 07:11
casystems