Problems with sound modules?

1999-10-29 Thread Nazareth Shu
Hi, Everyone:

SORRY ABOUT THE ORIGONAL E-MAIL WHITCH ENCODED WITH BIG-5, I RE-SEND IT WITH
NEW MAIL-CLINET,
HOPE THIS TIME WILL BE OK TO EVERYONE...:-)

First of all, I'd like to thank Brian Mays help me to solve my
pcmcia_cs problem last time. Now I got a new trouble, that wish
some one can give me advices again.

This is my stiuration: Toshiba Satellite 2520CDT, with Yamaha
OPL3 SAx sound chips which is compatiable with Microsoft Sound
System or Creative Sound Blaster(The user menual said so...).

And here is my Debian: Debian 2.1 whith 2.2.10 kernel, I put
the last part of "make menuconfig"/"sound" for 2.2.10 kernel
in the end of this mail.

What I have done is: After complied my new kernel, I modified
the conf.modules with the value that came from Windows, I put
it at the edn of conf.modules file, here is the file(part of):

cat /etc/conf.modules:

# Sound
alias char-major-14 opl3sa2
pre-install opl3sa2 modprobe "-k" "ad1848"
post-install opl3sa2 modprobe "-k" "opl3"
options opl3sa2 io=0x370 mss_io=0x530 mpu_io=0x330 irq=5 dma=0 dma2=1x

After all, I still can't hear any audio output,include the CDROM
, I found there are not any audio device in /dev, then I decided
to make it by issue the "./MAKEDEV audio" at /dev directory, after
the device file been created, I type "lsmod" and here is the result
(part of):

lsmod:
Module  Size  Used by
mpu401 17628   0  (autoclean) (unused)
sound54428   0  (autoclean) [mpu401]
soundcore   2100   3  (autoclean) [sound]

Here is something about /dev/sndstat(nothing except OSS/Free):

cat /dev/sndstat:
OSS/Free:3.8s2++-971130
Load type: Driver loaded as a module
Kernel: Linux hope 2.2.10 #1 Fri Oct 15 07:34:25 CST 1999 i586
Config options: 0

Installed drivers:

Card config:

Audio devices:

Synth devices:

Midi devices:

Timers:
0: System clock

I've try to execute the mixer but faile as the following result:

asmixer:
asmixer:unable to grab /dev/mixer

xmix:
Error opening mixer device: Operation not supported by device

Here is the message shown in xconsole when I execute xmix: 

Oct 28 01:27:10 hope modprobe: can't locate module sound-slot-0
Oct 28 01:27:10 hope modprobe: can't locate module sound-service-0-0

Sometime xconsole will show:

Oct 28 12:26:04 hope modprobe: can't locate module synth0

Where there is the items I choice to complie it as modules(I do
this via make menuconfig):

 Sound card support
< > Ensoniq AudioPCI (ES1370)
< > Creative Ensoniq AudioPCI 97 (ES1371)
< > S3 SonicVibes
< > Support for Turtle Beach MultiSound Classic, Tahiti,
Monterey
< > Support for Turtle Beach MultiSound Pinnacle, Fiji
 OSS sound modules
< > ProAudioSpectrum 16 support
 100% Sound Blaster compatibles (SB16/32/64, ESS,
Jazz16) support
 Generic OPL2/OPL3 FM synthesizer support
< > Gravis Ultrasound support
 MPU-401 support (NOT for SB16)
< > PSS (AD1848, ADSP-2115, ESC614) support
 Microsoft Sound System support
< > Ensoniq SoundScape support
< > MediaTrix AudioTrix Pro support
< > Support for OPTi MAD16 and/or Mozart based cards
< > Full support for Turtle Beach WaveFront (Tropez
Plus, Tropez, Maui) synth/soundcards
< > Support for Crystal CS4232 based (PnP) cards
 Support for Yamaha OPL3-SA2, SA3, and SAx based PnP
cards
< > Limited support for Turtle Beach Wave Front (Maui,
Tropez) synthesizers
< > Support for Aztech Sound Galaxy (non-PnP) cards
< > Yamaha OPL3-SA1 audio controller
< > SoftOSS software wave table engine
 FM synthesizer (YM3812/OPL-3) support
< > Loopback MIDI device support
< > 6850 UART support
Additional low level sound drivers  --->
[ ] Additional low level sound drivers
< > ACI mixer (miroPCM12) (NEW)
< > AWE32 synth (NEW)
< > Gallant Audio Cards (SC-6000 and SC-6600 based) (NEW)

Hoping someone can give hints to sole the problem, and if
someone who have the same type of sound chips or notebook, and welling
to show me step by step, I'd like to thank you in advance! 

Cheers,

Nazareth Shu
Oct. 28 1999
Taiwan, R.O.C.



Re: listing packages in order of size

1999-10-29 Thread Barbwired
Drew Parsons decía:
> So, I did the proper thing and wrote my own utility.

So did I. If anyone is interested, here it is. It's two sh scrpits, that I
place under /usr/local/bin/:

calcula-size--
#!/usr/bin/perl -w
# 'calcula-size', ireleased under GNU GPL lisence
# Author: Javier Fernandez-Sanguino Peña <[EMAIL PROTECTED]>
# Package list can be created with:
# ^Dpkg -l \"*\" |grep ^ii | cut -f 3 --delimiter=" "  > package;
# But we'll just read DPKG_AVAILABLE ti see which packages are available
# and their size, so
$DPKG_AVAILABLE='/var/lib/dpkg/status';

open (DPKG,$DPKG_AVAILABLE);

while ()
{
#   print ;
if ( /^Package:(.*)$/ )
{ $pack_name=$1;  }
if ( /^Installed-Size:(.*)$/ )
{ $pack_size=$1;
$packs{$pack_name}=$pack_size;}
}

foreach $pack_name (keys %packs)
{   print "$packs{$pack_name}\t$pack_name\n";}
close DPKG;
# You can sort the list up with:
#  sort -nr -k 1 |less;
exit 0;

quetengo---
#!/bin/sh

echo "###" > tmp_quetengo
echo "Installed deb packages " >> tmp_quetengo
echo "###" >> tmp_quetengo
echo "" >> tmp_quetengo
echo "My hard drive is this full:" >> tmp_quetengo
df -h /dev/hdc1 >> tmp_quetengo
echo "" >> tmp_quetengo
echo "Kbytes   Package" >> tmp_quetengo
echo "--   ---" >> tmp_quetengo
calcula-size | sort -nr -k 1 >> tmp_quetengo
less tmp_quetengo
rm tmp_quetengo


I also made some changes so that packages were listed in alphabetical order,
given certain option, but I am not on that machine at this moment (sorry).
Hope it helps. 
BTW, does anyone know about a scripts repository so that I can improve mine? 
Kind regards
-- 
 The most secure computer is the one that's turned off, unplugged, encased in
  concrete and sunk in the atlantic. It's useabilty does suck, though.
 ---
 Barbwired  (The Translatrix)  -  U. Complutense de Madrid  -  Filología Inglesa
 Web personal  http://www.bigfoot.com/~barbwired/
  Proudly running Debian GNU/Linux 2.1 (Kernel 2.2.12) on a Dell Laptop 



Giving up on Slink, moving to potato?

1999-10-29 Thread Bryan K. Walton
Hi,
I have an IBM Thinkpad 390E and have been trying to install Debian
2.1 on it for about two weeks now.  I can install it no problem, except
that I cannot get X Windows configured correctly.  I even updraded to
XFree86 3.3.5, and still can't get it to work (although I can get Red Hat
6.1 installed on it in my first try).  The problem is that I don't want
Red Hat, I want to run Debian.  I even had two linux engineers here where
I work try to get it running, and they had no success.  I have checked out
linux resources for IBM Thinkpads on the net, and have also received
much useful information from this list.  But, I think I am giving up on
slink.  I may have to move to Red Hat, even though I don't want to.  But
first I want to ask a question.  I have never used an unstable release.
(And I am also a newbie).  Is it worth giving Potato a try?  Should Potato
make this problem easier to tackle for me?  Or would the fact that it is
unstable, only make life more difficult?

Thanks,
Bryan Walton



Re: Giving up on Slink, moving to potato?

1999-10-29 Thread Russell Coker
>   I have an IBM Thinkpad 390E and have been trying to install Debian
>2.1 on it for about two weeks now.  I can install it no problem, except
>that I cannot get X Windows configured correctly.  I even updraded to
>XFree86 3.3.5, and still can't get it to work (although I can get Red Hat
>6.1 installed on it in my first try).  The problem is that I don't want

If it works with Red Hat then why not just copy the Red Hat
/etc/X11/XF86config file?

Also could you please email this file to me?  This afternoon I just tried
unsuccessfully to get potato to work on a colleagues 390E.  I was installing
the same versions of the packages which work on my 380XD but it just didn't
work.  The FBDEV X server was just refusing all the modes that were listed as
options.

-- 
I'm going to the Colorado Software Summit.  Check out the URL and see why you
should be there.
http://www.softwaresummit.com/



Re: task-laptop uploaded

1999-10-29 Thread Sean 'Shaleh' Perry
Here goes.
Source: task-laptop
Section: misc
Priority: optional
Maintainer: Sean E. Perry <[EMAIL PROTECTED]>
Standards-Version: 3.0.1.1

Package: task-laptop
Architecture: i386
Depends: apmd, pcmcia-cs, anacron
Suggests: toshutils, netenv, irda-tools, irda-common
Description: A selection of tools for laptop users
 This is a collection of tools that laptop users will expect to find on a
 system.
 .
 Power management
 PCMCIA
 cron control


Re: Giving up on Slink, moving to potato?

1999-10-29 Thread Adam Shand

check out my thinkpad page at:

http://www.spack.org/geek/thinkpad-390.html

just grab the XF86Config from there and copy it to /etc/X11/XF86Config and
you should be good to go.  note that you need to have the svga server
installed and it needs to be at least 3.3.1 (i think).

you should have no problems with the config from my page.

adam.

> I have an IBM Thinkpad 390E and have been trying to install Debian
> 2.1 on it for about two weeks now.  I can install it no problem, except
> that I cannot get X Windows configured correctly.  I even updraded to
> XFree86 3.3.5, and still can't get it to work (although I can get Red Hat
> 6.1 installed on it in my first try).  The problem is that I don't want
> Red Hat, I want to run Debian.  I even had two linux engineers here where
> I work try to get it running, and they had no success.  I have checked out
> linux resources for IBM Thinkpads on the net, and have also received
> much useful information from this list.  But, I think I am giving up on
> slink.  I may have to move to Red Hat, even though I don't want to.  But
> first I want to ask a question.  I have never used an unstable release.
> (And I am also a newbie).  Is it worth giving Potato a try?  Should Potato
> make this problem easier to tackle for me?  Or would the fact that it is
> unstable, only make life more difficult?
> 
> Thanks,
> Bryan Walton
> 
> 
> --  
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 



Re: Giving up on Slink, moving to potato?

1999-10-29 Thread Jim Lynch
(this isn't cheating, is it? :)

Howbout you try this:

install redhat

configure X to the best you can get

save the X configuration (you have to find out where RH saves the x config)

determine what server redhat has chosen to use (again, where does RH put it?)

wipe redhat, install debian (configs will mostly be in /etc/X11)

apply the info you found with rh

works? if so, success :)

-Jim

---
Jim Lynch   Finger for pgp key
as Laney College CIS admin:  [EMAIL PROTECTED]   http://www.laney.edu/~jim/
as Debian developer: [EMAIL PROTECTED]  http://www.debian.org/~jwl/



Problems with sound modules?

1999-10-29 Thread Nazareth Shu
Hi, Everyone:

SORRY ABOUT THE ORIGONAL E-MAIL WHITCH ENCODED WITH BIG-5, I RE-SEND IT WITH
NEW MAIL-CLINET,
HOPE THIS TIME WILL BE OK TO EVERYONE...:-)

First of all, I'd like to thank Brian Mays help me to solve my
pcmcia_cs problem last time. Now I got a new trouble, that wish
some one can give me advices again.

This is my stiuration: Toshiba Satellite 2520CDT, with Yamaha
OPL3 SAx sound chips which is compatiable with Microsoft Sound
System or Creative Sound Blaster(The user menual said so...).

And here is my Debian: Debian 2.1 whith 2.2.10 kernel, I put
the last part of "make menuconfig"/"sound" for 2.2.10 kernel
in the end of this mail.

What I have done is: After complied my new kernel, I modified
the conf.modules with the value that came from Windows, I put
it at the edn of conf.modules file, here is the file(part of):

cat /etc/conf.modules:

# Sound
alias char-major-14 opl3sa2
pre-install opl3sa2 modprobe "-k" "ad1848"
post-install opl3sa2 modprobe "-k" "opl3"
options opl3sa2 io=0x370 mss_io=0x530 mpu_io=0x330 irq=5 dma=0 dma2=1x

After all, I still can't hear any audio output,include the CDROM
, I found there are not any audio device in /dev, then I decided
to make it by issue the "./MAKEDEV audio" at /dev directory, after
the device file been created, I type "lsmod" and here is the result
(part of):

lsmod:
Module  Size  Used by
mpu401 17628   0  (autoclean) (unused)
sound54428   0  (autoclean) [mpu401]
soundcore   2100   3  (autoclean) [sound]

Here is something about /dev/sndstat(nothing except OSS/Free):

cat /dev/sndstat:
OSS/Free:3.8s2++-971130
Load type: Driver loaded as a module
Kernel: Linux hope 2.2.10 #1 Fri Oct 15 07:34:25 CST 1999 i586
Config options: 0

Installed drivers:

Card config:

Audio devices:

Synth devices:

Midi devices:

Timers:
0: System clock

I've try to execute the mixer but faile as the following result:

asmixer:
asmixer:unable to grab /dev/mixer

xmix:
Error opening mixer device: Operation not supported by device

Here is the message shown in xconsole when I execute xmix: 

Oct 28 01:27:10 hope modprobe: can't locate module sound-slot-0
Oct 28 01:27:10 hope modprobe: can't locate module sound-service-0-0

Sometime xconsole will show:

Oct 28 12:26:04 hope modprobe: can't locate module synth0

Where there is the items I choice to complie it as modules(I do
this via make menuconfig):

 Sound card support
< > Ensoniq AudioPCI (ES1370)
< > Creative Ensoniq AudioPCI 97 (ES1371)
< > S3 SonicVibes
< > Support for Turtle Beach MultiSound Classic, Tahiti,
Monterey
< > Support for Turtle Beach MultiSound Pinnacle, Fiji
 OSS sound modules
< > ProAudioSpectrum 16 support
 100% Sound Blaster compatibles (SB16/32/64, ESS,
Jazz16) support
 Generic OPL2/OPL3 FM synthesizer support
< > Gravis Ultrasound support
 MPU-401 support (NOT for SB16)
< > PSS (AD1848, ADSP-2115, ESC614) support
 Microsoft Sound System support
< > Ensoniq SoundScape support
< > MediaTrix AudioTrix Pro support
< > Support for OPTi MAD16 and/or Mozart based cards
< > Full support for Turtle Beach WaveFront (Tropez
Plus, Tropez, Maui) synth/soundcards
< > Support for Crystal CS4232 based (PnP) cards
 Support for Yamaha OPL3-SA2, SA3, and SAx based PnP
cards
< > Limited support for Turtle Beach Wave Front (Maui,
Tropez) synthesizers
< > Support for Aztech Sound Galaxy (non-PnP) cards
< > Yamaha OPL3-SA1 audio controller
< > SoftOSS software wave table engine
 FM synthesizer (YM3812/OPL-3) support
< > Loopback MIDI device support
< > 6850 UART support
Additional low level sound drivers  --->
[ ] Additional low level sound drivers
< > ACI mixer (miroPCM12) (NEW)
< > AWE32 synth (NEW)
< > Gallant Audio Cards (SC-6000 and SC-6600 based) (NEW)

Hoping someone can give hints to sole the problem, and if
someone who have the same type of sound chips or notebook, and welling
to show me step by step, I'd like to thank you in advance! 

Cheers,

Nazareth Shu
Oct. 28 1999
Taiwan, R.O.C.


Re: listing packages in order of size

1999-10-29 Thread Barbwired
Drew Parsons decía:
> So, I did the proper thing and wrote my own utility.

So did I. If anyone is interested, here it is. It's two sh scrpits, that I
place under /usr/local/bin/:

calcula-size--
#!/usr/bin/perl -w
# 'calcula-size', ireleased under GNU GPL lisence
# Author: Javier Fernandez-Sanguino Peña <[EMAIL PROTECTED]>
# Package list can be created with:
# ^Dpkg -l \"*\" |grep ^ii | cut -f 3 --delimiter=" "  > package;
# But we'll just read DPKG_AVAILABLE ti see which packages are available
# and their size, so
$DPKG_AVAILABLE='/var/lib/dpkg/status';

open (DPKG,$DPKG_AVAILABLE);

while ()
{
#   print ;
if ( /^Package:(.*)$/ )
{ $pack_name=$1;  }
if ( /^Installed-Size:(.*)$/ )
{ $pack_size=$1;
$packs{$pack_name}=$pack_size;}
}

foreach $pack_name (keys %packs)
{   print "$packs{$pack_name}\t$pack_name\n";}
close DPKG;
# You can sort the list up with:
#  sort -nr -k 1 |less;
exit 0;

quetengo---
#!/bin/sh

echo "###" > tmp_quetengo
echo "Installed deb packages " >> tmp_quetengo
echo "###" >> tmp_quetengo
echo "" >> tmp_quetengo
echo "My hard drive is this full:" >> tmp_quetengo
df -h /dev/hdc1 >> tmp_quetengo
echo "" >> tmp_quetengo
echo "Kbytes   Package" >> tmp_quetengo
echo "--   ---" >> tmp_quetengo
calcula-size | sort -nr -k 1 >> tmp_quetengo
less tmp_quetengo
rm tmp_quetengo


I also made some changes so that packages were listed in alphabetical order,
given certain option, but I am not on that machine at this moment (sorry).
Hope it helps. 
BTW, does anyone know about a scripts repository so that I can improve mine? 
Kind regards
-- 
 The most secure computer is the one that's turned off, unplugged, encased in
  concrete and sunk in the atlantic. It's useabilty does suck, though.
 ---
 Barbwired  (The Translatrix)  -  U. Complutense de Madrid  -  Filología Inglesa
 Web personal  http://www.bigfoot.com/~barbwired/
  Proudly running Debian GNU/Linux 2.1 (Kernel 2.2.12) on a Dell Laptop 


Giving up on Slink, moving to potato?

1999-10-29 Thread Bryan K. Walton
Hi,
I have an IBM Thinkpad 390E and have been trying to install Debian
2.1 on it for about two weeks now.  I can install it no problem, except
that I cannot get X Windows configured correctly.  I even updraded to
XFree86 3.3.5, and still can't get it to work (although I can get Red Hat
6.1 installed on it in my first try).  The problem is that I don't want
Red Hat, I want to run Debian.  I even had two linux engineers here where
I work try to get it running, and they had no success.  I have checked out
linux resources for IBM Thinkpads on the net, and have also received
much useful information from this list.  But, I think I am giving up on
slink.  I may have to move to Red Hat, even though I don't want to.  But
first I want to ask a question.  I have never used an unstable release.
(And I am also a newbie).  Is it worth giving Potato a try?  Should Potato
make this problem easier to tackle for me?  Or would the fact that it is
unstable, only make life more difficult?

Thanks,
Bryan Walton


Re: Giving up on Slink, moving to potato?

1999-10-29 Thread Russell Coker
>   I have an IBM Thinkpad 390E and have been trying to install Debian
>2.1 on it for about two weeks now.  I can install it no problem, except
>that I cannot get X Windows configured correctly.  I even updraded to
>XFree86 3.3.5, and still can't get it to work (although I can get Red Hat
>6.1 installed on it in my first try).  The problem is that I don't want

If it works with Red Hat then why not just copy the Red Hat
/etc/X11/XF86config file?

Also could you please email this file to me?  This afternoon I just tried
unsuccessfully to get potato to work on a colleagues 390E.  I was installing
the same versions of the packages which work on my 380XD but it just didn't
work.  The FBDEV X server was just refusing all the modes that were listed as
options.

-- 
I'm going to the Colorado Software Summit.  Check out the URL and see why you
should be there.
http://www.softwaresummit.com/


Re: task-laptop uploaded

1999-10-29 Thread Sean 'Shaleh' Perry
Here goes.
Source: task-laptop
Section: misc
Priority: optional
Maintainer: Sean E. Perry <[EMAIL PROTECTED]>
Standards-Version: 3.0.1.1

Package: task-laptop
Architecture: i386
Depends: apmd, pcmcia-cs, anacron
Suggests: toshutils, netenv, irda-tools, irda-common
Description: A selection of tools for laptop users
 This is a collection of tools that laptop users will expect to find on a
 system.
 .
 Power management
 PCMCIA
 cron control


Re: Giving up on Slink, moving to potato?

1999-10-29 Thread Adam Shand

check out my thinkpad page at:

http://www.spack.org/geek/thinkpad-390.html

just grab the XF86Config from there and copy it to /etc/X11/XF86Config and
you should be good to go.  note that you need to have the svga server
installed and it needs to be at least 3.3.1 (i think).

you should have no problems with the config from my page.

adam.

> I have an IBM Thinkpad 390E and have been trying to install Debian
> 2.1 on it for about two weeks now.  I can install it no problem, except
> that I cannot get X Windows configured correctly.  I even updraded to
> XFree86 3.3.5, and still can't get it to work (although I can get Red Hat
> 6.1 installed on it in my first try).  The problem is that I don't want
> Red Hat, I want to run Debian.  I even had two linux engineers here where
> I work try to get it running, and they had no success.  I have checked out
> linux resources for IBM Thinkpads on the net, and have also received
> much useful information from this list.  But, I think I am giving up on
> slink.  I may have to move to Red Hat, even though I don't want to.  But
> first I want to ask a question.  I have never used an unstable release.
> (And I am also a newbie).  Is it worth giving Potato a try?  Should Potato
> make this problem easier to tackle for me?  Or would the fact that it is
> unstable, only make life more difficult?
> 
> Thanks,
> Bryan Walton
> 
> 
> --  
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 


Re: Giving up on Slink, moving to potato?

1999-10-29 Thread Jim Lynch
(this isn't cheating, is it? :)

Howbout you try this:

install redhat

configure X to the best you can get

save the X configuration (you have to find out where RH saves the x config)

determine what server redhat has chosen to use (again, where does RH put it?)

wipe redhat, install debian (configs will mostly be in /etc/X11)

apply the info you found with rh

works? if so, success :)

-Jim

---
Jim Lynch   Finger for pgp key
as Laney College CIS admin:  [EMAIL PROTECTED]   http://www.laney.edu/~jim/
as Debian developer: [EMAIL PROTECTED]  http://www.debian.org/~jwl/