SEARCH

Enter your search query in the box above ^, or use the forum search tool.

You are not logged in.

#1 2011-02-13 03:47:41

devmonkey
New Member
Registered: 2009-02-25
Posts: 4

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!

Offline

Be excellent to each other!

#2 2011-02-13 03:54:02

devmonkey
New Member
Registered: 2009-02-25
Posts: 4

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

Oh yeah... I forgot to mention one thing... This seems to work with everything, except the GMA500 video driver. Still working on how to fix that. If I figure it out, I'll add it to the post.

Offline

#3 2011-02-13 09:08:04

Unia
#! Die Hard
From: The Netherlands
Registered: 2010-07-17
Posts: 3,088

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

Please use code tags, makes it a bit more readable. Also, you had better posted this in the tips&tricks section of the forum. Other than that, it looks good! smile


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
      Github || Deviantart

Offline

#4 2011-02-13 16:14:36

pvsage
Internal Affairs
From: North Carolina
Registered: 2009-10-18
Posts: 8,982

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

This might help with the GMA500 Poulsbo issue:
http://forums.debian.net/viewtopic.php?f=7&t=45942


while ( ! ( succeed = try() ) );
We've earned a reputation as a nice, friendly community; please help us keep it that way.

Offline

#5 2011-02-13 16:15:58

cureo
New Member
Registered: 2010-02-24
Posts: 8

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

i was excited to see that this was my problem until i read the later post that it doesn't apply to my gma500 =/ very useful information though if it helps i posted my grub.cfg in another topic:

http://crunchbanglinux.org/forums/topic … h-grubcfg/

thanks

Offline

#6 2011-02-13 17:27:59

rizzo
#! wanderer
From: ~/
Registered: 2008-11-25
Posts: 5,100

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

Moved to Tips, Tricks and Scripts smile

Offline

#7 2011-02-24 06:28:11

pinky
New Member
Registered: 2011-02-24
Posts: 1

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

Hi guys, I tried the above method on my mini 1010, and while everything seemed to go great, when I reboot the grub-menu does not even come up, I get nothing but a blank screen with a blinking cursor in the top left corner. Can you offer any suggestions?

Thanks

Offline

#8 2011-06-28 22:24:40

cypix314
New Member
Registered: 2011-06-28
Posts: 3

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

It is not necessary to revert to grub legacy from grub2, but you can if you think it is easiest. The problem with grub2 is that the default graphic options don't work the dell mini 1010. What you can do is after doing a normal install of Statler is boot from a live cd/usb with grub2 and then from reinstall grub2 with the graphics disabled. Then you can continue to use grub2 and all its other features. Another post of mine describes this in a bit more detail:
http://www.linuxquestions.org/questions … ost4382877

Offline

#9 2012-08-22 17:46:50

ginkocosplayer
New Member
Registered: 2012-08-22
Posts: 4

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

This did not work.
I got to the point where this says to install grub legacy and this happens:

grey@mobile:~$ sudo grub-install /dev/sdb
Searching for GRUB installation directory ... found: /boot/grub
The file /boot/grub/stage1 not read correctly.
grey@mobile:~$

Could someone explain to me what I am doing wrong here? I need my netbook for university.

Offline

#10 2012-08-22 20:50:10

Ozitraveller
#! CrunchBanger
From: Far from the madding crowd!
Registered: 2011-04-26
Posts: 168

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

ginkocosplayer wrote:

This did not work.
I got to the point where this says to install grub legacy and this happens:

grey@mobile:~$ sudo grub-install /dev/sdb
Searching for GRUB installation directory ... found: /boot/grub
The file /boot/grub/stage1 not read correctly.
grey@mobile:~$

Could someone explain to me what I am doing wrong here? I need my netbook for university.

How many drives does you netbook have?  1 probably?

sudo grub-install /dev/sda  <-- change sdb to sda which is the device (drive) you want to install grub on. 

Offline

#11 2012-08-29 12:21:24

ginkocosplayer
New Member
Registered: 2012-08-22
Posts: 4

Re: HOWTO: Installing Crunchbang "Statler" on a Dell Mini 1010

Ozitraveller wrote:
ginkocosplayer wrote:

This did not work.
I got to the point where this says to install grub legacy and this happens:

grey@mobile:~$ sudo grub-install /dev/sdb
Searching for GRUB installation directory ... found: /boot/grub
The file /boot/grub/stage1 not read correctly.
grey@mobile:~$

Could someone explain to me what I am doing wrong here? I need my netbook for university.

How many drives does you netbook have?  1 probably?

sudo grub-install /dev/sda  <-- change sdb to sda which is the device (drive) you want to install grub on. 

Well yes if you do not include the SD card reader, but here I was first testing the fix on a thumbdrive install of Crunchband on a different computer, which after preforming the fix I would then try booting the thumbdrive on my netbook to see if it worked or not. If it did, then I would wipe Ubuntu off the machine and install Crunchbang and do this fix again. But as you can see, I was not allowed to get that far.

Offline

Board footer

Powered by FluxBB

Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.

Debian Logo