Search Members Help

» Welcome Guest
[ Log In :: Register ]

Mini-ITX Boards Sale, Fanless BareBones Mini-ITX, Bootable 1G DSL USBs, 533MHz Fanless PC <-- SALE $200 each!
Get The Official Damn Small Linux Book. DSL Market , Great VPS hosting provided by Tektonic
Pages: (6) </ 1 2 3 [4] 5 6 >/

[ Track this topic :: Email this topic :: Print this topic ]

reply to topic new topic new poll
Topic: loads but nothing, the cd loads but the screen goes black< Next Oldest | Next Newest >
lucky13 Offline





Group: Members
Posts: 1478
Joined: Feb. 2007
Posted: July 07 2007,00:46 QUOTE

Use your internal speakers for what? You should have some output related to sound card on which ever tab it is in stats.lua. Step one is getting something detected so the appropriate module can load and then your computer can process audio.

You shouldn't have much trouble setting up wireless if you read the wiki entries for it.
http://www.damnsmalllinux.org/wiki/index.php/Verified_Wireless_Cards


--------------
"It felt kind of like having a pitbull terrier on my rear end."
-- meo (copyright(c)2008, all rights reserved)
Back to top
Profile PM WEB 
watupgroupie Offline





Group: Members
Posts: 13
Joined: July 2007
Posted: July 07 2007,02:20 QUOTE

Quote (lucky13 @ July 06 2007,20:46)
Use your internal speakers for what? You should have some output related to sound card on which ever tab it is in stats.lua. Step one is getting something detected so the appropriate module can load and then your computer can process audio.

You shouldn't have much trouble setting up wireless if you read the wiki entries for it.
http://www.damnsmalllinux.org/wiki/index.php/Verified_Wireless_Cards

I can't get anything to load at all related to sound i looked through everything on that menu and there's nothing to do with sound. Thanx for the wireless cards link, now to find one that doesn't require usb.
Back to top
Profile PM 
watupgroupie Offline





Group: Members
Posts: 13
Joined: July 2007
Posted: July 07 2007,16:49 QUOTE

Sorry for the double post but it also say's that it's skipping apm bios detection on setup so that maybe part of the problem. It's also skipping numerous other things. How would i get it to stop skipping these things.
Back to top
Profile PM 
lucky13 Offline





Group: Members
Posts: 1478
Joined: Feb. 2007
Posted: July 07 2007,19:04 QUOTE

It's either skipping because of your GRUB/LILO configuration or because of the age of your hardware. Does your BIOS support APM? That won't affect a sound card, which is most likely either onboard or PCI.

--------------
"It felt kind of like having a pitbull terrier on my rear end."
-- meo (copyright(c)2008, all rights reserved)
Back to top
Profile PM WEB 
stupid_idiot Offline





Group: Members
Posts: 344
Joined: Oct. 2006
Posted: July 08 2007,07:21 QUOTE

If it is an ISA soundcard, the process could be VERY troublesome. I think that since the soundcard is not detected upon boot, it is most likely an ISA soundcard.
Try this simple method first:
If you have diffculty in finding the brand and model of the soundcard, I suggest looking up the brand and model of the computer on Google.com. You may find hardware specifications for that model, including the model of the soundcard. If you don't mind posting the brand and model of your computer here, we can help you with the searching too.
Once we know the soundcard model, we will know what kernel module to load with `modprobe`. Hopefully, once we do this, the soundcard will be detected.

There is also a more complicated method in case the simple method doesn't work. Kernel modules for ISA hardware are typically configured to initialize the piece of hardware using default values for a set of parameters. If for some reason, the default system resources are not available (due to other devices hogging resources), the kernel module will be unable to initialize the hardware using these default values. Then, what you must do is reassign another set of system resources to the hardware using `pnpdump` and `isapnp` (I will talk about them later).
When you have done the reassignment, you can `modprobe` the kernel module. Your must specify the newly-assigned system resources (io port, irq, dma ports) for your soundcard by appending additional arguments to the `modprobe module_name` command.
Just what are these very-confusing 'parameters'? I will explain later, but for now, let's install the `pnpdump` and `isapnp` programs first.
They are part of the 'isapnptools' package. You can get it from
here.
Then, install using `dpkg -i`:
`dpkg -i isapnptools_1.26-5_i386.deb`
That's it. You can now use `pnpdump` and `isapnp`.

`isapnp` is the program reassigns system resources for ISA cards. It uses a configuration file generated by `pnpdump`. What `pnpdump` does is scan your system and then output a configuration file. You choose the location and filename for this configuration file. You edit the configuration file to assign system resources to your ISA card(s). Then you pass this configuration file to `isapnp` by doing `isapnp your_configuration_file`; `isapnp` will activate your ISA card(s) using the system resources you have specified in the configuration file.

1. First, use `pnpdump` to generate the configuration file. The location and filename can be anything of your choice:
e.g.
`pnpdump -o /home/dsl/isapnp.conf`

2. Before we pass this file to `isapnp`, we must edit it. Open it with your favourite editor. The configuration file is made up of many segments (segment = one chunk of many lines). Each ISA card in the PC will have at least one segment dedicated to it. Each segment comprises a specific configuration (a designated IRQ, an IO port, and an 8-bit and 16-bit DMA port respectively) for a card. You will notice that in this configuration file, all lines are commented (i.e. they all start with '#'). You must choose a segment that refers to your soundcard (i.e "CONFIGURE name_of_your_soundcard"). Uncomment all the lines with keywords - keywords are words in CAPITALS. The usual keywords are CONFIGURE, INT, DMA, IO, and ACT (which always comes at the end of each segment). Once you have properly enabled a segment, exit the editor and run `isapnp` using the configuration file:
e.g.
`isapnp /home/dsl/isapnp.conf`
If the above command is successful, we can `modprobe` the correct kernel module, using the values you chose in your configuration file. You should probably read the info for that kernel module, in order to know how to use the correct values together with `modprobe`.
To access a module's info, do:
`modinfo module_name`
All sound modules are found in '/lib/modules/2.4.26/kernel/drivers/sound/' - try finding a module to match your soundcard (assuming you already guessed the brand and model); so, for example:
`modinfo sb`
or
`modinfo cs4232`
and so on.. You will see a list of possible parameters and their possible values.
I've used a SoundBlaster SB16 in the past, so I'll use it as an example here:
(The module for the SB16 is 'sb'. If you look at `modinfo sb` you should be able to understand the syntax for the following line.)
`modprobe sb io=0x220 irq=5 dma=0 dma16=5`
Other soundcard modules probably have identical parameter names as the ones above, since these are the most essential - but it is better to check anyway.
Just make sure to use exactly the values that you uncommented in your isapnp configuration, and `modprobe` will probably detect your soundcard.

p.s. I understand that this howto is very complicated. I am very sorry about this.
Back to top
Profile PM 
27 replies since July 04 2007,04:28 < Next Oldest | Next Newest >

[ Track this topic :: Email this topic :: Print this topic ]

Pages: (6) </ 1 2 3 [4] 5 6 >/
reply to topic new topic new poll
Quick Reply: loads but nothing

Do you wish to enable your signature for this post?
Do you wish to enable emoticons for this post?
Track this topic
View All Emoticons
View iB Code