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 07-07-2003, 09:00 PM   #1
externalgreenfu
LQ Newbie
 
Registered: Jul 2003
Distribution: debian/knoppix
Posts: 27

Rep: Reputation: 15
x setup in woody


hola, i'm tryin to get X to work after i just installed woody. it says 'no screens found' I tried running xf86Config a billion times with the most minimal settings i could find, but no dice.

a friend suggested that i try a newer version of X, but without graphics i'm a bit lost.

is there a way to use apt-get and install stuff from the testing distro?
 
Old 07-08-2003, 01:33 PM   #2
another2
Member
 
Registered: Jun 2003
Distribution: Debian sid
Posts: 69

Rep: Reputation: 15
okay, i ran into the same problem, i used this command to get things working:

dpkg-reconfigure xserver-xfree86

i had to turn off dri to get things to work properly (i was using a ghetto onboard graphics card)
 
Old 07-08-2003, 11:38 PM   #3
Abject
Member
 
Registered: Mar 2002
Location: Studio City, CA
Distribution: Debian (Sarge-Sid)
Posts: 76

Rep: Reputation: 15
How to upgrade Woody X to Testing

Quote:
(externalgreenfu asked): is there a way to use apt-get and install stuff from the testing distro?
Yes indeed. The APT HOWTO is not a bad read. Highly recommended. Everything in this reply is in there, but probably written more clearly:

First, you need sources for testing packages. If you've done that already, skip this part. We'll use Netselect will help you find the fastest nearby mirror.
  • As root...
  • Install netselect
    Code:
    # apt-get install netselect
  • Be sure that wget is installed. If it is, this command with note that it's already up to date, which is OK.
    Code:
    # apt-get install wget
  • Change to some temporary directory or other (your /home is OK, too)
    Code:
    # cd /tmp
  • Send Netselect off to find the best testing package mirror in your neighborhood
    Code:
    # netselect-apt testing
  • Relax for a minute... Watch the dots...
  • See what you got:
    Code:
    # cat sources.list
  • Make a backup of your current sources.list
    Code:
     #  cp /etc/apt/sources.list /etc/apt/sources.list.old
  • append your new testing distro sources to your current sources.list
    Code:
    # cat /etc/apt/sources.list.old /tmp/sources.list > /etc/apt/sources.list
  • Take a long, hard look at your new sources.list - does it look OK? Compare it to /etc/apt/sources.list.old, if you want.
    Code:
    # more /etc/apt/sources.list # (Q to exit)

OK. Now you've got testing mirrors. Update your apt-self:
Code:
# apt-get update
And... finally... upgrade X
Code:
# apt-get -u -t testing x-window-system
The -u switch tells apt to list all of the packages it wants to upgrade. The "-t testing" bit tells apt you want the testing version.

Finally, a little housekeeping.

Add this line to /etc/apt/apt.conf to keep Woody (stable) as your default distro:
Code:
APT::Default-Release "stable";
Sorry about the happy face - it's APT-colon-colon-capital-D....
Install apt-show-versions to help you keep your mixed configuration:
Code:
apt-get -u install apt-show-versions
Now, when you want to upgrade you should do these three steps (instead of the old two-step):
Code:
# apt-get update
# apt-get install `apt-show-versions -u -b | grep testing`
# apt-get upgrade
It upgrades just the testing packages, then the rest.

HTH
 
Old 07-09-2003, 07:47 AM   #4
pe2338
Member
 
Registered: Dec 2002
Location: Bucharest,RO
Distribution: debian etch, sarge and sid
Posts: 407

Rep: Reputation: 30
nvidia drivers on woody

I tried to install the nvidia drivers from the CDs ...
(No net connection available...)

I coudn't figure out why the X server doesn't work....
I managed to convice the xf86config to get my config right...
Then I started X...
The Mplayer doesn't work fine...

So I said : is the kern - is too damn general (2.4.16)
Recompiled it ...
then added the NVdriver from the nvidia site (with their instructions ... )
I had very unpleasand surprise when I saw that X uses the xf86config file not the xf86config-4 ....

So edited the file and started X

Problems: X sends turn-off signals to the monitor and only moving the mouse or pressing buttons on the keyboard makes it turn on again but within a few secs (2-5 s) it turns off again

What should I do?

HOW could I install the drivers the debian way?
same question for the kern - where can I find a tutorial?
 
Old 07-10-2003, 09:26 PM   #5
Abject
Member
 
Registered: Mar 2002
Location: Studio City, CA
Distribution: Debian (Sarge-Sid)
Posts: 76

Rep: Reputation: 15
Well, The Debian Way here is to install a video card from a manufacturer who makes their specs available to open source developers so the drivers can be free. You're in for a scolding from the VRMS (Virtual Richard M. Stallman) that lives in Debian.

First, if you're going to build a custom kernel, here is a very good HowTo for first-timers (or nth-timers who forget a lot, like me ).

Or, you can download the kernel headers for a pre-built kernel, but it sounds like it's too late for that, as you've said you already built a custom Kernel.

Then there is the Other Debian Way to install the NVidia drivers. That is to use the Debian NVidia drver "helper" packages. Pick the one that goes best with your (Stable? Testing? Unstable?) distro. This way is pretty good, because now your NVidia drivers are apt-managed (well, mostly).

The instructions in
Code:
/usr/share/docs/nvidia*/README.Debian.gz
are very helpful. Follow them carefully. It won't work for the newest Nvidia cards (e.g., my GeF FX [Not 4] 5600), but it'll work for most. If you've got a recent (GeF FX 5600/5800 Ultra/Non, etc.) card, you'll have to run in VESA mode with the VESA driver .

Finally, if you're feeling rebellious, you can do it the totally-non-Debian Way, as described in this HowTo.

Last edited by Abject; 07-11-2003 at 05:38 PM.
 
Old 07-10-2003, 10:30 PM   #6
externalgreenfu
LQ Newbie
 
Registered: Jul 2003
Distribution: debian/knoppix
Posts: 27

Original Poster
Rep: Reputation: 15
got hte nvidia drivers working

i got the nvidia drivers to work wonderfully with my gf4ti4100...

I used the script posted at <Br> http://www.linuxquestions.org/questi...threadid=70326

of course it didn't work the first 5 or so times i tried it, so i started install the parts manually... i updated my kernel, got the appropiate kernel headerifles, set x to use the nv driver etc... (just read the script and try to anticipate it... ) then ran it again and it worked perfectly
 
  


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
woody.. apenguinlinux Debian 4 02-09-2005 10:47 AM
woody? g-string 3 Linux - Newbie 2 08-30-2004 09:38 AM
Woody??? Setup problems wimman Linux - Newbie 4 07-15-2004 05:11 AM
2.6.x and woody tsitras Debian 6 02-11-2004 12:12 AM
ICECAST setup info for debian woody rmanocha Linux - Software 2 01-05-2004 01:58 AM

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

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