LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 07-08-2012, 01:52 PM   #1
rsm772
LQ Newbie
 
Registered: Jul 2012
Location: Florida, US
Distribution: Linux Mint 13
Posts: 7

Rep: Reputation: Disabled
dell inspiron 1100 issues with linux mint mate'


installed linux mint mate' (32bit) to an old dell inspiron 1100 laptop yesterday and have a double screen coming up in the login and desktop with 640 x 480 resolution. read somewhere to update bios to a32 and increased the video to 8 mg from 1 mg. also having trouble installing a pcmia netgear wireless card wg511 v2. I have mint cinnamon on newer asus (k52f) (64 bit) which works just fine. anyone having resolved these issues?
 
Old 07-09-2012, 07:42 AM   #2
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,399

Rep: Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192
Ugh. The 1100 was rubbish when it was released - I used to use one as a challenge to see if I could get various distros to run. Tossed mine out a couple of years back when the lid broke off.

KMS would be an issue these days I would reckon - do you have i915 loaded in the initrd ?.
Maybe try adding "i915.modeset=1" to the boot parms. For testing perhaps set it to 0 (zero) to turn off KMS; not recommended, but might be worth a try.
 
Old 07-09-2012, 12:01 PM   #3
rsm772
LQ Newbie
 
Registered: Jul 2012
Location: Florida, US
Distribution: Linux Mint 13
Posts: 7

Original Poster
Rep: Reputation: Disabled
Thanks for the speedy response! As a newbie to Linx I'm having trouble configuring the parts. Tried to access the X11 today and got nowhere. So could you give the precise keystrokes for the changes you suggested.Did have a surprise when i tried an alternate boot and everything worked like expected.
Thanks
Scott
 
Old 07-09-2012, 07:40 PM   #4
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,399

Rep: Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192
Quote:
Originally Posted by rsm772 View Post
Did have a surprise when i tried an alternate boot and everything worked like expected.
Explain - in detail.
 
Old 07-10-2012, 07:50 AM   #5
rsm772
LQ Newbie
 
Registered: Jul 2012
Location: Florida, US
Distribution: Linux Mint 13
Posts: 7

Original Poster
Rep: Reputation: Disabled
i was able to boot into a recovery mode by hitting esc key (i think) and then after a system check the screen was no longer split. when i rebooted normally the split screen was back. how do i configure the graphics driver to the i810 intel version. the vi command showed no data inside the etc/x11/xorg.conf file. does the package configuration program do that instead?
i downloaded the mint mate/cinnamon debian version but haven't installed it hoping i can adjust my current version instead to get it working properly.
Thanks
Scott
 
Old 07-10-2012, 09:50 PM   #6
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,399

Rep: Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192
Might be worth seeing what options that selected. Run this from a terminal (will need sudo probably for Mint) and post the output
Code:
grep -iE '^[[:space:]]*linux|menuentry' /boot/grub/grub.cfg
 
Old 07-17-2012, 07:52 AM   #7
rsm772
LQ Newbie
 
Registered: Jul 2012
Location: Florida, US
Distribution: Linux Mint 13
Posts: 7

Original Poster
Rep: Reputation: Disabled
here is the code requested:

menuentry 'LinuxMint, with Linux 3.2.0-23-generic' --class linuxmint --class gnu-linux --class gnu --class os {
linux /boot/vmlinuz-3.2.0-23-generic root=UUID=5cce8091-3356-48e5-a955-ac31530504c6 ro quiet splash $vt_handoff
menuentry 'LinuxMint, with Linux 3.2.0-23-generic (recovery mode)' --class linuxmint --class gnu-linux --class gnu --class os {
linux /boot/vmlinuz-3.2.0-23-generic root=UUID=5cce8091-3356-48e5-a955-ac31530504c6 ro recovery nomodeset
menuentry "Memory test (memtest86+)" {
linux16 /boot/memtest86+.bin
menuentry "Memory test (memtest86+, serial console 115200)" {
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
 
Old 07-17-2012, 07:54 AM   #8
rsm772
LQ Newbie
 
Registered: Jul 2012
Location: Florida, US
Distribution: Linux Mint 13
Posts: 7

Original Poster
Rep: Reputation: Disabled
Had a problem with the previous install so had to reinstall and it's acting the same way with double partial screens and poor resolution.
Thanks
 
Old 07-17-2012, 08:05 AM   #9
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,399

Rep: Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192
Not sure I can add much - just go with the recovery option perhaps ?. Wouldn't take much to make it the default I imagine.
 
Old 07-17-2012, 10:11 AM   #10
jkirchner
Senior Member
 
Registered: Apr 2007
Location: West Virginia
Distribution: Manjaro
Posts: 1,012

Rep: Reputation: 321Reputation: 321Reputation: 321Reputation: 321
The entry for recovery shows the parameter "nomodeset" whereas the main entry does not. If you modify the fist entry to include the nomodeset parameter that should work.

Ubuntu forum has a guide on how to update the menu entry located here. Remember to run update-grub in terminal if you do add the nomodeset parameter.

Last edited by jkirchner; 07-17-2012 at 10:20 AM.
 
Old 07-19-2012, 11:05 PM   #11
ahzthecat
Member
 
Registered: May 2010
Location: Japan
Distribution: Slackware 13.37, Slackware 14, Wind0z8, Ubuntu 12.10
Posts: 156

Rep: Reputation: 9
I have an Inspiron 1100 and it has indeed been a bear to work with. Ubuntu and Ubuntu based distros (like Mint) have been especially troublesome. The last time I installed ubuntu (10.10 I think) I had to tweak the xorg.conf settings to get the display to work correctly. There is lots of good documentation about this issue on the Ubuntu forums and wikis.

I am now running slackware -current on the Dell and it works fine. Crunchbang linux and Vector Linux have also worked well for me on this particular machine.

Good Luck!
 
Old 07-20-2012, 06:04 AM   #12
rsm772
LQ Newbie
 
Registered: Jul 2012
Location: Florida, US
Distribution: Linux Mint 13
Posts: 7

Original Poster
Rep: Reputation: Disabled
Thumbs up

That worked. Once I got help with the vi editor and correct commands, we removed the "quiet splash $vt_handoff" and replaced it with "nomodeset". Now to get the Netgear WG511v2 (Taiwan) to be recognized.
Thanks for the help.
Scott
 
Old 07-20-2012, 06:15 AM   #13
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,399

Rep: Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192Reputation: 4192
I'm of a like mind to @ahzthecat - try something a bit (lot) lighter than anything too close to standard Ubuntu.
In addition to those listed, maybe look at Bohdi - I go that to run (fast) on a low-spec netbook.
 
Old 07-24-2012, 11:28 AM   #14
rsm772
LQ Newbie
 
Registered: Jul 2012
Location: Florida, US
Distribution: Linux Mint 13
Posts: 7

Original Poster
Rep: Reputation: Disabled
Finally got the netgear wg511v2 pcmcia card to work using the marvell 8335 file and installing ndiswrapper (see below)!!!!
Scott

Old 01-05-2008, 01:36 PM #10
Syche
LQ Newbie

Registered: Jan 2006
Posts: 9

Rep: Reputation: 0

nope, you just have to use m-a... just install ndiswrapper-common module-assistant and the headers for your kernel. Then run m-a a-i ndiswrapper. That's it
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Install a linux system on an Dell inspiron 1100 hanksegle Linux - Laptop and Netbook 3 08-06-2009 07:02 PM
Getting a Dell A940 USB printer to work on Dell Inspiron 1100 Laptop benrose111488 Linux - Hardware 12 09-24-2007 12:04 PM
ACPI hibernate mode (linux 2.4.22, Mandrake 9.2, Dell Inspiron 1100) arvind_s Linux - Laptop and Netbook 0 12-14-2004 03:04 AM
Dell inspiron 1100 Invdaderzim Linux - Laptop and Netbook 1 02-16-2004 03:01 PM
Help with Dell TrueMobile 1100 wlan adapter on Dell inspiron 8200 with suse8.1 simpson75us Linux - Laptop and Netbook 0 08-11-2003 10:34 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 02:58 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration