Topic: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010
HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010
I love Crunchbang, and was going to install it to my daughter's Dell Mini 1010 netbook, but it kept getting stuck at the "Welcome to Grub!" screen. After some exhaustive web searching, I figured out a solution... Hopefully this helps someone else.
First, copy the image to USB following the instructions here:
http://crunchbanglinux.org/wiki/statler
stallation
Boot to the USB key and do a text install.
When you get to the partitioning section, manually assign the partitions...
Create the swap partition first on a primary partition (this was /dev/sda1, in my case)...
Create the / partition as ext3 on a primary partition (this was /dev/sda2, in my case)...
Continue with the install...
When you get to the "Do you want to install Grub?" question, select NO.
Leave the next prompt blank and select continue.
Finish the install.
Reboot the machine - keep the USB key in the machine!
Boot into a live session from the USB key.
Once in the live session, open up a terminal and do the following:
cd /
sudo mount -t ext2 /dev/sda2 /mnt (-- Remember, my / partition was /dev/sda2! Adjust yours accordingly! --)
sudo mount -t proc proc /mnt/proc
sudo mount -t sysfs sys /mnt/sys
sudo mount -o bind /dev /mnt/dev
-copy over resolv.conf:
sudo cp -L /etc/resolv.conf /mnt/etc/resolv.conf
-chroot to the harddrive:
sudo chroot /mnt /bin/bash
-add apt sources to the harddrives /etc/apt/sources.list:
sudo nano /etc/apt/sources.list
deb http://packages.crunchbanglinux.org/statler statler main
deb http://cdn.debian.net/debian squeeze main contrib non-free
-update apt:
sudo apt-get update
-remove grub2
sudo apt-get remove grub-pc
-install grub-legacy
sudo apt-get install grub-legacy
sudo grub-install /dev/sda (your disk may be different)
sudo update-grub
-exit chroot, reboot
exit
sudo reboot
Your machine should now boot up to the grub menu with the correct entry for your install at the top of the list!