Re: Best way to setup a Soundblaster Live card

2001-06-11 Thread Scott_Patterson




On Sat, Jun 09, 2001 at 03:36:52PM +1000, Robert Martinovic wrote:
 On Fri, Jun 08, 2001 at 05:43:15PM +0200, Robert Voigt wrote:
  Don't forget to add your users to group audio, it's a common newbie
 trap

 As a newbie, can someone tell me how this is done? I have compiled
 2.4.5 with OSS support and now just need to add the users to this
 group

# adduser [user] audio

Yup.

also helpful is
# adduser [user] disk
so that a user can user the CDROM after
ln -s /dev/cdrom /dev/hd[x]

Nope. This will allow user to do something like cat /dev/null 
/dev/hd[x] and erase the hard drive. You should change you CDROM to group
cdrom (chgrp cdrom /dev/hd[x]) and add yourself to that group for CD
access.

Scott





Re: Best way to setup a Soundblaster Live card

2001-06-09 Thread Robert Martinovic
On Fri, Jun 08, 2001 at 05:43:15PM +0200, Robert Voigt wrote:
 Don't forget to add your users to group audio, it's a common newbie
trap

As a newbie, can someone tell me how this is done? I have compiled
2.4.5 with OSS support and now just need to add the users to this
group

Cheers,

Rob



Re: Best way to setup a Soundblaster Live card

2001-06-09 Thread Andrew Sione Taumoefolau
Rob,

 As a newbie, can someone tell me how this is done? I have compiled
 2.4.5 with OSS support and now just need to add the users to this
 group

Go root, edit /etc/group, find the audio line, and add the users you'd
like to have access to sound. So, the untouched line'll look something
like this:

audio:x:29:

and you want to change it so it looks like this:

audio:x:29:usera,userb,userc

And there you go! :)

-- 

Andrew Sione Taumoefolau  
[EMAIL PROTECTED]
http://users.pipeline.com.au


pgpe5t85eTXGs.pgp
Description: PGP signature


Re: Best way to setup a Soundblaster Live card

2001-06-09 Thread Jeremiah H. Savage
On Sat, Jun 09, 2001 at 03:36:52PM +1000, Robert Martinovic wrote:
 On Fri, Jun 08, 2001 at 05:43:15PM +0200, Robert Voigt wrote:
  Don't forget to add your users to group audio, it's a common newbie
 trap
 
 As a newbie, can someone tell me how this is done? I have compiled
 2.4.5 with OSS support and now just need to add the users to this
 group

# adduser [user] audio

also helpful is
# adduser [user] disk
so that a user can user the CDROM after
ln -s /dev/cdrom /dev/hd[x]

-- 
Jeremiah



Re: Best way to setup a Soundblaster Live card

2001-06-09 Thread Andrea Vettorello
Jeremiah H. Savage wrote:

[...]

 also helpful is
 # adduser [user] disk
 so that a user can user the CDROM after
 ln -s /dev/cdrom /dev/hd[x]

Adding a user to the disk group is a bad thing, try looking in the mail
archive for the full details (the user could fill/trash the system HD or other
device with the same group), better changing the CDROM owing to audio or
create a new group like cdrom...


Andrea



Best way to setup a Soundblaster Live card

2001-06-08 Thread Robert Martinovic
Hello,

I would like to know what is the best (or easiest) way to setup a
sblive card. I know there is alsa and the kernel drivers.

Cheers,

Rob



Re: Best way to setup a Soundblaster Live card

2001-06-08 Thread Robert Voigt
On Friday 08 June 2001 14:48, Robert Martinovic wrote:
 Hello,

 I would like to know what is the best (or easiest) way to setup a
 sblive card. I know there is alsa and the kernel drivers.

OSS (kernel driver) is probably easiest. 
modconf
then select the emu10k1 module.
Don't forget to add your users to group audio, it's a common newbie trap.



Re: Best way to setup a Soundblaster Live card

2001-06-08 Thread Scott_Patterson




I would like to know what is the best (or easiest) way to setup a
sblive card. I know there is alsa and the kernel drivers.

Maybe not the best way, but it worked fairly easy for me...

Download a recent kernel (2.2.18 or better for kernel driver support). Do a
insmod sound; insmod emu10k1 as root. Then, manually put these drivers in
your /etc/modules to have sound at system startup or you can use modconf
if you'd rather not edit the file manually.

I could never get my gameport to work though...maybe alsa has support?!?

Scott