LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 02-09-2007, 05:01 PM   #61
dreck
Member
 
Registered: Oct 2003
Location: US
Distribution: Fedora Core 6 (x86_64)
Posts: 61

Original Poster
Rep: Reputation: 15

Quote:
Originally Posted by markelo
No. rpm-build is a package which is needed by ati-driver-installer script. ati-driver-installer script uses that package to build rpm-files ( package files ) for your system.
Ok, that makes sense. Sorry I am so slow at catching on.
Code:
[me@localhost ~]$ su -
Password: 
[root@localhost ~]# yum install rpm-build
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
core                      100% |=========================| 1.1 kB    00:00     
updates                   100% |=========================| 1.2 kB    00:00     
extras                    100% |=========================| 1.1 kB    00:00     
Reading repository metadata in from local files
primary.xml.gz            100% |=========================| 452 kB    00:03     
updates   : ################################################## 1428/1428
primary.xml.gz            100% |=========================| 1.8 MB    00:14     
extras    : ################################################## 5741/5741
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for rpm-build to pack into transaction set.
rpm-build-4.4.2-32.x86_64 100% |=========================|  17 kB    00:00     
---> Package rpm-build.x86_64 0:4.4.2-32 set to be updated
--> Running transaction check
--> Processing Dependency: elfutils for package: rpm-build
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for elfutils to pack into transaction set.
elfutils-0.125-1.fc6.x86_ 100% |=========================|  15 kB    00:00     
---> Package elfutils.x86_64 0:0.125-1.fc6 set to be updated
--> Running transaction check
--> Processing Dependency: elfutils-libs = 0.125-1.fc6 for package: elfutils
--> Processing Dependency: libdw.so.1(ELFUTILS_0.122)(64bit) for package: elfutils
--> Processing Dependency: libdw.so.1()(64bit) for package: elfutils
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for elfutils-libs to pack into transaction set.
elfutils-libs-0.125-1.fc6 100% |=========================|  17 kB    00:00     
---> Package elfutils-libs.x86_64 0:0.125-1.fc6 set to be updated
--> Running transaction check

Dependencies Resolved

=============================================================================
 Package                 Arch       Version          Repository        Size 
=============================================================================
Installing:
 rpm-build               x86_64     4.4.2-32         core              559 k
Installing for dependencies:
 elfutils                x86_64     0.125-1.fc6      updates           154 k
 elfutils-libs           x86_64     0.125-1.fc6      updates           100 k

Transaction Summary
=============================================================================
Install      3 Package(s)         
Update       0 Package(s)         
Remove       0 Package(s)         

Total download size: 814 k
Is this ok [y/N]: y
Downloading Packages:
(1/3): elfutils-0.125-1.f 100% |=========================| 154 kB    00:00     
(2/3): rpm-build-4.4.2-32 100% |=========================| 304 kB    00:30     
http://srl.cs.jhu.edu/YUM/fedora/core/6/x86_64/os/Fedora/RPMS/rpm-build-4.4.2-32.x86_64.rpm: [Errno 4] Socket Error: timed out
Trying other mirror.
(2/3): rpm-build-4.4.2-32 100% |=========================| 559 kB    00:00     
(3/3): elfutils-libs-0.12 100% |=========================| 100 kB    00:00     
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing: elfutils-libs                ######################### [1/3] 
  Installing: elfutils                     ######################### [2/3] 
  Installing: rpm-build                    ######################### [3/3] 

Installed: rpm-build.x86_64 0:4.4.2-32
Dependency Installed: elfutils.x86_64 0:0.125-1.fc6 elfutils-libs.x86_64 0:0.125-1.fc6
Complete!
[root@localhost ~]#
 
Old 02-09-2007, 07:48 PM   #62
adamlivesley
LQ Newbie
 
Registered: Feb 2007
Posts: 1

Rep: Reputation: 0
i've got the same problems except with the ATI Radeon X1600 256mb, i cant get hardware acceleration to work at all, i've tried using the livna rpm's but no luck. Also tried compiling the rpm's for Fedora Core 6, the rpm's are made and get installed correctly. But still no hardware acceleration.

Is there away around this apart from taking back the video card (its built in my laptop .. cant do that)?

Thanks in advance!
 
Old 02-10-2007, 12:57 AM   #63
markelo
Member
 
Registered: Mar 2004
Distribution: Red hat 9 -> 64bit fedora
Posts: 190

Rep: Reputation: 30
adamlivesley

Because composite extensions doesn't work with ATI propriety drivers it has to be disable. Put following to /etc/X11/xorg.conf file. This also disables AIGLX so those fancy desktop effects aren't available anymore.

Code:
Section "Extensions"
	Option	    "Composite" "False"
EndSection
Then there is shared memory options for laptops. Those are found in BIOS of your system and I don't know exact name to those options. Anyway those option deal with main memory sharing with graphics card.

Following might help to solve shared memory problem. If GART values are zero then surely AGPGART doesn't work and that causes accelerated 3D not working.

Code:
dmesg | grep -i fglrx
fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
[fglrx] Maximum main memory to use for locked dma buffers: 917 MBytes.
[fglrx] module loaded - fglrx 8.33.6 [Jan  8 2007] on minor 0
[fglrx] PCIe has already been initialized. Reinitializing ...
[fglrx] total      GART = 130023424
[fglrx] free       GART = 114032640
[fglrx] max single GART = 114032640
[fglrx] total      LFB  = 268304384
[fglrx] free       LFB  = 250474496
[fglrx] max single LFB  = 250474496
[fglrx] total      Inv  = 0
[fglrx] free       Inv  = 0
[fglrx] max single Inv  = 0
[fglrx] total      TIM  = 0
 
Old 02-11-2007, 06:30 PM   #64
dbarrick
LQ Newbie
 
Registered: Feb 2007
Distribution: FC6
Posts: 18

Rep: Reputation: 0
Here is a list of items I've put together to install the ati driver for the X1600.
This is for FC6 64bit
All commands below are ran under root: Logon as root or when you logon change to su -
Code:
1)create etc/share/ati
2)download driver
3)yum install kernel-headers
4)... kernel-devel
5)... qt-devel
6)... *mesa*
7)... Xorg*
8)... libs*
9)... libg*
10)... fontc*
11)... expat*
12)... freet*
13)... zlib*
14)... libX11.devel
15)rm -f /usr/lib64/qt-3.3/lib64
16)ln -s /usr/lib64/qt-3.3/lib/ /usr/lib64/qt-3.3/lib64
17)ls -al /usr/lib64/qt-3.3/lib64/
total 20448
drwxr-xr-x  2 root root     4096 Feb 11 15:53 .
drwxr-xr-x 11 root root     4096 Feb 11 19:45 ..
-rw-r--r--  1 root root 10422178 Oct 23 15:48 libdesignercore.a
-rw-r--r--  1 root root     1040 Oct 23 15:47 libdesignercore.prl
-rw-r--r--  1 root root   665324 Oct 23 15:48 libeditor.a
-rw-r--r--  1 root root      947 Oct 23 15:47 libeditor.prl
-rw-r--r--  1 root root    54954 Oct 23 15:48 libqassistantclient.a
-rw-r--r--  1 root root      958 Oct 23 15:47 libqassistantclient.prl
-rw-r--r--  1 root root      938 Oct 23 15:47 libqt-mt.prl
lrwxrwxrwx  1 root root       17 Feb 11 15:53 libqt-mt.so -> libqt-mt.so.3.3.7
lrwxrwxrwx  1 root root       17 Feb 11 15:53 libqt-mt.so.3 -> libqt-mt.so.3.3.7
lrwxrwxrwx  1 root root       17 Feb 11 15:53 libqt-mt.so.3.3 -> libqt-mt.so.3.3.7
-rwxr-xr-x  1 root root  9371008 Oct 23 15:48 libqt-mt.so.3.3.7
-rw-r--r--  1 root root      844 Oct 23 15:47 libqui.prl
lrwxrwxrwx  1 root root       15 Feb 11 15:53 libqui.so -> libqui.so.1.0.0
lrwxrwxrwx  1 root root       15 Feb 11 15:53 libqui.so.1 -> libqui.so.1.0.0
lrwxrwxrwx  1 root root       15 Feb 11 15:53 libqui.so.1.0 -> libqui.so.1.0.0
-rwxr-xr-x  1 root root   269528 Oct 23 15:48 libqui.so.1.0.0
[root@localhost ~]# 

18)... rpm_build   
19)Now go to where you saved the ati driver and:
[root@localhost ati]# sh ./ati-driver-installer-8.33.6-x86.x86_64.run --buildpkg Fedora/FC6
Creating directory fglrx-install
Verifying archive integrity... All good.
Uncompressing ATI Proprietary Linux Driver-8.33.6...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
==================================================
 ATI Technologies Linux Driver Installer/Packager
==================================================
Generating package: Fedora/FC6
Package /usr/share/ati/ATI-fglrx-8.33.6-1.fc6.x86_64.rpm has been successfully generated
Package /usr/share/ati/ATI-fglrx-IA32-libs-8.33.6-1.fc6.x86_64.rpm has been successfully generated
Package /usr/share/ati/ATI-fglrx-control-panel-8.33.6-1.fc6.x86_64.rpm has been successfully generated
Package /usr/share/ati/ATI-fglrx-devel-8.33.6-1.fc6.x86_64.rpm has been successfully generated
Package /usr/share/ati/kernel-module-ATI-fglrx-2.6.18-1.2798.fc6-8.33.6-1.fc6.x86_64.rpm has been successfully generated
Removing temporary directory: fglrx-install

Real question is what do I do now?
Thanks
Dion

Last edited by dbarrick; 02-12-2007 at 07:36 AM. Reason: add more rpm-build information
 
Old 02-11-2007, 07:40 PM   #65
dbarrick
LQ Newbie
 
Registered: Feb 2007
Distribution: FC6
Posts: 18

Rep: Reputation: 0
I didn't know what to do with the proprietery driver so instead I did the following:
rpm -ivh http://rpm.livna.org/livna-release-6.rpm
yum install kmod-fglrx

Now, I'm trying to get one desktop spanning both screens. Is there something obvious in the xorg.conf file? Currently I see the same thing on both screens.

xorg.conf file attached
Code:
#Xorg configuration created by pyxf86config

Section "ServerLayout"
	Identifier     "Default Layout"
	Screen      1  "Screen0" Leftof "Screen1"
	Screen      0  "Screen1" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver	    "mouse"
	Option	    "Protocol" "IMPS/2"
	Option      "Device " "/dev/input/mice"
	Option      "ZAxisMapping" "4 5 6 7"
	Option      "Emulate3Buttons" "True"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "Monitor"
	Identifier  "Monitor0"
	VendorName  "ViewSonic"
	ModelName   "VA902b"
	DisplaySize 380 300
	HorizSync   30.0 - 82.0
	VertRefresh 50.0 - 85.0
	Option "tmds"
EndSection

Section "Monitor"
        Identifier  "Monitor1"
        VendorName  "ViewSonic"
        ModelName   "VA902b"
        DisplaySize 380 300
        HorizSync   30.0 - 82.0
        VertRefresh 50.0 - 85.0
        Option "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "fglrx"
	BusID	    "PCI:3:0:0"
EndSection

Section "Device"
        Identifier  "Videocard1"
        Driver      "fglrx"
        BusID       "PCI:3:0:0"
	Screen 1
EndSection


Section "Screen"
	Identifier "Screen0"
	Monitor	   "Monitor0"
	Device     "Videocard0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		modes "1280x1024" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "Screen"
        Identifier "Screen1"
	Monitor    "Monitor1"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 1
                Depth     24
		modes "1280x1024" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "DRI"
	Group 0
	Mode 0666
EndSection

Section "Extensions"
	Option "Composite" "False"
EndSection

Last edited by dbarrick; 02-12-2007 at 07:42 AM.
 
Old 02-12-2007, 12:51 AM   #66
markelo
Member
 
Registered: Mar 2004
Distribution: Red hat 9 -> 64bit fedora
Posts: 190

Rep: Reputation: 30
dbarrick...

Code:
aticonfig --desktop-setup=horizontal
But just run aticonfig and it puts out all the options that it can set. I have never used dual monitor setup and many users complain that it doesn't work right or there might be some monitor options which also need specific settings. But you try yourself and if things doesn't work just boot with init mode 3 and edit xorg.conf file to get things working again.


To install rpm files which that ati-driver-installer creates you use rpm command. like
Code:
rpm -ihv --force kernel-module-ATI*.rpm
you might have to put --nodeps option also in some cases but as far as I remember it it wasn't needed anymore. Only if you get expat complains then --nodeps is needed.
 
Old 02-13-2007, 12:34 AM   #67
dbarrick
LQ Newbie
 
Registered: Feb 2007
Distribution: FC6
Posts: 18

Rep: Reputation: 0
Thanks Markelo. What do I do now?

[HTML]
[root@localhost ati]# rpm -ihv --force kernel-module-ATI*.rpm
Preparing... ########################################### [100%]
1:kernel-module-ATI-fglrx########################################### [100%]

[root@localhost ati]# rpm -ihv --force ATI-fglrx-8.33.6-1.fc6.x86_64.rpm
error: Failed dependencies:
libstdc++.so.5()(64bit) is needed by ATI-fglrx-8.33.6-1.fc6.x86_64
libstdc++.so.5(CXXABI_1.2)(64bit) is needed by ATI-fglrx-8.33.6-1.fc6.x86_64
libstdc++.so.5(GLIBCPP_3.2)(64bit) is needed by ATI-fglrx-8.33.6-1.fc6.x86_64

[root@localhost ati]# yum install libs*
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Nothing to do
[root@localhost ati]#
[/HTML]

Thanks for the help
Dion
 
Old 02-13-2007, 03:23 AM   #68
markelo
Member
 
Registered: Mar 2004
Distribution: Red hat 9 -> 64bit fedora
Posts: 190

Rep: Reputation: 30
Quote:
Originally Posted by dbarrick
Thanks Markelo. What do I do now?

[HTML]
[root@localhost ati]# rpm -ihv --force kernel-module-ATI*.rpm
Preparing... ########################################### [100%]
1:kernel-module-ATI-fglrx########################################### [100%]

[root@localhost ati]# rpm -ihv --force ATI-fglrx-8.33.6-1.fc6.x86_64.rpm
error: Failed dependencies:
libstdc++.so.5()(64bit) is needed by ATI-fglrx-8.33.6-1.fc6.x86_64
libstdc++.so.5(CXXABI_1.2)(64bit) is needed by ATI-fglrx-8.33.6-1.fc6.x86_64
libstdc++.so.5(GLIBCPP_3.2)(64bit) is needed by ATI-fglrx-8.33.6-1.fc6.x86_64

[root@localhost ati]# yum install libs*
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Nothing to do
[root@localhost ati]#
[/HTML]

Thanks for the help
Dion
ONly possible thing left is compat-libstdc++

But didn't you already installed kmod-fglrx driver? If so you don't have to install driver package from ATI site and it is even better not to because it would conflict with kmod-fglrx driver. If you want to install those rpms build by ati-installer then remove kmod-fglrx driver first.
 
Old 02-13-2007, 06:18 AM   #69
dbarrick
LQ Newbie
 
Registered: Feb 2007
Distribution: FC6
Posts: 18

Rep: Reputation: 0
I'm doing a clean install.

What is better to use? ATI or Kmod? I would like to put Beryl on FC6.

Last edited by dbarrick; 02-13-2007 at 07:39 AM.
 
Old 02-13-2007, 03:42 PM   #70
markelo
Member
 
Registered: Mar 2004
Distribution: Red hat 9 -> 64bit fedora
Posts: 190

Rep: Reputation: 30
Quote:
Originally Posted by dbarrick
I'm doing a clean install.

What is better to use? ATI or Kmod? I would like to put Beryl on FC6.
As far as I know you have to get XGL working if you are going to use Beryl. ATI drivers doesn't work with AIGLX.

Personally I use ATI installer. Reason for this is that thus I can get newer driver faster than waiting it to show up in kmod-modules. By the way if you install kmod-driver make sure it matches your kernel version.

For Beryl you need help from person who knows much more than I. I just use easy ( troublefree ) things.
 
Old 02-13-2007, 06:48 PM   #71
dbarrick
LQ Newbie
 
Registered: Feb 2007
Distribution: FC6
Posts: 18

Rep: Reputation: 0
Sweet, Thanks for your help. I have everything installed and running the way I would like using a dual monitor setup.

However, when I run glxinfo it says I have the mesa driver. Any idea why?
when I run fglrxinfo:
Xlib: extension "XFree86-DRI" missing on display ":0.0".
display: :0.0 screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.5.1)

Thanks,
again


After some monkeying around, I finally have the direct rendering and the following OpenGL
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: Radeon X1600 Series Generic
OpenGL version string: 2.0.6286 (8.33.6)
[HTML]
[root@localhost ~]# fgl_glxgears
Using GLX_SGIX_pbuffer
4356 frames in 5.0 seconds = 871.200 FPS
5068 frames in 5.0 seconds = 1013.600 FPS
5331 frames in 5.0 seconds = 1066.200 FPS
5342 frames in 5.0 seconds = 1068.400 FPS
5379 frames in 5.0 seconds = 1075.800 FPS
5333 frames in 5.0 seconds = 1066.600 FPS
5379 frames in 5.0 seconds = 1075.800 FPS
5382 frames in 5.0 seconds = 1076.400 FPS
5383 frames in 5.0 seconds = 1076.600 FPS
5386 frames in 5.0 seconds = 1077.200 FPS
5386 frames in 5.0 seconds = 1077.200 FPS
5385 frames in 5.0 seconds = 1077.000 FPS
5382 frames in 5.0 seconds = 1076.400 FPS
5380 frames in 5.0 seconds = 1076.000 FPS
5380 frames in 5.0 seconds = 1076.000 FPS
5381 frames in 5.0 seconds = 1076.200 FPS
5339 frames in 5.0 seconds = 1067.800 FPS
5340 frames in 5.0 seconds = 1068.000 FPS
5317 frames in 5.0 seconds = 1063.400 FPS
5373 frames in 5.0 seconds = 1074.600 FPS
5381 frames in 5.0 seconds = 1076.200 FPS
5387 frames in 5.0 seconds = 1077.400 FPS
5392 frames in 5.0 seconds = 1078.400 FPS
5345 frames in 5.0 seconds = 1069.000 FPS[/HTML]

Last edited by dbarrick; 02-13-2007 at 09:53 PM.
 
Old 02-16-2007, 10:48 PM   #72
dreck
Member
 
Registered: Oct 2003
Location: US
Distribution: Fedora Core 6 (x86_64)
Posts: 61

Original Poster
Rep: Reputation: 15
I am sorry I haven't had any free time. I am not sure where we left off? I see in my last post I installed rpm-build:
Code:
[me@localhost ~]$ su -
Password: 
[root@localhost ~]# yum install rpm-build
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
core                      100% |=========================| 1.1 kB    00:00     
updates                   100% |=========================| 1.2 kB    00:00     
extras                    100% |=========================| 1.1 kB    00:00     
Reading repository metadata in from local files
primary.xml.gz            100% |=========================| 452 kB    00:03     
updates   : ################################################## 1428/1428
primary.xml.gz            100% |=========================| 1.8 MB    00:14     
extras    : ################################################## 5741/5741
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for rpm-build to pack into transaction set.
rpm-build-4.4.2-32.x86_64 100% |=========================|  17 kB    00:00     
---> Package rpm-build.x86_64 0:4.4.2-32 set to be updated
--> Running transaction check
--> Processing Dependency: elfutils for package: rpm-build
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for elfutils to pack into transaction set.
elfutils-0.125-1.fc6.x86_ 100% |=========================|  15 kB    00:00     
---> Package elfutils.x86_64 0:0.125-1.fc6 set to be updated
--> Running transaction check
--> Processing Dependency: elfutils-libs = 0.125-1.fc6 for package: elfutils
--> Processing Dependency: libdw.so.1(ELFUTILS_0.122)(64bit) for package: elfutils
--> Processing Dependency: libdw.so.1()(64bit) for package: elfutils
--> Restarting Dependency Resolution with new changes.
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for elfutils-libs to pack into transaction set.
elfutils-libs-0.125-1.fc6 100% |=========================|  17 kB    00:00     
---> Package elfutils-libs.x86_64 0:0.125-1.fc6 set to be updated
--> Running transaction check

Dependencies Resolved

=============================================================================
 Package                 Arch       Version          Repository        Size 
=============================================================================
Installing:
 rpm-build               x86_64     4.4.2-32         core              559 k
Installing for dependencies:
 elfutils                x86_64     0.125-1.fc6      updates           154 k
 elfutils-libs           x86_64     0.125-1.fc6      updates           100 k

Transaction Summary
=============================================================================
Install      3 Package(s)         
Update       0 Package(s)         
Remove       0 Package(s)         

Total download size: 814 k
Is this ok [y/N]: y
Downloading Packages:
(1/3): elfutils-0.125-1.f 100% |=========================| 154 kB    00:00     
(2/3): rpm-build-4.4.2-32 100% |=========================| 304 kB    00:30     
http://srl.cs.jhu.edu/YUM/fedora/core/6/x86_64/os/Fedora/RPMS/rpm-build-4.4.2-32.x86_64.rpm: [Errno 4] Socket Error: timed out
Trying other mirror.
(2/3): rpm-build-4.4.2-32 100% |=========================| 559 kB    00:00     
(3/3): elfutils-libs-0.12 100% |=========================| 100 kB    00:00     
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing: elfutils-libs                ######################### [1/3] 
  Installing: elfutils                     ######################### [2/3] 
  Installing: rpm-build                    ######################### [3/3] 

Installed: rpm-build.x86_64 0:4.4.2-32
Dependency Installed: elfutils.x86_64 0:0.125-1.fc6 elfutils-libs.x86_64 0:0.125-1.fc6
Complete!
[root@localhost ~]#
Do I need to run /home/me/Desktop/ati-driver-installer-8.33.6-x86.x86_64.run --buildpkg Fedora/FC6 again?

Thanks, dreck
 
Old 02-17-2007, 11:42 AM   #73
markelo
Member
 
Registered: Mar 2004
Distribution: Red hat 9 -> 64bit fedora
Posts: 190

Rep: Reputation: 30
Quote:
Originally Posted by dreck
Do I need to run /home/me/Desktop/ati-driver-installer-8.33.6-x86.x86_64.run --buildpkg Fedora/FC6 again?

Thanks, dreck
Yes. If ati-driver-installer doesn't build rpm packages find out why, fix the problem and then run installer again.

I have to go vacation but I will help you if you get rpms created by ati installer.
 
Old 02-17-2007, 05:13 PM   #74
dreck
Member
 
Registered: Oct 2003
Location: US
Distribution: Fedora Core 6 (x86_64)
Posts: 61

Original Poster
Rep: Reputation: 15
Will do. Thanks for the help, & I hope you have a great vacation.
 
Old 02-19-2007, 01:50 AM   #75
wangrui2885
LQ Newbie
 
Registered: Feb 2007
Distribution: FC6 32bit...(but CPU's 64 bit)
Posts: 8

Rep: Reputation: 0
how should i take this problem ??

Code:
Code:
# ./ati-driver-installer-8.33.6-x86.x86_64.run --buildpkg Fedora/FC6
Creating directory fglrx-install
Verifying archive integrity... All good.
Uncompressing ATI Proprietary Linux Driver-8.33.6...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
==================================================
 ATI Technologies Linux Driver Installer/Packager 
==================================================
Generating package: Fedora/FC6
install: cannot stat `fireglcontrolpanel': No such file or directory
Package build failed!
Package build utility output:
Building target platforms: i386
Building for target i386
Executing(%prep): /bin/sh -e /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/rpm-tmp.52749
+ umask 022
+ cd /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD
+ LANG=C
+ export LANG
+ unset DISPLAY
+ cd /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD
+ cd ATI-fglrx-8.33.6
++ /usr/bin/id -u
+ '[' 0 = 0 ']'
+ /bin/chown -Rhf root .
++ /usr/bin/id -u
+ '[' 0 = 0 ']'
+ /bin/chgrp -Rhf root .
+ /bin/chmod -Rf a+rX,u+w,g-w,o-w .
+ exit 0
Executing(%build): /bin/sh -e /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/rpm-tmp.52749
+ umask 022
+ cd /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD
+ cd ATI-fglrx-8.33.6
+ LANG=C
+ export LANG
+ unset DISPLAY
+ exit 0
Executing(%install): /bin/sh -e /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/rpm-tmp.52749
+ umask 022
+ cd /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD
+ cd ATI-fglrx-8.33.6
+ LANG=C
+ export LANG
+ unset DISPLAY
+ rm -rf /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root
+ '[' -d /etc/ld.so.conf.d ']'
+ mkdir -p /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/etc/ld.so.conf.d
+ pushd /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/etc/ld.so.conf.d
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/etc/ld.so.conf.d /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6
+ cat
+ popd
/tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6
+ mkdir -p /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/share/applications
+ pushd /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/share/applications
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/share/applications /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6
+ cat
+ popd
/tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6
+ cp -pR /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6/etc /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6/lib /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6/usr /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root
+ find /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/share/doc -type f -perm 0555 -exec chmod 0644 '{}' ';'
+ find /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root -type f -perm 0555 -exec chmod 0755 '{}' ';'
+ export AS_USER=y
+ AS_USER=y
+ pushd /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6
+ bash make.sh verbose
ATI module generator V 2.0
==========================
initializing...
cat: /lib/modules/2.6.19-1.2911.fc6/build/include/linux/version-*.h: No such file or directory
OsRelease=2.6.19-1.2911.fc6
major=2
minor=6
patch=19
extra=-1.2911.fc6
SMP=1
smp=-SMP
iii=
AGP=1
CC=gcc
cc_version=
cleaning...
patching 'highmem.h'...
assuming new VMA API since we do have kernel 2.6.x...
 Assuming default VMAP API
 Assuming default munmap API
doing Makefile based build for kernel 2.6.x and higher
make -C /lib/modules/2.6.19-1.2911.fc6/build SUBDIRS=/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x modules
make[1]: Entering directory `/usr/src/kernels/2.6.19-1.2911.fc6-i686'
  CC [M]  /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.o
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c:465: warning: initialization from incompatible pointer type
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c: In function 'firegl_stub_open':
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c:588: warning: assignment discards qualifiers from pointer target type
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c: In function '__ke_request_irq':
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c:2577: warning: passing argument 2 of 'request_irq' from incompatible pointer type
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c: In function '__ke_smp_call_function':
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c:4017: warning: passing argument 1 of 'smp_call_function' from incompatible pointer type
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c: In function 'KAS_ExecuteAtLevel':
/tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/firegl_public.c:4442: warning: 'flags' may be used uninitialized in this function
  LD [M]  /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/fglrx.o
  Building modules, stage 2.
  MODPOST 1 modules
WARNING: could not find /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/.libfglrx_ip.a.GCC4.cmd for /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/libfglrx_ip.a.GCC4
  CC      /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/fglrx.mod.o
  LD [M]  /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx/build_mod/2.6.x/fglrx.ko
make[1]: Leaving directory `/usr/src/kernels/2.6.19-1.2911.fc6-i686'
build succeeded with return value 0
duplicating results into driver repository...
done.
==============================
You must change your working directory to /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx
and then call ./make_install.sh in order to install the built module.
==============================
+ mkdir -p /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/2.6.19-1.2911.fc6/extra
+ install -D -m 0644 fglrx.ko /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/2.6.19-1.2911.fc6/extra/fglrx/fglrx.ko
+ rm -rf /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/lib/modules/fglrx
+ popd
/tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6
+ /usr/lib/rpm/find-debuginfo.sh /tmp/ATI-fglrx-8.33.6-1-6066-root/BUILD/ATI-fglrx-8.33.6
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/bin/fglrxinfo
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/bin/aticonfig
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/bin/fgl_glxgears
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/bin/fglrx_xgamma
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/dri/fglrx_dri.so
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/dri/atiogl_a_dri.so
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/fglrx/libfglrx_gamma.so.1.0
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/fglrx/libGL.so.1.2
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/fglrx/libfglrx_dm.so.1.0
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/fglrx/libfglrx_pp.so.1.0
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/fglrx/libfglrx_tvout.so.1.0
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/xorg/modules/linux/libfglrxdrm.so
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/lib/xorg/modules/drivers/fglrx_drv.so
extracting debug info from /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/sbin/atieventsd
0 blocks
+ /usr/lib/rpm/redhat/brp-compress
+ /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip
+ /usr/lib/rpm/redhat/brp-strip-comment-note /usr/bin/strip /usr/bin/objdump
+ /usr/lib/rpm/brp-python-bytecompile
+ /usr/lib/rpm/redhat/brp-java-repack-jars
Processing files: ATI-fglrx-8.33.6-1.fc6
Provides: atiogl_a_dri.so config(ATI-fglrx) = 8.33.6-1.fc6 fglrx_dri.so fglrx_drv.so libGL.so.1 libfglrx_dm.so.1.0 libfglrx_gamma.so.1 libfglrx_pp.so.1.0 libfglrx_tvout.so.1 libfglrxdrm.so
Requires(interp): /bin/sh /bin/sh /bin/sh
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires(post): /bin/sh /sbin/chkconfig /sbin/ldconfig
Requires(preun): /bin/sh /sbin/chkconfig /sbin/service
Requires(postun): /bin/sh /sbin/ldconfig /sbin/service
Requires: /bin/bash /bin/sh config(ATI-fglrx) = 8.33.6-1.fc6 kernel-module-ATI-fglrx-2.6.19-1.2911.fc6 = 8.33.6-1.fc6 libGL.so.1 libX11.so.6 libXext.so.6 libXrandr.so.2 libXrender.so.1 libc.so.6 libc.so.6(GLIBC_2.0) libc.so.6(GLIBC_2.1) libc.so.6(GLIBC_2.1.3) libc.so.6(GLIBC_2.2.3) libdl.so.2 libdl.so.2(GLIBC_2.0) libdl.so.2(GLIBC_2.1) libfglrx_dm.so.1.0 libfglrx_gamma.so.1 libfglrx_pp.so.1.0 libfglrx_tvout.so.1 libgcc_s.so.1 libgcc_s.so.1(GCC_3.0) libgcc_s.so.1(GLIBC_2.0) libm.so.6 libm.so.6(GLIBC_2.0) libm.so.6(GLIBC_2.1) libpthread.so.0 libpthread.so.0(GLIBC_2.0) librt.so.1 librt.so.1(GLIBC_2.2) libstdc++.so.5 libstdc++.so.5(CXXABI_1.2) libstdc++.so.5(GLIBCPP_3.2) system-config-display
Conflicts: fglrx fglrx-glc22 fglrx_4_3_0 fglrx_6_8_0 kernel-module-fglrx ati-fglrx ati-fglrx-devel kmod-fglrx xorg-x11-drv-fglrx xorg-x11-drv-fglrx-devel nvidia-glx nvidia-glx-legacy xorg-x11-drv-nvidia xorg-x11-drv-nvidia-legacy
Processing files: ATI-fglrx-control-panel-8.33.6-1.fc6
error: File not found: /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/bin/fireglcontrolpanel
Processing files: ATI-fglrx-devel-8.33.6-1.fc6
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires: /usr/include/GL ATI-fglrx = 8.33.6-1.fc6 libGL.so.1
Processing files: kernel-module-ATI-fglrx-2.6.19-1.2911.fc6-8.33.6-1.fc6
Requires(interp): /bin/sh /bin/sh
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
Requires(post): /bin/sh
Requires(postun): /bin/sh
Processing files: ATI-fglrx-debuginfo-8.33.6-1.fc6
Provides: atiogl_a_dri.so.debug fglrx_dri.so.debug fglrx_drv.so.debug libGL.so.1.2.debug libfglrx_dm.so.1.0.debug libfglrx_gamma.so.1.0.debug libfglrx_pp.so.1.0.debug libfglrx_tvout.so.1.0.debug libfglrxdrm.so.debug
Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1


RPM build errors:
    File not found: /tmp/ATI-fglrx-8.33.6-1-6066-root/tmp/ATI-fglrx-8.33.6-1.fc6-root-root/usr/bin/fireglcontrolpanel
Removing temporary directory: fglrx-install

this problem troubled me several days...i was so depressed that i have to return to Win xp...

Last edited by wangrui2885; 02-19-2007 at 01:58 AM.
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
ATI-Driver problems w/X1600 Pro PCIE Varean Linux - Hardware 15 05-24-2007 07:21 AM
Can seem to find driver for ATI Radeon X1600 for Kubuntu seanfedora Linux - Hardware 5 03-05-2007 08:18 AM
Fedora 6 & ATI X1600 PRO RobNyc Fedora 6 11-26-2006 01:05 PM
Ati driver problems with x1600 x server & everything dragon1te Debian 2 10-07-2006 07:56 AM
Ati x1600 Support Doolspin Linux - Laptop and Netbook 4 07-01-2006 06:37 PM

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

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