LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-15-2009, 12:10 AM   #61
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405

It xorg already running (i.e., did you do startx or something like that)?

I don't have much experience with the xorg configurators, I've always edited my xorg.conf file by hand. So my knowledge about these configurators is very limited.

If you do "startx" now, does it launch a graphical session?
 
Old 05-15-2009, 02:38 AM   #62
vibinlakshman
Member
 
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334

Original Poster
Rep: Reputation: 33
Wink

Quote:
Originally Posted by i92guboj View Post
It xorg already running (i.e., did you do startx or something like that)?

I don't have much experience with the xorg configurators, I've always edited my xorg.conf file by hand. So my knowledge about these configurators is very limited.

If you do "startx" now, does it launch a graphical session?
No i havent started , but tried startx , it shows an ugly screen for a second and disappears .
Can u plz post what u have done for ur xorg.conf files , for a moment i'm giving up xorg configurators , OK ..
 
Old 05-15-2009, 02:59 AM   #63
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
First move your xorg.conf file elsewhere (if it exists at all).

Code:
$ mv /etc/X11/xorg.conf ~/xorg.conf.back
Then follow this guide:

http://www.gentoo.org/doc/en/dri-howto.xml

To get the intel driver working. You need to pick the correct driver in the menuconfig step, and you also need to use the correct driver in xorg.conf instead of the "radeon" one that appears in the guide. I guess you need "intel" here, but I never used an intel GPU so I am not sure.
 
Old 05-15-2009, 06:59 AM   #64
vibinlakshman
Member
 
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334

Original Poster
Rep: Reputation: 33
Wink

Quote:
Originally Posted by i92guboj View Post
First move your xorg.conf file elsewhere (if it exists at all).

Code:
$ mv /etc/X11/xorg.conf ~/xorg.conf.back
Then follow this guide:

http://www.gentoo.org/doc/en/dri-howto.xml

To get the intel driver working. You need to pick the correct driver in the menuconfig step, and you also need to use the correct driver in xorg.conf instead of the "radeon" one that appears in the guide. I guess you need "intel" here, but I never used an intel GPU so I am not sure.
I just moved that xorg.conf file , and had performed kernel tweeking with intel as the option , everything was success .
But couldnt take that xorg.conf file again to get edited , so i copied ~/xorg.conf.backback to my X11 folder , is there any problem in that .. ?
 
Old 05-15-2009, 07:26 AM   #65
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
No problem, you can use that as a base or write a new one. Just make sure you set "Intel" as the driver inside of it.
 
Old 05-15-2009, 10:47 AM   #66
vibinlakshman
Member
 
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334

Original Poster
Rep: Reputation: 33
Wink

Quote:
Originally Posted by i92guboj View Post
No problem, you can use that as a base or write a new one. Just make sure you set "Intel" as the driver inside of it.
Yes done , i think i'm very poor in editing config file , but some how managed it ...

After having startx in gentoo ,i'll show what i get

(EE) Failed to laod module "type1"(module doesnt exists,0)
(EE) Failed to load module "freetype"(module doesnt exists, 0)
(EE) Failed to load module "mga" (module doesnt exists,0)
(EE) No drivers installed

Fatal error
no screen found giving up
 
Old 05-15-2009, 11:40 AM   #67
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Do you, by any chance, have the "minimal" use flag on?

Those modules should be present.
 
Old 05-15-2009, 08:00 PM   #68
vibinlakshman
Member
 
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334

Original Poster
Rep: Reputation: 33
Red face

Quote:
Originally Posted by i92guboj View Post
Do you, by any chance, have the "minimal" use flag on?

Those modules should be present.
Sorry i dont knw what ur mentioning , i couldnt get that . Can u be more specific , is this anything that i need to check in xorg.conf file , but i couldnt figure it out there ..
 
Old 05-15-2009, 08:18 PM   #69
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
You can see the USE flags for a given package on the output of emerge -pv, for example, for my xorg-server they are these:

Code:
$ emerge -va xorg-server
superuser access is required... adding --pretend to options.


These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R   ] x11-base/xorg-server-1.5.3-r6  USE="hal ipv6 kdrive nptl xorg (-3dfx) -debug -dmx -minimal -sdl -tslib"
Mine is "off" (as should be yours). Just check it. If it's "on" (no minus sign in front of "minimal", then that can be your problem. USE flags are set either in /etc/make.conf or in /etc/portage/package.use

Last edited by i92guboj; 05-15-2009 at 08:19 PM.
 
Old 05-15-2009, 08:39 PM   #70
vibinlakshman
Member
 
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334

Original Poster
Rep: Reputation: 33
Wink

Quote:
Originally Posted by i92guboj View Post
You can see the USE flags for a given package on the output of emerge -pv, for example, for my xorg-server they are these:

Code:
$ emerge -va xorg-server
superuser access is required... adding --pretend to options.


These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R   ] x11-base/xorg-server-1.5.3-r6  USE="hal ipv6 kdrive nptl xorg (-3dfx) -debug -dmx -minimal -sdl -tslib"
Mine is "off" (as should be yours). Just check it. If it's "on" (no minus sign in front of "minimal", then that can be your problem. USE flags are set either in /etc/make.conf or in /etc/portage/package.use
I dont have anything like that in that make.conf file .. Is it fine , i just added only essential parts as USE flags nothing more
 
Old 05-17-2009, 12:53 PM   #71
NeddySeagoon
Gentoo support team
 
Registered: May 2009
Location: 56N 3W
Distribution: Gentoo
Posts: 178

Rep: Reputation: 41
vibinlakshman,

We need to see the following
Code:
emerge --info
and the contents of the files xorg.conf and /var/log/Xorg.0.log.

The log file can be quite large.
Code:
emerge wgetpaste
and do
Code:
wgetpaste /var/log/Xorg.0.log
to put the file on the web. Post the URL you get back. Like this:-
Code:
bluebottle NeddySeagoon # wgetpaste /etc/X11/xorg.conf
Your paste can be seen here: http://dpaste.com/45057/
bluebottle NeddySeagoon #
That URL shows a xorg.conf taken from my Acer Aspire One, which has the same graphics chip as you. Other than the Section "Screen" it should be close to what you need.
 
Old 05-18-2009, 01:09 AM   #72
vibinlakshman
Member
 
Registered: Dec 2008
Location: Kerala, India
Distribution: Ubuntu 11.10
Posts: 334

Original Poster
Rep: Reputation: 33
Wink

Quote:
Originally Posted by NeddySeagoon View Post
vibinlakshman,

We need to see the following
Code:
emerge --info
and the contents of the files xorg.conf and /var/log/Xorg.0.log.

The log file can be quite large.
Code:
emerge wgetpaste
and do
Code:
wgetpaste /var/log/Xorg.0.log
to put the file on the web. Post the URL you get back. Like this:-
Code:
bluebottle NeddySeagoon # wgetpaste /etc/X11/xorg.conf
Your paste can be seen here: http://dpaste.com/45057/
bluebottle NeddySeagoon #
That URL shows a xorg.conf taken from my Acer Aspire One, which has the same graphics chip as you. Other than the Section "Screen" it should be close to what you need.
Sorry dude i had given up the Gentoo .. I think it doesnt suits me .. For past one and half month i'm trying this .. So better luck next time man ,
Thanks for ur comments ..
 
  


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
Linux Installation Plzzzzzz Help!! kornoholio Linux - Laptop and Netbook 1 12-18-2006 03:10 AM
Help Me!!!!!! plzzzzzz dogslayer Linux - Software 9 03-02-2006 07:04 PM
Help Me!!!!!! plzzzzzz dogslayer Linux - Software 2 02-22-2006 11:34 AM
Need Help Plzzzzzz Jonasl Linux - Software 1 11-06-2003 10:07 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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