Sat Nov 29, 2014 2:35 am
it was when fsmithread [sic], the dev for refracta, dzz, the dev for exegnu, and clefebver, the dev for mint, were here all having an issue making live isos that would boot a sysv init live system
Sat Nov 29, 2014 2:42 am
Sat Nov 29, 2014 1:26 pm
Sun Nov 30, 2014 3:20 pm
Wed Dec 03, 2014 2:01 am
service udev start
exec /sbin/init
Wed Dec 03, 2014 3:14 am
dzz wrote:
- Code:
service udev start
exec /sbin/init
bootup continues apparently normal. I'm guessing /dev is not getting moved over from initramfs as it should.. why not is another matter.
Wed Dec 03, 2014 1:29 pm
#!/bin/bash
set -x
echo "Starting custom init script..."
service udev start
exec /sbin/init
Sat Dec 13, 2014 3:44 am
Sat Dec 13, 2014 2:19 pm
# Move virtual filesystems over to the real filesystem
mount -n -o move /sys ${rootmnt}/sys
mount -n -o move /proc ${rootmnt}/proc
# Move virtual filesystems over to the real filesystem
mount -n -o move /sys ${rootmnt}/sys
nuke /sys
ln -s ${rootmnt}/sys /sys
mount -n -o move /proc ${rootmnt}/proc
nuke /proc
ln -s ${rootmnt}/proc /proc
Sat Dec 13, 2014 5:01 pm
dzz wrote:Edited /init :
- Code:
# Move virtual filesystems over to the real filesystem
mount -n -o move /sys ${rootmnt}/sys
nuke /sys
ln -s ${rootmnt}/sys /sys
mount -n -o move /proc ${rootmnt}/proc
nuke /proc
ln -s ${rootmnt}/proc /proc