Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 1st April 2008, 06:59 AM
lesstwo Offline
Registered User
 
Join Date: Apr 2008
Posts: 22
Question Fedora 8 64bit and sound+linking error...

Hi all,

First, I am new to Linux altogether. I am installing it on a spare hard drive on my desktop, tri-booting Vista, XP, and Fedora 8. Unfortunately, since I decided to try Linux after I built the computer, I made some poor hardware choices from a Linux standpoint: for example, an X-Fi Fatal1ty soundcard.

On first boot, there is no sound and the GNOME volume applet has an X. Trying to test sounds under System>Preferences>Hardware>Sound gives the following error:
Code:
audiotestsrc wave=sine freq=512 ! audioconvert ! audioresample ! gconfaudiosink: Internal GStreamer error: state change failed.  
Please file a bug at http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer.
At first I tried the closed Creative drivers, but that was an utter failure so I turned to OSS v4. However, when downloading the .rpm from the website, it loads and installs by itself until the bar is complete, then hangs indefinitely. When rebooting the system, I notice that OSS is an option under by System>Preferences>Hardware>Sound settings, but selecting it does not enable sound. Typing osstest into the terminal looks like this:

Code:
/dev/mixer: No such file or directory
The device file is missing from /dev.
Perhaps you have not installed and started Open Sound System yet
I also read somewhere to try "soundon" but the result is this:
Code:
...
/lib/modules/2.6.24.3-50.fc8/kernel/fs/squashfs/squashfs.ko is not a valid ELF object
Relinking OSS kernel modules for ""
This may take few moments - please stand by...

OSS build environment set up for REGPARM kernels

Building module osscore
ld: Relocatable linking with relocations from format elf32-i386 (osscore_mainline.o) to format elf64-x86-64 (/lib/modules/2.6.24.3-50.fc8/kernel/oss/osscore.ko) is not supported
Linking the osscore module failed
This is preceded by quite a few other things that are not "valid ELF objects." From reading the last few lines it seems to be a 64 vs 32 bit compatibility problem, but I am at a complete loss. I have no sound currently, and Fedora does not recognize my onboard sound at all (it only has SPDIF output anyway, so using it is not an option.)

I have gcc, kernel-devel, and kernel-headers all installed if that helps.

Finally, would it be smarter to just use 32-bit Fedora? I haven't even started working on getting the video card drivers to work yet, as I have spent the last few days troubleshooting this sound issue. I will post my system specs at the end of this. Please help me out. I am very competent in the Windows environment, but a complete newcomer to Linux. Please let me know if there are console commands you would like reported.

System specs:
MB: Asus Striker Extreme
CPU: Intel Core 2 Quad Extreme 3.0Ghz (QX6850)
RAM: 2GB (2x1GB) Corsair Dominator 800Mhz DDR2
Video: XFX GeForce 8800 Ultra XXX Edition
HDD: 2x WD Raptor X, 1x Seagate Barracuda (where Fedora is installed)
Sound: Creative X-Fi Fatal1ty
Reply With Quote
  #2  
Old 1st April 2008, 07:51 AM
Thetargos's Avatar
Thetargos Offline
Registered User
 
Join Date: May 2004
Location: Mexico City, Mexico
Age: 35
Posts: 4,419
Being your sound card an X-Fi, there is not much you can do other than building an installing OSS from source. And try again. Other than that... There is not much you can do, being as not even your onboard is usable.
__________________
If ain't broken, don't fix it! :eek:
If can be improved, go for it! :cool:

FedoraForum Community forums lurker.
Fedora user since RHL 5.2 :cool:

Systems: Laptop, Main System, Netbook.
Reply With Quote
  #3  
Old 1st April 2008, 02:39 PM
lesstwo Offline
Registered User
 
Join Date: Apr 2008
Posts: 22
Quote:
Originally Posted by Thetargos
Being your sound card an X-Fi, there is not much you can do other than building an installing OSS from source. And try again. Other than that... There is not much you can do, being as not even your onboard is usable.
How would I go about doing this, and is it reasonable for a new Linux user to accomplish? I have seen other people on different forums claiming success with an X-Fi card, OSS4, and Fedora 64 bit. Unfortunately, they have no solutions since the install just "worked" for them. Something is wrong on mine.

Keep in mind that I am not asking for a miracle; I am perfectly content with stereo playback. I do not need recording capabilities, 5.1, or any Creative Labs special processing hype. For now, I will do a fresh install of F8 64bit (I doubt this will do anything, since this WAS a fresh install to start with) and try again. Although, I'm not sure how this error:
Code:
Relocatable linking with relocations from format elf32-i386 (osscore_mainline.o) to format elf64-x86-64 (/lib/modules/2.6.24.3-50.fc8/kernel/oss/osscore.ko) is not supported
Linking the osscore module failed
has anything to do with my X-Fi card, since if you google just "Relocatable linking with relocations from format elf32-i386 o format elf64-x86-64 is not supported" you will find a lot of similar errors of 64 bit users using "make" on 32 bit source. I just don't know what I'm missing, be it a compatibility library or something else altogether.
Reply With Quote
  #4  
Old 1st April 2008, 05:28 PM
Thetargos's Avatar
Thetargos Offline
Registered User
 
Join Date: May 2004
Location: Mexico City, Mexico
Age: 35
Posts: 4,419
Please take a minute to analyse the error message...

Code:
Relocatable linking with relocations from format elf32-i386 (osscore_mainline.o) to format elf64-x86-64 (/lib/modules/2.6.24.3-50.fc8/kernel/oss/osscore.ko) is not supported
Linking the osscore module failed
It is indeed impossible to link a 32-bit driver binary (the mentioned object file) against a 64-bit kernel, not even possible to do in Windows. You will have to build from source OSS (IIRC there is a source package) and then install from there. As for the feasibility, well, it really depends on your reading skills, actually. All the necessary instructions on how to build the package should be within the source itself. You will have to be comfortable with the CLI to perform this task, though. Usually all that's involved is the "three steps to build" of ./configure && make && su -c make install, again a file called README or INSTALL in the package should tell you exactly what to do. You will have, however, to cover the necessary dependencies on your own, but basically installing the kernel-headers, the kernel-devel and the development tools should be all you need.
__________________
If ain't broken, don't fix it! :eek:
If can be improved, go for it! :cool:

FedoraForum Community forums lurker.
Fedora user since RHL 5.2 :cool:

Systems: Laptop, Main System, Netbook.
Reply With Quote
Reply

Tags
64bit, error, fedora, linking, sound

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
wine installation produces this error on Fedora 11 64bit hpark21 Installation and Live Media 3 9th October 2009 09:40 PM
New Fedora 10: 64bit installation - No sound GingersK Using Fedora 4 3rd March 2009 01:09 PM
VLC Error Check (Fedora 8, 64bit) yaxomoxay Using Fedora 1 5th April 2008 01:21 AM
Upgrading F7 64bit to F8 64bit errors out with strange error ajamison Installation and Live Media 3 30th December 2007 08:41 AM
Fedora 6 64bit, Gnome and Kde login error help please Lizard_king825 Using Fedora 2 24th November 2006 10:00 PM


Current GMT-time: 07:59 (Wednesday, 19-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat