Where does xorg.conf find its video drivers

3

1

I have the following section in xorg.conf

Section "Device"
    Identifier  "Default Device"
    Driver  "fglrx"
EndSection

In what directory does it look to find the fglrx driver?

tony_sid

Posted 2010-07-29T06:36:22.163

Reputation: 11 651

Answers

4

the xorg-xserver searche for its drivers in:

/usr/lib/xorg/modules/drivers

with installed 'fglrx' you can find a symlink called fglrx_drv.so which points (essentially) to /usr/lib/fglrx/xorg/modules/drivers/fglrx_drv.so. you can find out the name of the package providing that file by

% dpkg -S /usr/lib/fglrx/xorg/modules/drivers/fglrx_drv.so

which should result in fglrx. you can find out the rest of the files belonging to that package with:

% dpkg -L fglrx

akira

Posted 2010-07-29T06:36:22.163

Reputation: 52 754