[SOLVED] sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-19 Thread Zhang Weiwu, Beijing
I am actually amazed nobody nor the handbook mentioned OSS to me, 
because after learned this, it suddenly become obvious this option 
should be tried right after failure of snd_driver. In fact, the sound 
card in-topic is Ali M5455, the first on the list of sound card 
supported by OSS.


http://manuals.opensound.com/devlists/FreeBSD.html

The solution is as simple as 'pkg_add -vr oss'. done. solved.

Consider OSS supported sound card list is rather long, it should be a 
must recommendation after snd_driver.


Again amazed that lspci in Linux showed keyword M5455, but pciconf -lv 
didn't show keyword "M5455". Having the keyword it's only a minute to 
figure out which is the right driver.


--
我的博客:
http://zhangweiwu.ixiezi.com/
网站进化论 --写给需要网站或后悔有了网站的人

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-16 Thread Erich Dollansky
Hi,

On Saturday 16 April 2011 14:42:43 Erik Trulsson wrote:
> On Sat, Apr 16, 2011 at 09:42:38AM +0700, Erich Dollansky wrote:
> > > 
> > > # kldload snd_driver
> > 
> > this will never work.
> 
> Yes, it will.  'snd_driver' is a meta-module which depends on, and
> therefore will pull in, all the available sound drivers.
> 
I have read meanwhile that most hardware is meanwhile supported by this. I 
tried it only a long time and got stuck then with loading directly the driver I 
need without ever bothering about the other options.

Anyway, the original poster seems to have the same problem I have had with my 
hardware those days.

Erich
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-16 Thread Erik Trulsson
On Sat, Apr 16, 2011 at 09:42:38AM +0700, Erich Dollansky wrote:
> Hi,
> 
> did you really get no other answer?
> 
> On Friday 15 April 2011 22:11:05 Zhang Weiwu, Beijing wrote:
> > Hello. I intend to use FreeBSD instead of PC-BSD. The sound card doesn't 
> > work on FreeBSD 8.2. I tried to follow the manual and loaded all sound 
> > card drivers
> > 
> > # kldload snd_driver
> 
> this will never work.

Yes, it will.  'snd_driver' is a meta-module which depends on, and
therefore will pull in, all the available sound drivers.

(If you don't believe me try checking the output of 'kldstat' before
and after doing 'kldload snd_driver')



-- 

Erik Trulsson
ertr1...@student.uu.se
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-16 Thread Boris Samorodov
On Sat, 16 Apr 2011 09:42:38 +0700 Erich Dollansky wrote:
> On Friday 15 April 2011 22:11:05 Zhang Weiwu, Beijing wrote:

> > Hello. I intend to use FreeBSD instead of PC-BSD. The sound card doesn't 
> > work on FreeBSD 8.2. I tried to follow the manual and loaded all sound 
> > card drivers
> > 
> > # kldload snd_driver

> this will never work.

Works fine. Maybe not the best solution for everyone (I use it for
diskless stations).

-- 
WBR, bsam
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-15 Thread Erich Dollansky
Hi,

On Saturday 16 April 2011 11:16:39 Zhang Weiwu, Beijing wrote:
> On 04/16/2011 10:42 AM, Erich Dollansky wrote:
> > On Friday 15 April 2011 22:11:05 Zhang Weiwu, Beijing wrote:
> >> # kldload snd_driver
> > this will never work.
> >
> > You must load the driver for your sound card. Something like
> >
> > kldload  snd_hda
> 
> I am confused, because the handbook says the opposite:
> http://www.freebsd.org/doc/handbook/sound-setup.html
> >
the handbook also says:

'Other available loadable sound modules are listed in 
/boot/defaults/loader.conf.'

I simply tried some out. If I remember right, mine was also not listed to work 
but worked with the driver I used as an example for you.

Do not forget, the handbook is not necessarily written by the same person as 
the program.

Erich
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-15 Thread Zhang Weiwu, Beijing

On 04/16/2011 10:42 AM, Erich Dollansky wrote:

On Friday 15 April 2011 22:11:05 Zhang Weiwu, Beijing wrote:

# kldload snd_driver

this will never work.

You must load the driver for your sound card. Something like

kldload  snd_hda


I am confused, because the handbook says the opposite:
http://www.freebsd.org/doc/handbook/sound-setup.html


To use your sound device, you will need to load the proper device driver.


Then:


If you are not sure which driver to use, you may try to load the 
snd_driver module:


#  kldload snd_driver
This is a metadriver loading the most common device drivers at once. 


Even though I wish to use only the right driver, the manual didn't say 
how can I find which driver is the right one except trying with 
snd_driver. It didn't even mention what drivers are there on the system. 
One might expect it at /usr/src/sys/i386/conf/GENERIC but there is 
nothing mentioning sound card.



You must replace snd_hda by the name of the driver for your card.


I'd be glad to try that if you inform me what is the name of the driver 
for my card, or point me way to find this information:)


Thanks for answering my mail!

--
我的博客:
http://zhangweiwu.ixiezi.com/
网站进化论 --写给需要网站或后悔有了网站的人


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-15 Thread Erich Dollansky
Hi,

did you really get no other answer?

On Friday 15 April 2011 22:11:05 Zhang Weiwu, Beijing wrote:
> Hello. I intend to use FreeBSD instead of PC-BSD. The sound card doesn't 
> work on FreeBSD 8.2. I tried to follow the manual and loaded all sound 
> card drivers
> 
> # kldload snd_driver

this will never work.

You must load the driver for your sound card. Something like

kldload  snd_hda

You must replace snd_hda by the name of the driver for your card.

Erich
> 
> But no driver works:
> 
> # cat /dev/sndstat
> FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386)
> Installed devices:
> 
> There is nothing after "installed devices". And there is nothing about 
> sound card mentioned in dmesg.
> 
> I had the impression non of the drivers recognizes the card, which is:
> 
> none1@pci0:0:4:0: class=0x040100 card=0x103b13bd chip=0x545510b9 rev=0x03 
> hdr=0x00
> vendor = 'Acer Labs Incorporated (ALi/ULi)'
> device = 'AC'97 Audio Controller (M1563M Southbridge)'
> class = multimedia
> subclass = audio
> 
> 
> Search for the chip ID as keyword on google reveals in PC-BSD this 
> keyword is mentioned in their driver database 
> "/PCBSD/soundDetect/soundcards.xml"
> 
> source: http://trac.pcbsd.org/changeset/3018/pcbsd
> 
> Somehow this hints PC-BSD recognizes and can configure this sound card.
> 
> My question is, if PC-BSD could play using this sound card, a FreeBSD 
> method must not be too far away, right? Can I configure FreeBSD somehow 
> to let a driver recognize and make use of this sound card?
> 
> P. S. If it doesn't work, I guess I'll fall back to Windows instead of 
> PC-BSD because I intend to use this machine for playing around and 
> testing GNUStep including its multimedia. The computer has a hard-wired 
> 8GB storage which is OK for the purpose, but not enough for PC-BSD.
> 
> -- 
> 我的博客:
> http://zhangweiwu.ixiezi.com/
> 网站进化论 --写给需要网站或后悔有了网站的人
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"
> 
> 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


sound card not recognized by freebsd 8.2 but mentioned in PC-BSD 8.2

2011-04-15 Thread Zhang Weiwu, Beijing
Hello. I intend to use FreeBSD instead of PC-BSD. The sound card doesn't 
work on FreeBSD 8.2. I tried to follow the manual and loaded all sound 
card drivers


# kldload snd_driver

But no driver works:

# cat /dev/sndstat
FreeBSD Audio Driver (newpcm: 32bit 2009061500/i386)
Installed devices:

There is nothing after "installed devices". And there is nothing about 
sound card mentioned in dmesg.


I had the impression non of the drivers recognizes the card, which is:

none1@pci0:0:4:0: class=0x040100 card=0x103b13bd chip=0x545510b9 rev=0x03 
hdr=0x00
vendor = 'Acer Labs Incorporated (ALi/ULi)'
device = 'AC'97 Audio Controller (M1563M Southbridge)'
class = multimedia
subclass = audio


Search for the chip ID as keyword on google reveals in PC-BSD this 
keyword is mentioned in their driver database 
"/PCBSD/soundDetect/soundcards.xml"


source: http://trac.pcbsd.org/changeset/3018/pcbsd

Somehow this hints PC-BSD recognizes and can configure this sound card.

My question is, if PC-BSD could play using this sound card, a FreeBSD 
method must not be too far away, right? Can I configure FreeBSD somehow 
to let a driver recognize and make use of this sound card?


P. S. If it doesn't work, I guess I'll fall back to Windows instead of 
PC-BSD because I intend to use this machine for playing around and 
testing GNUStep including its multimedia. The computer has a hard-wired 
8GB storage which is OK for the purpose, but not enough for PC-BSD.


--
我的博客:
http://zhangweiwu.ixiezi.com/
网站进化论 --写给需要网站或后悔有了网站的人

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Sound Card - NOT

2003-09-26 Thread DoubleF
On 26 Sep 2003 13:59:23 +1000 Psyche101 <[EMAIL PROTECTED]> probably wrote:

> Hiya 
> 
> Tried splay, same result. Also ran xmms from an xterm, no errors or
> verbose output of any kind, all seemed smooth. I have found stacks of
> esound dirs on my setup, not sure which one I should be looking at,
> couldn't see one attached to xmms, found and opened the artsd folder I
> could find, but it was some serious stuff, way over my head, couldn't
> read it.Been bopping to hi for a day now,LOL, need some new
> sounds, any other ideas ?
> 
> Andrew Kozak
> 

Please, try

$ mixer vol 100 pcm 100
$ splay -vvv -d /dev/dsp somefile.mp3

I can't imagine splay not working because it writes directly to the DSP
device (at least 0.9.5.1 does this, and the ports version is 0.9.5.2).
If it doesn't, your system is unimaginably perverted. 

(It's best to try it in single-user, just to be sure...)

HTH
-- DoubleF
The system itself does not do what it says it is doing.


pgp0.pgp
Description: PGP signature


Re: Sound Card - NOT

2003-09-25 Thread Psyche101
Hiya 

Tried splay, same result. Also ran xmms from an xterm, no errors or
verbose output of any kind, all seemed smooth. I have found stacks of
esound dirs on my setup, not sure which one I should be looking at,
couldn't see one attached to xmms, found and opened the artsd folder I
could find, but it was some serious stuff, way over my head, couldn't
read it.Been bopping to hi for a day now,LOL, need some new
sounds, any other ideas ?

Andrew Kozak

On Fri, 2003-09-26 at 06:50, Sergey DoubleF Zaharchenko wrote:
> On 25 Sep 2003 09:12:23 +1000 Psyche101 <[EMAIL PROTECTED]> probably wrote:
> 
> > Hiya
> > 
> > Thanks - a little messing around, and some very helpful information from
> > Sergey and Danny have got my sound card recognised. Only small problem
> > is that hissing sound that you get from"cat /dev/urandom>/dev/dsp" is
> > all I can get (at least it's a sound :~))when running xmms, kaboodle, or
> > just the system sounds in control panel. I unplugged the speakers
> > (Double checking just in case)and when I tried to run xmms, it said that
> > my sound card was configured properly and was working fine (just my luck
> > to install a tone deaf xmms version LOL)but it was plugged into the
> > wrong outlet - so I put it back, and get the hissing back.
> > Any idea what is going on ? The system tell me I have it right, but I
> > don't :/
> > 
> 
> Good. The next thing to check is the esound/artsd/whatever is used in
> XMMS. I don't use XMMS, so I can't tell you for sure. Try launching an
> xterm and running XMMS without the '&' to read any warning messages that
> may come along. They might be of some help.
> 
> At the moment, you may consider using splay, which doesn't have a
> graphics interface, but at least should play normally, as it writes
> directly to /dev/dsp. Of course it's in the ports.
> 
> -- 
> DoubleF
> Even water tastes bad when taken on doctors orders.
-- 
I went upstairs and had a smoke, somebody spoke and I went into a
dream...

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sound Card NOT

2003-09-24 Thread Psyche101
Hiya 

Thanks - a little messing around, and some very helpful information from
Sergey and Danny have got my sound card recognised. Only small problem 
is that hissing sound that you get from"cat /dev/urandom>/dev/dsp" is 
all I can get (at least it's a sound :~))when running xmms, kaboodle, or
just the system sounds in control panel. I unplugged the speakers 
(Double checking just in case)and when I tried to run xmms, it said that
my sound card was configured properly and was working fine (just my luck
to install a tone deaf xmms version LOL)but it was plugged into the 
wrong outlet - so I put it back, and get the hissing back. 
Any idea what is going on ? The system tells me I have it right, but I 
don't :/ 

Andrew Kozak 

On Wed, 2003-09-24 at 07:30, Sergey DoubleF Zaharchenko wrote: 
> On 23 Sep 2003 10:25:20 +1000 Andy K <[EMAIL PROTECTED]>
probably wrote: 
> 
> > I get no errors when I try to play an MP3 through xmms, problem is I
get 
> > no sound either. The error message saying my sound card isn't
configured 
> > when I start kde has gone away as well 
> 
> Try "cat /dev/urandom>/dev/dsp" and see if you hear the noise. That'll
> show you what sort of problem you are having (whether the card is 
> unusable or unused) 
> 
> -- 
> DoubleF 
> Complex systems tend to oppose their own 
> proper function. 
-- 
I went upstairs and had a smoke, somebody spoke and I went into a
dream...

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sound Card - NOT

2003-09-23 Thread Andy K
On Tue, 2003-09-23 at 21:44, Danny Pansters wrote:
> > [EMAIL PROTECTED]:11:0:class=0x03 card=0x
> > chip=0x88115333 rev=0x00 hdr=0x00
> > vendor   = 'S3 Incorporated'
> > device   = '86C732 Trio32, 86C764 Trio64, 86C765 Trio64V+ Rev 01'
> > class= display
> > subclass = VGA
> 
> So you have a Trio VGA card.
> 
> > [EMAIL PROTECTED]:20:0:class=0x03 card=0x
> > chip=0x02001039 rev=0x65 hdr=0x00
> > vendor   = 'Silicon Integrated Systems (SiS)'
> > device   = 'SiS5597/98 Onboard Graphics Controller'
> > class= display
> > subclass = VGA
> 
> So the motherboard also has an onboard VGA chip. So what? :)

Hi Danny

Thanks for your tips, some a little over my head, but a good read up
today should clear things up !(I  hope :)~) I will be trying them out
today.I am quite new to FreeBSD (about 4 months) and wish to learn it
thoroughly. I have had great success with every project I have attempted
so far.
I included the above as a point of interest -  you say 'So the
motherboard also has an onboard VGA chip So what? :)'

The  real interesting thing is that I have pulled the box apart, and I
assure you that there is no Trio VGA card - only on-board VGA. 100%
sure.Thats how it was when FreeBSD was installed - I installed myself
and know that there has never been a video card in this box.When setting
up X, I used the VESA driver.

Wierdrz or what :)

Thanks 
Andrew Kozak

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [Fwd: Re: Sound Card - NOT]

2003-09-23 Thread C. Ulrich
On Mon, 2003-09-22 at 21:43, Andy K wrote:
> Hi All
> 
> Thanks C Ulrich, Ill give that a try - I have checked where the speakers
> are plugged in, all is good, I even tried the others just in case - can
> you recommend a good mixer program from the ports collection ? 
> (Ports rawk)
> 
> Andrew Kozak
> 
> FreeBSD Rox My Sox !!
> 

Just checked and it looks like there are a ton of mixers in ports.

cd /usr/ports/audio
make search key=mixer

Since I just got my sound working, I'm in the market for a mixer too, so
I just tried the small and easy aumix. I seem to remember that the sound
drivers in linux had a separate Mute setting for each channel, but this
doesn't seem to be the case with FreeBSD, since selecting mute just puts
all the sliders down to 0.

Oh well, it works! Now I just wish I could adjust the bass and treble
for my SoundBlaster Live...

C. Ulrich

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


[Fwd: Re: Sound Card - NOT]

2003-09-22 Thread Andy K
Hi All

Thanks C Ulrich, Ill give that a try - I have checked where the speakers
are plugged in, all is good, I even tried the others just in case - can
you recommend a good mixer program from the ports collection ? 
(Ports rawk)

Andrew Kozak

FreeBSD Rox My Sox !!

--- Begin Message ---
On Mon, 2003-09-22 at 20:25, Andy K wrote:
> Hi Everyone 
> 
> Seems that quite a few people are having sound probs ! 
> 
> I am about to join in here - I also cannot get my sound card to
> operate.I have a P2 with a 20 gig Hdd and 128Mb RAM - the machine has
> onboard sound so I tried all the options - PNP BIOS, pcm, anything
> generic, and the sound pro config (as thats what the bios indicated it
> was) from the handbook, no good,(I did reconfig the kernel each time as
> well) so I disabled the onboard sound and installed a sound card - no
> idea of brand, it came from a dead computer but I knew it was working be
> fore the motherboard fell over. Main problem is my system recognises 2
> video cards (as it did before I disabled the onboard sound) and the new
> sound card is not recognised (as far  as I can see)
> 
> Output of cat /dev/sndstat 
> 
> FreeBSD Audio Driver (newpcm) 
> Installed Devices 
> pcm0:  at io 0x220 irq 5 drq 1:0 bufsz 4096 (1p/1r/0v
> channels duplex) 
> 
> (isn't this saying that it is working ?)
> 
> Output of uname -a 
> 
> FreeBSD Rockstar.richardflanagan.com.au 4.8 STABLE #1 Tue Aug 26
> 10:10:39 EST 2003
> [EMAIL PROTECTED]:/usr/obj/usr/src/sys/DRAGON i386 
> 
> Output of grep pcm /var/run/demsg.boot 
> 
> pcm0:  on sbc0 
> 
> (doesn't this also indicate sound is happening ?)
> 
> 
> I get no errors when I try to play an MP3 through xmms, problem is I get
> no sound either. The error message saying my sound card isn't configured
> when I start kde has gone away as well
> 
> Output of pciconf -lv 
> 
> 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS5597 Host to PCI bridge' 
> class= bridge 
> subclass = HOST-PCI 
> [EMAIL PROTECTED]:1:0: class=0x060100 card=0x chip=0x00081039 rev=0x01
> hdr=0x00 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS85C503/5513 PCI to ISA Bridge (LPC Bridge)' 
> class= bridge 
> subclass = PCI-ISA 
> [EMAIL PROTECTED]:1:1:   class=0x01018a card=0x500d8a02 chip=0x55131039
> rev=0xd0 hdr=0x00 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS5513 EIDE Controller (A,B step)' 
> class= mass storage 
> subclass = ATA 
> [EMAIL PROTECTED]:11:0:class=0x03 card=0x chip=0x88115333
> rev=0x00 hdr=0x00 
> vendor   = 'S3 Incorporated' 
> device   = '86C732 Trio32, 86C764 Trio64, 86C765 Trio64V+ Rev 01' 
> class= display 
> subclass = VGA 
> [EMAIL PROTECTED]:13:0:  class=0x02 card=0x chip=0x802910ec rev=0x00
> hdr=0x00 
> vendor   = 'Realtek Semiconductor' 
> device   = 'RTL8029 NE2000 compatible Ethernet' 
> class= network 
> subclass = ethernet 
> [EMAIL PROTECTED]:20:0:class=0x03 card=0x chip=0x02001039
> rev=0x65 hdr=0x00 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS5597/98 Onboard Graphics Controller' 
> class= display 
> subclass = VGA 
> 
> 
> Which as you can see shows two video cards and no sound card. Heck, I
> dunno, I'm willing to try anything now. All help, helpful or not will be
> appreciated. 
> 
> Regards to all 
> Andrew Kozak

The fact that your card shows up in /dev/sndstat and xmms doesn't
complain is a good sign.

Install a mixer program and check that none of the channels are muted or
turned all the way down. Also check that your speakers are plugged into
the speaker jack rather than the mic jack (etc).

HTH

C. Ulrich


--- End Message ---
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Sound Card - NOT

2003-09-22 Thread C. Ulrich
On Mon, 2003-09-22 at 20:25, Andy K wrote:
> Hi Everyone 
> 
> Seems that quite a few people are having sound probs ! 
> 
> I am about to join in here - I also cannot get my sound card to
> operate.I have a P2 with a 20 gig Hdd and 128Mb RAM - the machine has
> onboard sound so I tried all the options - PNP BIOS, pcm, anything
> generic, and the sound pro config (as thats what the bios indicated it
> was) from the handbook, no good,(I did reconfig the kernel each time as
> well) so I disabled the onboard sound and installed a sound card - no
> idea of brand, it came from a dead computer but I knew it was working be
> fore the motherboard fell over. Main problem is my system recognises 2
> video cards (as it did before I disabled the onboard sound) and the new
> sound card is not recognised (as far  as I can see)
> 
> Output of cat /dev/sndstat 
> 
> FreeBSD Audio Driver (newpcm) 
> Installed Devices 
> pcm0:  at io 0x220 irq 5 drq 1:0 bufsz 4096 (1p/1r/0v
> channels duplex) 
> 
> (isn't this saying that it is working ?)
> 
> Output of uname -a 
> 
> FreeBSD Rockstar.richardflanagan.com.au 4.8 STABLE #1 Tue Aug 26
> 10:10:39 EST 2003
> [EMAIL PROTECTED]:/usr/obj/usr/src/sys/DRAGON i386 
> 
> Output of grep pcm /var/run/demsg.boot 
> 
> pcm0:  on sbc0 
> 
> (doesn't this also indicate sound is happening ?)
> 
> 
> I get no errors when I try to play an MP3 through xmms, problem is I get
> no sound either. The error message saying my sound card isn't configured
> when I start kde has gone away as well
> 
> Output of pciconf -lv 
> 
> 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS5597 Host to PCI bridge' 
> class= bridge 
> subclass = HOST-PCI 
> [EMAIL PROTECTED]:1:0: class=0x060100 card=0x chip=0x00081039 rev=0x01
> hdr=0x00 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS85C503/5513 PCI to ISA Bridge (LPC Bridge)' 
> class= bridge 
> subclass = PCI-ISA 
> [EMAIL PROTECTED]:1:1:   class=0x01018a card=0x500d8a02 chip=0x55131039
> rev=0xd0 hdr=0x00 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS5513 EIDE Controller (A,B step)' 
> class= mass storage 
> subclass = ATA 
> [EMAIL PROTECTED]:11:0:class=0x03 card=0x chip=0x88115333
> rev=0x00 hdr=0x00 
> vendor   = 'S3 Incorporated' 
> device   = '86C732 Trio32, 86C764 Trio64, 86C765 Trio64V+ Rev 01' 
> class= display 
> subclass = VGA 
> [EMAIL PROTECTED]:13:0:  class=0x02 card=0x chip=0x802910ec rev=0x00
> hdr=0x00 
> vendor   = 'Realtek Semiconductor' 
> device   = 'RTL8029 NE2000 compatible Ethernet' 
> class= network 
> subclass = ethernet 
> [EMAIL PROTECTED]:20:0:class=0x03 card=0x chip=0x02001039
> rev=0x65 hdr=0x00 
> vendor   = 'Silicon Integrated Systems (SiS)' 
> device   = 'SiS5597/98 Onboard Graphics Controller' 
> class= display 
> subclass = VGA 
> 
> 
> Which as you can see shows two video cards and no sound card. Heck, I
> dunno, I'm willing to try anything now. All help, helpful or not will be
> appreciated. 
> 
> Regards to all 
> Andrew Kozak

The fact that your card shows up in /dev/sndstat and xmms doesn't
complain is a good sign.

Install a mixer program and check that none of the channels are muted or
turned all the way down. Also check that your speakers are plugged into
the speaker jack rather than the mic jack (etc).

HTH

C. Ulrich

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Sound Card - NOT

2003-09-22 Thread Andy K
Hi Everyone 

Seems that quite a few people are having sound probs ! 

I am about to join in here - I also cannot get my sound card to
operate.I have a P2 with a 20 gig Hdd and 128Mb RAM - the machine has
onboard sound so I tried all the options - PNP BIOS, pcm, anything
generic, and the sound pro config (as thats what the bios indicated it
was) from the handbook, no good,(I did reconfig the kernel each time as
well) so I disabled the onboard sound and installed a sound card - no
idea of brand, it came from a dead computer but I knew it was working be
fore the motherboard fell over. Main problem is my system recognises 2
video cards (as it did before I disabled the onboard sound) and the new
sound card is not recognised (as far  as I can see)

Output of cat /dev/sndstat 

FreeBSD Audio Driver (newpcm) 
Installed Devices 
pcm0:  at io 0x220 irq 5 drq 1:0 bufsz 4096 (1p/1r/0v
channels duplex) 

(isn't this saying that it is working ?)

Output of uname -a 

FreeBSD Rockstar.richardflanagan.com.au 4.8 STABLE #1 Tue Aug 26
10:10:39 EST 2003
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/DRAGON i386 

Output of grep pcm /var/run/demsg.boot 

pcm0:  on sbc0 

(doesn't this also indicate sound is happening ?)


I get no errors when I try to play an MP3 through xmms, problem is I get
no sound either. The error message saying my sound card isn't configured
when I start kde has gone away as well

Output of pciconf -lv 


vendor   = 'Silicon Integrated Systems (SiS)' 
device   = 'SiS5597 Host to PCI bridge' 
class= bridge 
subclass = HOST-PCI 
[EMAIL PROTECTED]:1:0: class=0x060100 card=0x chip=0x00081039 rev=0x01
hdr=0x00 
vendor   = 'Silicon Integrated Systems (SiS)' 
device   = 'SiS85C503/5513 PCI to ISA Bridge (LPC Bridge)' 
class= bridge 
subclass = PCI-ISA 
[EMAIL PROTECTED]:1:1:   class=0x01018a card=0x500d8a02 chip=0x55131039
rev=0xd0 hdr=0x00 
vendor   = 'Silicon Integrated Systems (SiS)' 
device   = 'SiS5513 EIDE Controller (A,B step)' 
class= mass storage 
subclass = ATA 
[EMAIL PROTECTED]:11:0:class=0x03 card=0x chip=0x88115333
rev=0x00 hdr=0x00 
vendor   = 'S3 Incorporated' 
device   = '86C732 Trio32, 86C764 Trio64, 86C765 Trio64V+ Rev 01' 
class= display 
subclass = VGA 
[EMAIL PROTECTED]:13:0:  class=0x02 card=0x chip=0x802910ec rev=0x00
hdr=0x00 
vendor   = 'Realtek Semiconductor' 
device   = 'RTL8029 NE2000 compatible Ethernet' 
class= network 
subclass = ethernet 
[EMAIL PROTECTED]:20:0:class=0x03 card=0x chip=0x02001039
rev=0x65 hdr=0x00 
vendor   = 'Silicon Integrated Systems (SiS)' 
device   = 'SiS5597/98 Onboard Graphics Controller' 
class= display 
subclass = VGA 


Which as you can see shows two video cards and no sound card. Heck, I
dunno, I'm willing to try anything now. All help, helpful or not will be
appreciated. 

Regards to all 
Andrew Kozak

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"