LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 08-25-2009, 08:00 AM   #16
mushroomboy
Member
 
Registered: Jan 2006
Distribution: Debian Testing ALWAYS!!!
Posts: 363

Rep: Reputation: 43

Oh debian didn't move it to /lib32, it's /usr/lib32... You can actually link /emul/ia32-linux/usr/lib to /usr/lib32, I've stated in previous posts about that, it also fixes the nvidia complaining problems. What I do is this:

cp /emul/ia32-linux/usr/lib/* /usr/lib32 -R
rm /emul/ia32-linux/usr/lib -R
ln -s /usr/lib32 /emul/ia32-linux/usr/lib

That's a very quick and easy work around for the ia32 libs in the newer debian.

[edit]
Of course if you don't have /emul/ia32-linux/usr/lib due to a fresh install just make the directory structure '/emul/ia32-linux/usr' and then link /usr/lib32 to '/emul/ia32-linux/usr/lib'... And when you do install ia32 libs you won't have to do anything later to fix things. And if your on Lenny you can still do this, so when future updates hit and they do complete the transition you will already have everything in the proper folders! =)

Last edited by mushroomboy; 08-25-2009 at 08:03 AM. Reason: always forgetting something
 
Old 08-25-2009, 08:04 AM   #17
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by mushroomboy View Post
Oh debian didn't move it to /lib32, it's /usr/lib32... You can actually link /emul/ia32-linux/usr/lib to /usr/lib32, I've stated in previous posts about that, it also fixes the nvidia complaining problems. What I do is this:

cp /emul/ia32-linux/usr/lib/* /usr/lib32 -R
rm /emul/ia32-linux/usr/lib -R
ln -s /usr/lib32 /emul/ia32-linux/usr/lib

That's a very quick and easy work around for the ia32 libs in the newer debian.
I was just coming back to change the typo!.Well spotted.
 
Old 08-25-2009, 08:05 AM   #18
mushroomboy
Member
 
Registered: Jan 2006
Distribution: Debian Testing ALWAYS!!!
Posts: 363

Rep: Reputation: 43
Hehe no problem, the ia32 libs have given me such a headache I like to make sure people don't get the same errors I did. It almost made me want to stab people... lol
 
Old 08-25-2009, 08:14 AM   #19
rerushg
Member
 
Registered: Dec 2008
Location: South Carolina
Distribution: Debian testing
Posts: 57

Rep: Reputation: 16
Quote:
Originally Posted by the trooper View Post
If you run i686 you should be just fine,try out the tutorial see how it works for you.
Thanks for the reply. I'll give it a roll later today. It's a 32-bit box with on-mobo Nv6150. Never has been a problem. My 64-bit box (with Nv7900GS) is down at the moment but I'll get around to it sometime.

I'll second GrapefruiTgirl: Been using Nv since I got into Linux about 2-1/2 years ago with no problems that weren't understandable.

I'll second farslayer too: Been there - done that. If you don't purge a failed install you're just chasing your tail around the parking lot.
 
Old 08-25-2009, 08:17 AM   #20
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by rerushg View Post
Thanks for the reply. I'll give it a roll later today. It's a 32-bit box with on-mobo Nv6150. Never has been a problem. My 64-bit box (with Nv7900GS) is down at the moment but I'll get around to it sometime.

I'll second GrapefruiTgirl: Been using Nv since I got into Linux about 2-1/2 years ago with no problems that weren't understandable.

I'll second farslayer too: Been there - done that. If you don't purge a failed install you're just chasing your tail around the parking lot.
Cool.Seems like we're all in agreement then.
If only everything in life was so simple!
 
Old 08-25-2009, 08:17 AM   #21
GrapefruiTgirl
LQ Guru
 
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594

Rep: Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556Reputation: 556
Hee hee!

Quote:
Originally Posted by mushroomboy View Post
Hehe no problem, the ia32 libs have given me such a headache I like to make sure people don't get the same errors I did. It almost made me want to stab people... lol
lol, that's funny stuff!!

Sasha
 
Old 09-01-2009, 06:31 PM   #22
rerushg
Member
 
Registered: Dec 2008
Location: South Carolina
Distribution: Debian testing
Posts: 57

Rep: Reputation: 16
Quote:
Originally Posted by the trooper View Post
Cool.Seems like we're all in agreement then.
If only everything in life was so simple!
Finally got around to my daughter's machine. Used the smxi script. All went well and smxi is way cool.
I'm not sure I'd recommend it to rank newbies though. It's pretty intense and might confuse the heck out of 'em.
Thanks for the tips.

Hey mods: I think Trooper deserves a "sticky". eh?
 
Old 09-01-2009, 07:48 PM   #23
GoinEasy9
Member
 
Registered: Feb 2004
Location: Manorville, New York, USA
Distribution: siduction, openSUSE Tumbleweed
Posts: 379
Blog Entries: 1

Rep: Reputation: 47
Did you folks know that techpatterns.com has a script called sgfxi that only does graphic driver installs:
cd /usr/local/bin && wget -Nc smxi.org/smxi.zip && unzip smxi.zip && sgfxi
I'm sure the smxi.zip contains sgfxi, if I'm mistaken do:
cd /usr/local/bin && wget -Nc smxi.org/sfgxi && chmod +x sgfxi && sgfxi
No need to go all the way through smxi if you only want to install graphics.

Hope this helped.
 
Old 09-02-2009, 07:54 AM   #24
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Original Poster
Rep: Reputation: Disabled
Quote:
No need to go all the way through smxi if you only want to install graphics
Yes.Quite true.
If you just want to install the graphics drivers you can use sgfxi.
It may save a little time doing so.
Personally i prefer the full featured smxi,but to each his own.
I posted the smxi url,so people can read and decide for themselves.

Thanks for pointing this out GoinEasy9.
 
Old 09-03-2009, 01:06 AM   #25
jens
Senior Member
 
Registered: May 2004
Location: Belgium
Distribution: Debian, Slackware, Fedora
Posts: 1,463

Rep: Reputation: 299Reputation: 299Reputation: 299
Quote:
Originally Posted by jiml8 View Post
What's wrong with simply running the nvidia installer?
The main reason why I don't use the nvidia-installer is that it only allows you to install one driver for all kernels (I like playing with upstream kernels).

Quote:
Originally Posted by the trooper
That's a good point Farslayer,i had forgotten that.
I will work that into the how-to somewhere.
Perhaps you could mention nvidia's --uninstall option as well (or just add a warning about mixing both methods).

Last edited by jens; 09-03-2009 at 01:10 AM.
 
Old 09-03-2009, 07:02 AM   #26
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Bullseye
Posts: 1,508

Original Poster
Rep: Reputation: Disabled
Quote:
or just add a warning about mixing both methods
I think we've covered that with Farslayers' suggestion to purge Debian's Nvidia packages before running the downloaded installer from Nvidia.
I've added a note about this to the how-to already.

Quote:
Perhaps you could mention nvidia's --uninstall option as well
Yes,i think this is relevant.
It's not absolutely necessary to remove an existing driver to install a more recent version.The installer will detect an existing driver and remove it as part of the process of installing the new driver.

On my own machines i use the --uninstall option first,then install the new driver.
You can also update the driver using the --update option.
The other option is --latest,i assume this installs the current beta driver.
I've not tried this myself.
 
Old 09-04-2009, 09:11 AM   #27
mushroomboy
Member
 
Registered: Jan 2006
Distribution: Debian Testing ALWAYS!!!
Posts: 363

Rep: Reputation: 43
Quote:
Originally Posted by the trooper View Post
I think we've covered that with Farslayers' suggestion to purge Debian's Nvidia packages before running the downloaded installer from Nvidia.
I've added a note about this to the how-to already.



Yes,i think this is relevant.
It's not absolutely necessary to remove an existing driver to install a more recent version.The installer will detect an existing driver and remove it as part of the process of installing the new driver.

On my own machines i use the --uninstall option first,then install the new driver.
You can also update the driver using the --update option.
The other option is --latest,i assume this installs the current beta driver.
I've not tried this myself.
I've been trying to tell people this for years, that you don't need an uninstall... The system will overwrite the old driver files by default and make new reference links, though if a file is 'forgotten' you might have troubles but I've never ran into that. The nvidia installer is very good at removing the old drivers, as is the m-a (well because it's packaged hehe)... The only real problem might be switching from the nvidia way to the debian way, which is going from a non-packaged system to a packaged system. I've never had troubles with this so I can't say if it's even really a worry.
 
Old 09-04-2009, 03:19 PM   #28
el_b
Member
 
Registered: Apr 2009
Distribution: Slackware 13.0
Posts: 48

Rep: Reputation: 17
I just download the driver from nvidia, kill X, and install. No need for m-a prepare or anything like that, works flawlessly for me.
 
Old 09-04-2009, 03:24 PM   #29
mushroomboy
Member
 
Registered: Jan 2006
Distribution: Debian Testing ALWAYS!!!
Posts: 363

Rep: Reputation: 43
Quote:
Originally Posted by el_b View Post
I just download the driver from nvidia, kill X, and install. No need for m-a prepare or anything like that, works flawlessly for me.
That's if you have the headers and build essential installed...and the other gcc stuff as well. I know for a fact that the net install of debian doesn't have the headers installed because that's what I always run. You just happen to be lucky then...
 
Old 09-04-2009, 07:10 PM   #30
GoinEasy9
Member
 
Registered: Feb 2004
Location: Manorville, New York, USA
Distribution: siduction, openSUSE Tumbleweed
Posts: 379
Blog Entries: 1

Rep: Reputation: 47
Just an FYI, sgfxi removes all the old nvidia files before installing the new ones.

Hope that helps.
 
  


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
How do i install Linux Nvidia drivers for a Geforce 6200 in Fedora 10? bullred Fedora 10 06-25-2009 01:29 AM
LXer: Install multimedia codecs, libdvdcss in Debian Etch GNU/Linux LXer Syndicated Linux News 0 04-14-2007 09:01 PM
How can I run multi user text mode in Debian to install Nvidia drivers?? doraimom Debian 40 04-14-2007 06:54 AM
Linspire is Debian,but how 2 Install Nvidia Drivers starfly Linux - Hardware 16 04-01-2005 02:04 PM

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

All times are GMT -5. The time now is 12:58 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