I wanted to create my own init and some Linux fun on a snowy weekend. I know that the kernel boots from rootfs and transfers the stream to / sbin / init after loading the driver and installing the disk. I uploaded a cloud ubuntu image and tried directly loading the kernel using kvm as follows:
kvm -m 1G -nographic -kernel vmlinuz-3.19.0-32-generic -initrd initrd.img-3.19.0-32-generic -append "console=ttyS0 root=/dev/sda1 rw init=/myinit" -hda mydisk.img
It works somewhat fine with trusty-server-cloudimg-amd64-disk1.img (if you don't mind hanging in cloud-init), I started copying it and deleting its contents.
modprobe nbd
qemu-nbd -c /dev/nbd0 mydisk.img
fdisk -l /dev/nbd0 # confirm partition
mount /dev/nbd0p1 disk/
And here is my magic init:
int main(){
printf("Welcome to my kernel\n");
printf("Welcome to my kernel\n");
printf("Welcome to my kernel\n");
while(1);
}
gcc -static myinit.c -o myinit
. - init. , myinit myinit2, , . , init , , ?
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [ 1.460164] tsc: Refined TSC clocksource calibration: 2394.558 MHz
[ 1.866560] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3
done.
[ 6.251763] EXT4-fs (sda1): recovery complete
[ 6.253623] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Begin: Running /scripts/local-bottom ... done.
done.
Begin: Running /scripts/init-bottom ... mount: mounting /dev on /root/dev failed: No such file or directory
done.
mount: mounting /sys on /root/sys failed: No such file or directory
mount: mounting /proc on /root/proc failed: No such file or directory
[ 6.299404] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000200
[ 6.299404]
[ 6.300013] CPU: 0 PID: 1 Comm: init Not tainted 3.19.0-32-generic
[ 6.300013] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS Bochs 01/01/2011
[ 6.300013] ffff88003c118700 ffff88003dee7e38 ffffffff817af41b 00000000000017d6
[ 6.300013] ffffffff81a90be8 ffff88003dee7eb8 ffffffff817a925b ffff88003dee8000
[ 6.300013] ffffffff00000010 ffff88003dee7ec8 ffff88003dee7e68 ffffffff81c5ee20
[ 6.300013] Call Trace:
[ 6.300013] [<ffffffff817af41b>] dump_stack+0x45/0x57
[ 6.300013] [<ffffffff817a925b>] panic+0xc1/0x1f5
[ 6.300013] [<ffffffff81077b01>] do_exit+0xa11/0xb00
[ 6.300013] [<ffffffff811ec53c>] ? vfs_write+0x15c/0x1f0
[ 6.300013] [<ffffffff81077c7f>] do_group_exit+0x3f/0xa0
[ 6.300013] [<ffffffff81077cf4>] SyS_exit_group+0x14/0x20
[ 6.300013] [<ffffffff817b6dcd>] system_call_fastpath+0x16/0x1b
[ 6.300013] Kernel Offset: 0x0 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff)
[ 6.300013] drm_kms_helper: panic occurred, switching back to text console
[ 6.300013]
[ 6.300013]
, myinit :
not a dynamic executable
, - . ? (Kernel panics printfs )
sysvinit ( , , systemd openrc), , init - , while (1). >