NavigationUser loginLinux NewsClick the above for your daily dose of Linux news. Food for ThoughtWhat signify a few lives lost in a century or two? The tree of liberty must be refreshed from time to time with the blood of patriots and tyrants. It is its natural manure. Spam?See spam posts on this site? If so, please don't reply to the spam! Instead, just report the URL to the webmaster. |
Serious Debian Install problem(s)Hello, I just purchased a laptop see specs @ bottom. It’ll be the replacement to the old P3 running the latest debian rerlease, Etch I believe. I want to install debian using my netinstall disk since the laptop has both wired and wireless NIC. I’ll nstall using the wired and get the wireless working later if that is possible. Right now I have Mepis 7 64bit running on it. When I install Debian, the install goes well as far as I can see. No obvious errors or error messages. I use a nearby mirror for the installer to install the system. When it comes time to reboot, the system seems to reboot normally until it get s to the line starting statd then the screen goes black. Can’t bring up any console. Only solution is to reboot into another live cd. Any thoughts as to what is happening I like Mepis but I like Debian een more and I’d like to have it as my OS. Thanks Laptop Specs… It's an HP Pavilion DV6253CL classed as an "Entertainment PC" Microprocessor 1.6 GHz AMD Turion ™ 64 X2 Dual-Core Mobile Technology TL-52 2 Quick Launch Buttons (HP Quick Play Music and DVD buttons) * 1 ExpressCard/54 Slot (also supports ExpressCard/34) External Ports * 5-in-1 integrated Digital Media Reader for Secure Digital cards, MultiMedia cards, Memory Stick, Memory Stick Pro, or xD Picture cards |
Re: Serious Debian Install problem(s)
Have a look at the boot parameters of the live CD. You may see switches like "noapic" and others. The type of fault you describe is typical of buggy hardware. You might also have a look at tuxmobil.org and see if there are any comments about installing Debian on that model laptop.
Re: Serious Debian Install problem(s) SOLVED
Hi All,
Found a thread with the same problem.
Solution,
Boot up the netinstall CD with the parameters... Install vga=771 noapic nolapic
Debian is up an running. Have to do something about Gnome though.
Now all I have to do is get wireless running and life will be great. Any hints on that?
Thanks Pinniped
nick
Re: Serious Debian Install problem(s) SOLVED
If you have a wireless access point:
apt-get install wireless-tools
Set up the access point for WPA-PSK (WEP is 100% useless; you may as well not use encoding if you're going to use WEP).
You need to note your SSID and of course the WPA-PSK passphrase
Now you need to create the wireless key from your SSID and passphrase:
wpa_passphrase myssid "my silly passphrase"
You will get a result that's something like:
network = {
ssid="myssid"
#psk="my silly passphrase"
psk="some long sequence of hex characters"
}
So you need the long sequence of hex characters.
Edit /etc/network/interfaces and add something like:
auto eth1 (assuming 'eth1' is the name given to your wireless gizmo)
iface eth1 inet dhcp
wpa-mode ap
wpa-ssid "myssid"
wpa-psk that-very-long-string-of-hex-characters
Note: The SSID and passphrase are case-sensitive, but some wireless routers in the past have:
1. internally converted the SSID to all CAPS
2. internally converted the SSID to all smalls
In principle the long hex key shouldn't care about case (a=A etc), but just to be safe it's best to copy the result as it appears (all lowercase).
If you got everything right:
ifup eth1
and you should be magically connected to the net.
Re: Serious Debian Install problem(s)
Sorry Pinniped I use wep...
And sorry but the wireless thing is just too much. reinstalling Mepis 7 64 bit. I know that it can see my wireless, AND it's debian. How ironic.
Nick
In keeping with the spirit of this forum, I'll end this thread and continue it in the networking section.
Thanks for your help.
Nick