LinuxQuestions.org
Support LQ: Use code LQCO20 and save 20% on CrossOver Office
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
 
LinkBack Search this Thread
Old 02-07-2010, 03:38 PM   #1
Cultist
Member
 
Registered: Feb 2010
Location: I'm not even sure.
Distribution: Slackware64 -current multilib
Posts: 645

Rep: Reputation: 66
issue installing graphics card driver in Debian (sluggish KDE)


I have an NVIDIA GTX 260M card which is one of the more high-end mobile graphics cards, and so should certainly be able to handle any GUI. All that I've read has said that Debian 5.x should have built-in support for NVIDIA cards. But when I'm logged in, all the menus and stuff in KDE are really sluggish and frame-skippish. So I naturally assume, no built-in graphics card support. Since so far I can't figure out where in Linux I have to go to look at my hardware specs (to see if my card is recognized), I get online download the applicable proprietary driver file. Due to my job, I'm about 6 months away from having internet access to my own laptop, where the problem is occurring, so I have to download it on my work computer and copy it over.

I find the necessary driver file from nvidia.com, NVIDIA-Linux-x86-190.53-pkg1.run (I'm using a 32-bit version of Debian, even though my laptop is quadcore).

Now, I can't figure out what to do to install this .run file.
Double-clicking it seems to do nothing but open a text file and then lock up my computer for half an hour.

What do I need to do to get my card working now?
Thanks for the help
 
Old 02-07-2010, 03:45 PM   #2
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,654
Blog Entries: 8

Rep: Reputation: 154Reputation: 154
To install the nvidia proprietary drivers from their page you need to be in a true console (no X/gui running) and run
PHP Code:
sudo sh /path/to/NVIDIA-Linux-x86-190.53-pkg1.run 
I've never used Debian proper so I can't tell you how to get there.

I'm not sure of the graphical tools in Debian proper, but I would assume that, like Ubuntu which is Debian based, you could add non-free repositories, and then do a search for the nvidia drivers. It will probably be an older driver version though, so you would need to make sure that the version available from the repositories supports your particular card.
 
Old 02-07-2010, 03:52 PM   #3
Cultist
Member
 
Registered: Feb 2010
Location: I'm not even sure.
Distribution: Slackware64 -current multilib
Posts: 645

Original Poster
Rep: Reputation: 66
is /path/to/ literally /path/to/, or do you mean like /home/ or whatever directory I have the file?

I can't directly download on my laptop, so I have to download on this computer and copy the files to my own computer(due to work restrictions)
 
Old 02-07-2010, 03:56 PM   #4
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,654
Blog Entries: 8

Rep: Reputation: 154Reputation: 154
To get into a non-X environment and install the driver I believe you can do this:

ctrl+alt+f2
login
PHP Code:
sudo su (enter password when prompted)

/
etc/init.d/gdm stop (assumes you are using gnome desktop manager)

sh /path/to/NVIDIA-Linux-x86-190.53-pkg1.run  (follow prompts for driver installation)

/
etc/init.d/gdm start 
login
 
Old 02-07-2010, 03:57 PM   #5
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,654
Blog Entries: 8

Rep: Reputation: 154Reputation: 154
I mean the path to the driver such as
PHP Code:
/home/user/Downloads/NVIDIA-INSTALLER 
 
Old 02-07-2010, 04:01 PM   #6
Cultist
Member
 
Registered: Feb 2010
Location: I'm not even sure.
Distribution: Slackware64 -current multilib
Posts: 645

Original Poster
Rep: Reputation: 66
great thanks. I'll all this out and post here how it worked out tomorrow
 
Old 02-07-2010, 04:33 PM   #7
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,654
Blog Entries: 8

Rep: Reputation: 154Reputation: 154
Good luck. Be aware that you may be using kdm (kde display manager) or xdm (x-windows display manager) rather than gdm.
 
Old 02-08-2010, 09:55 AM   #8
Cultist
Member
 
Registered: Feb 2010
Location: I'm not even sure.
Distribution: Slackware64 -current multilib
Posts: 645

Original Poster
Rep: Reputation: 66
ran into another issue. First it told me to install binutils. so I restarted kde and installed binutils from my dvd repositories. Ran install process again. This time it tells me to install gckl (or something like that), so again I install it from my DVDs. Run the installation for a third time, and it tells me I need 'make'. I check my DVDs for this, and there is no 'make'. What is it, and where can I get it? I didn't find much info elsewhere, and I'm not really sure why I don't already have it as part of the initial Debian install because it seems to be a pretty core file. My repository does have 'mmake', but it says that its already installed. I don't know if the two are related or not. any tips on getting past this 'make' roadblock?
 
Old 02-08-2010, 10:02 AM   #9
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,654
Blog Entries: 8

Rep: Reputation: 154Reputation: 154
PHP Code:
man make 
Quote:
DESCRIPTION
The purpose of the make utility is to determine automatically which pieces of a large program need to be recom‐
piled, and issue the commands to recompile them. The manual describes the GNU implementation of make, which was
written by Richard Stallman and Roland McGrath, and is currently maintained by Paul Smith. Our examples show C
programs, since they are most common, but you can use make with any programming language whose compiler can be run
with a shell command. In fact, make is not limited to programs. You can use it to describe any task where some
files must be updated automatically from others whenever the others change.
The easiest way will be to use the debian package manager. You may need additional dev packages, I've never used Debian proper, but I believe it uses synaptic as a front end to aptitude just like Ubuntu.

You might be able to just issue the following command
PHP Code:
sudo apt-get install make 

Last edited by damgar; 02-08-2010 at 10:05 AM.
 
Old 02-08-2010, 10:14 AM   #10
Cultist
Member
 
Registered: Feb 2010
Location: I'm not even sure.
Distribution: Slackware64 -current multilib
Posts: 645

Original Poster
Rep: Reputation: 66
those commands should work offline, right?

(I have a very annoying situation requiring my linux laptop to not be online at all)
 
Old 02-08-2010, 10:19 AM   #11
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,654
Blog Entries: 8

Rep: Reputation: 154Reputation: 154
PHP Code:
man make 
was just showing you where I got the info on make. It's from the man pages. You can check out various programs on your system by typing
PHP Code:
man PROGRAMNAME 
and that will work offline if the manual page is installed.

PHP Code:
sudo apt-get install make 
will not work off-line. It is going to download make and it's dependencies and install them.
 
Old 02-08-2010, 10:23 AM   #12
Cultist
Member
 
Registered: Feb 2010
Location: I'm not even sure.
Distribution: Slackware64 -current multilib
Posts: 645

Original Poster
Rep: Reputation: 66
can it just be downloaded separately so I can put it on a thumbdrive and transfer it?
 
Old 02-08-2010, 10:27 AM   #13
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid
Posts: 4,164
Blog Entries: 9

Rep: Reputation: 327Reputation: 327Reputation: 327Reputation: 327
If you need to download packages for offline usage you might take a look at:
Welcome to Sushi, huh? package downloader for offline GNU/Linux systems - http://sushi-huh.sourceforge.net/

For installing nvidia I always just run smxi
 
Old 02-08-2010, 10:35 AM   #14
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,654
Blog Entries: 8

Rep: Reputation: 154Reputation: 154
Maybe with
Quote:
sudo apt-get install -d make
or
Quote:
~$ sudo apt-get source -d make
I have no real experience working in a non-broadband environment. It is my job to deliver broadband to people..... especially in rural or underserved places so it's basically a given in my life. I'm spoiled in that regard I guess.

Last edited by damgar; 02-08-2010 at 10:37 AM.
 
Old 02-08-2010, 10:37 AM   #15
Cultist
Member
 
Registered: Feb 2010
Location: I'm not even sure.
Distribution: Slackware64 -current multilib
Posts: 645

Original Poster
Rep: Reputation: 66
http://www.gnu.org/software/make/ I found this, which leads me to http://ftp.gnu.org/pub/gnu/make/

Is that the right thing? It has the line "GNU Make has many powerful features for use in makefiles, beyond what other Make versions have", so I'm not sure if its some special version of make, or if it will work for what I need
 
  


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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Installing graphics card driver - cant be difficult? :) [Debian, Lenny] skipidar Linux - Hardware 2 08-18-2009 11:22 AM
installing new driver for graphics card on computer with Ubuntu and no internet Nemesissparadise Linux - Software 1 05-07-2009 07:53 PM
After installing nvidia graphics card driver mandrva 2009 failed to start GUI. kumar3999 Mandriva 6 11-22-2008 06:35 PM
Errors installing official Intel driver for 82865G graphics card. Eerath Linux - Hardware 3 10-14-2005 03:18 PM
sis graphics card driver issue shinsplints Linux - Hardware 4 11-05-2004 09:08 PM


All times are GMT -5. The time now is 10:06 AM.

Main Menu
 
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
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration