What changed inside the kernel?
After searching a lot i found pci=nommconf.
It seams that something in the way pci is configured has changed.
[ view entry ] ( 982 views )
Searching for a rescue system that creates a bootable CD to restore my system i found mkcdrec. Because sometimes things (mkcdrec/debian/ubuntu) changes and i had to test and patch for new mkcdrec versions, so i droped it.
Then i started to make a live CD with debian-live and make my install script by myself. I also dropped it (long boottime and had too much to hack to let it work like i wanted).
Now i had the idea to build my own script that tar's my system and builds a bootable cd. I liked the idea of initramfs to extend it like i will and it boots much faster. The only drawback is that all things are hardcoded and have to be changed for every system i backup. But its only a single script: Read More...
[ view entry ] ( 1035 views )
Searching for a rescue system that creates a bootable CD to restore my system i found mkcdrec. Because sometimes things (mkcdrec/debian/ubuntu) changes and i had to test and patch for new mkcdrec versions, so i droped it.
Then i started to make a live CD with debian-live and make my install script by myself. I also dropped it (long boottime and had too much to hack to let it work like i wanted).
Now i had the idea to build my own script that tar's my system and builds a bootable cd. I liked the idea of initramfs to extend it like i will and it boots much faster. The only drawback is that all things are hardcoded and have to be changed for every system i backup. But its only a single script: Read More...
[ view entry ] ( 32 views )
#> sudo apt-get install kqemu-source kqemu-common build-essential
#> sudo module-assistant prepare kqemu
#> sudo module-assistant auto-install kqemu
/etc/udev/rules.d/60-kqemu.rules:
KERNEL=="kqemu", NAME="%k", MODE="0660", GROUP="kqemu"
#> sudo addgroup --system kqemu
#> sudo adduser USERNAME kqemu
#> modprobe kqemu
create a qemu image:
#> qemu-img create -f qcow2 root.qcow2 20G
install with a cd:
#> qemu -hda root.qcow2 -cdrom cd.iso -boot d
boot installed system:
#> qemu -hda root.qcow2
[ view entry ] ( 762 views )
grub prior 0.97 only supports a inode size of 128 Bytes
To format a partition set inode size of 128 Bytes:
#> mkfs.ext3 -I 128 /dev/sda6
[ view entry ] ( 1035 views )
<<First <Back | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next> Last>>