LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-19-2011, 08:48 AM   #1
devnull10
Member
 
Registered: Jan 2010
Location: Lancashire
Distribution: Slackware Stable
Posts: 572

Rep: Reputation: 120Reputation: 120
Slackware graphics card compatibility


Just tried to install 13.37 on an old dell machine I have. Installation went fine, booted up and started x. Screen froze. After reading up, it seems the onboard graphics chipset is not supported - Intel 82865g.
So I dig out an old PCI card I have (the box only has PCI expansion slots) and install that. Start booting up, the system gets halfway then blank screen. But it still is actually working in the background because if I type "root" and then the password as if to log in, then issue the shutdown command, the machines does. It's as if the graphics card stops working halfway through boot up.

Now one thing I did notice during boot with the onboard card, at the point the PCI one freezes, the screen goes into a different mode, it goes to a higher resolution, displaying more text and everything is smaller.
I have set the mode to VGA in lilo but it still does this (it was always set at that anyway).

Does anyone have any suggestions? I thought about going getting a new PCI card, just want something dirt cheap which will work, but I want to be sure it is gonna work before I get one.

Why would the text go to a higher resolution when I haven't changed anything? My home box doesn't do this and it's running 13.37 too.

No clues in /var/log/messages either.
 
Old 08-19-2011, 09:16 AM   #2
SeRi@lDiE
Member
 
Registered: Jun 2006
Location: /dev/null
Distribution: Slackware 13.1, Slackware 13.37, aptosid, rhel
Posts: 547
Blog Entries: 7

Rep: Reputation: 55
Quote:
Originally Posted by devnull10 View Post
Just tried to install 13.37 on an old dell machine I have. Installation went fine, booted up and started x. Screen froze. After reading up, it seems the onboard graphics chipset is not supported - Intel 82865g.
So I dig out an old PCI card I have (the box only has PCI expansion slots) and install that. Start booting up, the system gets halfway then blank screen. But it still is actually working in the background because if I type "root" and then the password as if to log in, then issue the shutdown command, the machines does. It's as if the graphics card stops working halfway through boot up.

Now one thing I did notice during boot with the onboard card, at the point the PCI one freezes, the screen goes into a different mode, it goes to a higher resolution, displaying more text and everything is smaller.
I have set the mode to VGA in lilo but it still does this (it was always set at that anyway).

Does anyone have any suggestions? I thought about going getting a new PCI card, just want something dirt cheap which will work, but I want to be sure it is gonna work before I get one.

Why would the text go to a higher resolution when I haven't changed anything? My home box doesn't do this and it's running 13.37 too.

No clues in /var/log/messages either.
It looks like your frame buffer under the lilo config file is set to high for your video card.
edit your lilo.conf file and change your vesa framebuffer and lower it than run lilo and reboot and see.

Note: Use the video card that does work in run level 3 to make your changes for your old card.

As for vid card recommendations try any nvidia card. There drive support for linux is superb.
 
Old 08-19-2011, 09:29 AM   #3
psionl0
Member
 
Registered: Jan 2011
Distribution: slackware_64 14.1
Posts: 722
Blog Entries: 2

Rep: Reputation: 124Reputation: 124
The latest kernels have a "Kernel Management System" that has pretty much changed the way we do things when setting up the video. The noveau driver in kernel 2.6.37.6 seems to have some problems.

Some fixes that you can try include:
  • Install the kernel from Slackware 13.1
  • install the 2.6.38.4 kernel from /testing in the Slackware 13.37 distro
  • disable the noveau driver (this will also fix the text size problem)

Disabling the novea driver involves creating a file /etc/modprobe.d/disable-nouveau.conf with the following lines:
Code:
blacklist nouveau
options nouveau modeset=0
If it is just a question of text size, THIS THREAD has some other options for you to try.
 
Old 08-19-2011, 11:06 AM   #4
devnull10
Member
 
Registered: Jan 2010
Location: Lancashire
Distribution: Slackware Stable
Posts: 572

Original Poster
Rep: Reputation: 120Reputation: 120
How would I go about changing lilo config as it looks like this now:

Code:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
boot = /dev/sda
#compact        # faster, but won't work on all systems.
# Standard menu.
message = /boot/boot_message.txt

# Append any additional kernel parameters:
append=" vt.default_utf8=0"
#prompt
#timeout = 5
# Normal VGA console
vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# VESA framebuffer console @ 1024x768x256
# vga=773
# VESA framebuffer console @ 800x600x64k
# vga=788
# VESA framebuffer console @ 800x600x32k
# vga=787
# VESA framebuffer console @ 800x600x256
# vga=771
# VESA framebuffer console @ 640x480x64k
# vga=785
# VESA framebuffer console @ 640x480x32k
# vga=784
# VESA framebuffer console @ 640x480x256
# vga=769
# ramdisk = 0     # paranoia setting
# End LILO global section
# Linux bootable partition config begins
image = /boot/vmlinuz
  root = /dev/sda2
  label = Linux
  read-only  # Partitions should be mounted read-only for checking
I thought the noveau driver was nvidia??
 
Old 08-19-2011, 11:32 AM   #5
adamk75
Senior Member
 
Registered: May 2006
Posts: 3,091

Rep: Reputation: 399Reputation: 399Reputation: 399Reputation: 399
Quote:
Originally Posted by psionl0 View Post
The latest kernels have a "Kernel Management System" that has pretty much changed the way we do things when setting up the video. The noveau driver in kernel 2.6.37.6 seems to have some problems.
KMS stands for Kernel Modesetting.

devnull10, try passing 'video=640x480' to the kernel. That will force any KMS drivers to use that resolution on the console.

Adam
 
Old 08-19-2011, 11:51 AM   #6
psionl0
Member
 
Registered: Jan 2011
Distribution: slackware_64 14.1
Posts: 722
Blog Entries: 2

Rep: Reputation: 124Reputation: 124
Quote:
Originally Posted by devnull10 View Post
How would I go about changing lilo config as it looks like this now:
Apart from changing the append line to
Quote:
append=" vt.default_utf8=0 video=640x480"
your lilo.conf should be fine. (You could also try "nomodeset" instead of the video= option). If you change the kernel then you may need to specify which "vmlinuz" you are booting to and you will need to rerun lilo


Quote:
Originally Posted by devnull10 View Post
I thought the noveau driver was nvidia??
noveau can handle nvidia chipsets but in many cases it is better to use the nvidia drivers instead.

Last edited by psionl0; 08-19-2011 at 11:55 AM.
 
Old 08-19-2011, 02:11 PM   #7
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,504

Rep: Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461
Quote:
Originally Posted by devnull10 View Post
Just tried to install 13.37 on an old dell machine I have. Installation went fine, booted up and started x. Screen froze. After reading up, it seems the onboard graphics chipset is not supported - Intel 82865g.
http://www.linuxquestions.org/questi...82845g-788563/
 
1 members found this post helpful.
Old 08-19-2011, 06:02 PM   #8
devnull10
Member
 
Registered: Jan 2010
Location: Lancashire
Distribution: Slackware Stable
Posts: 572

Original Poster
Rep: Reputation: 120Reputation: 120
Quote:
Originally Posted by volkerdi View Post
Couldn't have asked for more - works perfectly!
Thanks Pat!
 
Old 08-20-2011, 02:12 AM   #9
psionl0
Member
 
Registered: Jan 2011
Distribution: slackware_64 14.1
Posts: 722
Blog Entries: 2

Rep: Reputation: 124Reputation: 124
Unhappy

Quote:
Originally Posted by volkerdi View Post
If only there was a thread that solved MY problem so easily.
 
  


Reply



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
[SOLVED] My VIA graphics card is not recognized by Slackware 13.1 madsovenielsen Slackware 20 07-20-2011 03:21 PM
graphics card/screen compatibility problems Antongarou Ubuntu 3 12-03-2010 11:11 PM
Bad graphics: ATI raedon graphics card and slackware shady_Dev Linux - Hardware 1 05-22-2008 06:00 AM
Upgrading Graphics Card - Compatibility Concern anilnatha Linux - Hardware 4 10-12-2006 04:56 PM
Graphics card compatibility with FreeBSD ZhiYi *BSD 3 05-22-2003 03:30 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:22 PM.

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