Go Back   Champions of Regnum > English > Technical Support > Linux

Linux Technical issues under Linux platform

Reply
 
Thread Tools Display Modes
Old 11-08-2008, 01:06 PM   #1
haloboydeath
Apprentice
 
haloboydeath's Avatar
 
Join Date: Nov 2008
Location: USA
Posts: 63
haloboydeath is on a distinguished road
Default No sound

No sound =<

I'm running Ubuntu 8.10
haloboydeath no ha iniciado sesión   Reply With Quote
Old 11-08-2008, 02:37 PM   #2
Inkster
Count
 
Inkster's Avatar
 
Join Date: Jul 2007
Location: Arse firmly glued to Ra
Posts: 1,042
Inkster has a spectacular aura aboutInkster has a spectacular aura about
Default

what sound card are you using?
__________________
Follow me on facebook https://www.facebook.com/lomgom/
Inkster no ha iniciado sesión   Reply With Quote
Old 11-08-2008, 02:45 PM   #3
Znurre
Marquis
 
Join Date: Jan 2007
Location: RA
Posts: 1,897
Znurre will become famous soon enoughZnurre will become famous soon enough
Default

Install openal.
__________________
Winning a fight is not what makes you a good player, it's how you do it.
http://home.znur.re/screenshot%20201...2011_39_37.jpg
Znurre no ha iniciado sesión   Reply With Quote
Old 11-08-2008, 10:54 PM   #4
Mikan
Baron
 
Mikan's Avatar
 
Join Date: Jul 2007
Location: In Nekoko's lap ;)
Posts: 768
Mikan has a spectacular aura aboutMikan has a spectacular aura about
Default

Please don't use Ubuntu's OpenAL package if you want good sound. It is quite bad.

Open up a terminal, then type:
Code:
sudo su
And enter your password, and then:
Code:
apt-get remove libopenal0a
apt-get install build-essential libasound2-dev cmake wget tar bzip2
exit

wget http://kcat.strangesoft.net/openal-releases/openal-soft-1.5.304.tar.bz2
tar -jxvf openal-soft-1.5.304.tar.bz2 && cd openal-soft-1.5.304
cmake . && make && sudo make install
Also if you are on the vanilla GNOME version of Ubuntu, you likely won't be able to get sound in any configuration, because they use PulseAudio instead of ALSA now, in a permanent way.

I say permanent because they made GNOME depend on it, thus it cannot be removed.

You will need to wait until either OpenAL Soft or NGD officially supports PulseAudio.
(Although some people have had some luck with it's ESD emulation...)

Regards,
__________________
Hannah AmelieCatalina NevenaAlicia Godwyn
Alsius Horus ✝ No chance of victory, no chance of defeat ✝ Frozen Flame
Individually, we are one drop. Together, we are an ocean. An ocean of drama.

Last edited by Katiechan; 12-07-2008 at 12:48 PM.
Mikan no ha iniciado sesión   Reply With Quote
Old 11-09-2008, 07:16 AM   #5
haloboydeath
Apprentice
 
haloboydeath's Avatar
 
Join Date: Nov 2008
Location: USA
Posts: 63
haloboydeath is on a distinguished road
Smile

I'll try that out later tonight. I'm on my old machine right now.

Oh, and thank you for the help.
haloboydeath no ha iniciado sesión   Reply With Quote
Old 11-10-2008, 03:01 PM   #6
haloboydeath
Apprentice
 
haloboydeath's Avatar
 
Join Date: Nov 2008
Location: USA
Posts: 63
haloboydeath is on a distinguished road
Default

I got it to work. I just changed the sound setting's around.
haloboydeath no ha iniciado sesión   Reply With Quote
Old 11-11-2008, 06:40 PM   #7
hibikirei
Pledge
 
Join Date: Nov 2008
Posts: 1
hibikirei is on a distinguished road
Default

i dont have any sound i tried to enter the su command but it says that authentication fails and i have tried all the different configurations for both of the sound cards i have in the computer i am running ubuntu 8.10 with a c-media surrround card by A Open
hibikirei no ha iniciado sesión   Reply With Quote
Old 11-11-2008, 08:39 PM   #8
tharla
Pledge
 
tharla's Avatar
 
Join Date: May 2008
Posts: 11
tharla is on a distinguished road
Default Fixing on Debian

It's easy to fix it on Debian:

Add this line to your /etc/apt/sources.list:

deb %%% experimental main

where %%% is the normal URL for the debian mirror you use.

Then run as root: apt-get install libopenal1/experimental

Afterwards, remove or comment out the experimental line you added. This fix may also work on Ubuntu, or it may break it.
tharla no ha iniciado sesión   Reply With Quote
Old 11-11-2008, 09:41 PM   #9
Froste
Baron
 
Froste's Avatar
 
Join Date: Apr 2007
Location: Svea Rike
Posts: 814
Froste is on a distinguished road
Default

What's the difference between the openal in experimental compared to lenny?

I use the lenny one now (1:0.0.8-8) and the etch before that, and I've never had a problem with it, is the experimental version significantly newer?
__________________
Eagles may soar, but weasels don't get sucked into jet engines...
Froste no ha iniciado sesión   Reply With Quote
Old 11-11-2008, 10:41 PM   #10
Mikan
Baron
 
Mikan's Avatar
 
Join Date: Jul 2007
Location: In Nekoko's lap ;)
Posts: 768
Mikan has a spectacular aura aboutMikan has a spectacular aura about
Default

Quote:
Originally Posted by hibikirei
i dont have any sound i tried to enter the su command but it says that authentication fails and i have tried all the different configurations for both of the sound cards i have in the computer i am running ubuntu 8.10 with a c-media surrround card by A Open
You can also try sudo su or sudo sh to enter a root shell with your own password.

Quote:
Originally Posted by Froste
What's the difference between the openal in experimental compared to lenny?

I use the lenny one now (1:0.0.8-8) and the etch before that, and I've never had a problem with it, is the experimental version significantly newer?
The OpenAL libraries provided by distributions (libopenal, as it is so called) isn't an actual library, it's more like an example. That's why Creative calls it the SI ("Sample Implementation"). This means that how good it works varies greatly depending on your hardware and system configuration.

The new experimental package is none other than OpenAL Soft:
Quote:
OpenAL, the Open Audio Library, is a joint effort to create an open, vendor-neutral, cross-platform API for interactive, primarily spatialized audio. OpenAL's primary audience are application developers and desktop users that rely on portable standards like OpenGL, for games and other multimedia applications.

This library is meant as a compatible update/replacement to the OpenAL Sample Implementation (the SI). The SI has been unmaintained for quite a while, and would require a lot of work to clean up. This is a fork the old Windows version to attempt an accelerated ALSA version of an OpenAL implementation.

OpenAL Soft supports mono, stereo, 4-channel, 5.1, 6.1, and 7.1 output, as opposed to the SI's 4-channel max (though it did have some provisions for 6 channel, this was not 5.1, and was seemingly a "late" addition). OpenAL Soft does not support the Vorbis and MP3 extensions, however those were considered deprecated even in the SI. It does, though, support some of the newer extensions like AL_EXT_FLOAT32 and AL_EXT_MCFORMATS for multi-channel and floating-point formats, as well as ALC_EXT_EFX for environmental audio effects, and others.
OpenAL Soft is a true reference implementation that supports the OpenAL 3D sound API "to a T". Furthermore, because it uses software mixing, it guarantees that all users will be hearing the exact same thing, regardless of how poor or awesome their hardware is.

Regards,
__________________
Hannah AmelieCatalina NevenaAlicia Godwyn
Alsius Horus ✝ No chance of victory, no chance of defeat ✝ Frozen Flame
Individually, we are one drop. Together, we are an ocean. An ocean of drama.

Last edited by Katiechan; 11-11-2008 at 10:53 PM.
Mikan no ha iniciado sesión   Reply With Quote
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 On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:07 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
NGD Studios 2002-2024 © All rights reserved