Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Creative X-fi [Solved] still need lirc help though
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
ericxx2005
Apprentice
Apprentice


Joined: 05 Apr 2005
Posts: 231
Location: 10 square miles surrounded by reality

PostPosted: Thu Oct 06, 2005 7:49 pm    Post subject: Creative X-fi [Solved] still need lirc help though Reply with quote

My A7n8x-deluxe just fried, and now I have a shuttle motherboard, which doesn't have coaxial digital out for audio. I figured it would be a good time to buy a decent sound card. I'm about 20 minutes from buying the Creative X-fi, but I'm not sure where the compatibility stands as of now. I'm okay with waiting for a lot of the features to be implemented later on, but I want at least audio to work now, and hopefully digital out. Anyone have any experience with one yet, or know if it even works atm?

Last edited by ericxx2005 on Fri Oct 14, 2005 11:47 pm; edited 1 time in total
Back to top
View user's profile Send private message
Cinder6
l33t
l33t


Joined: 05 Aug 2004
Posts: 767
Location: California

PostPosted: Fri Oct 07, 2005 2:09 am    Post subject: Reply with quote

Unfortunately, it would appear there is no support yet, but should be available soon.
_________________
Knowledge is power.
Power corrupts.
Study hard.
Be evil.

Ugly Overload
Back to top
View user's profile Send private message
ericxx2005
Apprentice
Apprentice


Joined: 05 Apr 2005
Posts: 231
Location: 10 square miles surrounded by reality

PostPosted: Fri Oct 14, 2005 4:57 pm    Post subject: Reply with quote

Damn. Any other recommendations? I see audigy/audigy2 recommended a lot. What about the audigy4 series? It only needs to be for games/music, but I prefer the music quality to be top-notch. I might hold off for a couple of more weeks before buying it though.
Back to top
View user's profile Send private message
ericxx2005
Apprentice
Apprentice


Joined: 05 Apr 2005
Posts: 231
Location: 10 square miles surrounded by reality

PostPosted: Fri Oct 14, 2005 8:58 pm    Post subject: Reply with quote

I got impatient and bought the audigy 2 zs platinum (it was on sale for $90 anyways). Sounds a lot better then the via82xx chipset. I'm trying to get lirc working for the remote though. Thanks for the help.
Back to top
View user's profile Send private message
Cinder6
l33t
l33t


Joined: 05 Aug 2004
Posts: 767
Location: California

PostPosted: Fri Oct 14, 2005 10:04 pm    Post subject: Reply with quote

I have the same card you just got, and I love it. Can't go wrong with it.
_________________
Knowledge is power.
Power corrupts.
Study hard.
Be evil.

Ugly Overload
Back to top
View user's profile Send private message
ericxx2005
Apprentice
Apprentice


Joined: 05 Apr 2005
Posts: 231
Location: 10 square miles surrounded by reality

PostPosted: Fri Oct 14, 2005 11:42 pm    Post subject: Reply with quote

I'm having a much harder time getting lirc to work then I suspected. So far, cat /dev/lirc/0 shows nothing when the remote buttons are pressed. I followed the how-to https://forums.gentoo.org/viewtopic-t-364624-highlight-lirc+howto.html with LIRC_OPTS="--with-driver=livedrive_midi", and followed the howto up to step 3, but no go. Is yours working atm? Can you give me a link to what you followed or give me some steps?
Back to top
View user's profile Send private message
ericxx2005
Apprentice
Apprentice


Joined: 05 Apr 2005
Posts: 231
Location: 10 square miles surrounded by reality

PostPosted: Sat Oct 15, 2005 12:49 am    Post subject: Reply with quote

Nevermind, I got it working, just needed to edit /etc/conf.d/lircd. Thanks for the help Cinder! This card rocks!
Back to top
View user's profile Send private message
Cinder6
l33t
l33t


Joined: 05 Aug 2004
Posts: 767
Location: California

PostPosted: Sat Oct 15, 2005 6:26 am    Post subject: Reply with quote

Hey...I never got lirc working. Mind showing me what you did? ;)
_________________
Knowledge is power.
Power corrupts.
Study hard.
Be evil.

Ugly Overload
Back to top
View user's profile Send private message
ericxx2005
Apprentice
Apprentice


Joined: 05 Apr 2005
Posts: 231
Location: 10 square miles surrounded by reality

PostPosted: Sat Oct 15, 2005 4:24 pm    Post subject: Reply with quote

First

Code:
nano -w /etc/make.conf


add

Code:
LIRC_OPTS="--with-driver=livedrive_midi"


save, close.

Code:
emerge lirc


Code:
nano -w /etc/conf.d/lircd


change the default line to:

Code:
LIRCD_OPTS="-d /dev/snd/midiC0D1 -H livedrive_midi"


save, close.

Add lircd to default runlevel

Code:
rc-update add lircd default


start lircd

Code:
/etc/init.d/lircd start


change permission of sensor device

Code:
chmod 777 /dev/lirc/0


NOTE: use the permissions you need

make a symlink (I don't know why, but I needed this)

Code:
ln -s /dev/lirc/0 /dev/lirc0


goto http://lirc.sourceforge.net/remotes/ , and find your remote, (if it's the rm-1500 it's there under creative). cp this file to /etc/lircd.conf

Code:
cp RM-1500 /etc/lircd.conf


restart lircd

Code:
/etc/init.d/lircd restart


load the modules for the sensor

Code:
modprobe lirc_dev
modprobe lirc_serial


at this point you should be able to type "irw", then it will capture any buttons on the remote you press.

Let me know if this works, or if there's any steps i missed.
Back to top
View user's profile Send private message
Cinder6
l33t
l33t


Joined: 05 Aug 2004
Posts: 767
Location: California

PostPosted: Sat Oct 15, 2005 5:32 pm    Post subject: Reply with quote

Dang...looks like my kernel (nitro-sources) doesn't have lirc! The maintainer might include it in the next release, which I can only hope will be soon. Gonna still fiddle with this, and see if I can get it working. Thanks for your help so far!
_________________
Knowledge is power.
Power corrupts.
Study hard.
Be evil.

Ugly Overload
Back to top
View user's profile Send private message
Cinder6
l33t
l33t


Joined: 05 Aug 2004
Posts: 767
Location: California

PostPosted: Fri Nov 04, 2005 1:15 am    Post subject: Reply with quote

Okay, I have a kernel with Lirc now, and I decided to try this again. I just have one problem: I don't have /dev/lirc/0...
_________________
Knowledge is power.
Power corrupts.
Study hard.
Be evil.

Ugly Overload
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum