I'm running slackware 13 (32bit) on my netbook, since slack13 got first released. I 'm booting directly from my external usb drive (ext4). Few minor things to consider after installation is to
mkinitrd and add the modules you need to pre-load
Quote:
mkinitrd -c -k 2.6.29.6-smp -m ext4:usb-storage:ehci-hcd -f ext4 -w 10 -r /dev/sdb1
|
worked fine for my external disk (sdb1)Then you need to run lilo.
Quote:
boot = /dev/sdb
lba32
# Windows bootable partition config begins
other = /dev/sda3
label = Windows
table = /dev/sda
# Windows bootable partition config ends
# Linux bootable partition config begins
image = /boot/vmlinuz
initrd = /boot/initrd.gz
root = /dev/sdb1
label = Linux
read-only
# Linux bootable partition config ends
|
here is part of my lilo.conf
Be careful not to mesh up with your primary (internal) hard-disk (in my case sda). You don't want lilo to be installed there, otherwise you cannot boot at all if your external disk is not present. This is not a step by step guide, but I hope you got the main idea. Good luck