Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: geen geluid  (gelezen 6033 keer)

Offline profoX

  • Lid
    • wesley
    • Lionslink
geen geluid
« Reactie #25 Gepost op: 2006/07/23, 17:48:16 »
jij hebt als user geen lees-rechten tot /etc/modules ?? heb je met permissies zitten knoeien op dat bestand? :P

$sudo chmod 644 /etc/modules
$sudo chmod 644 /etc/modprobe.d/blacklist
$sudo chmod 644 /etc/modprobe.d/alsa-base

en dan om de files te lezen:

$cat /etc/modules
$cat /etc/modprobe.d/blacklist
$cat /etc/modprobe.d/alsa-base
Human Knowledge Belongs To The World -- Antitrust (2001)
Nederlandstalige Ubuntu documentatie van Ubuntu-NL (wiki)

mixthead

  • Gast
geen geluid
« Reactie #26 Gepost op: 2006/07/23, 18:20:44 »
Password:
ingrit@mamalou:~$ cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.

lp
psmouse
ingrit@mamalou:~$

mixthead

  • Gast
geen geluid
« Reactie #27 Gepost op: 2006/07/23, 18:22:23 »
ingrit@mamalou:~$ cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.

lp
psmouse
ingrit@mamalou:~$ sudo chmod 644 /etc/modprobe.d/blacklist
ingrit@mamalou:~$ cat /etc/modprobe.d/blacklist
# This file lists those modules which we don't want to be loaded by
# alias expansion, usually so some other driver will be loaded for the
# device instead.

# evbug is a debug tool that should be loaded explicitly
blacklist evbug

# these drivers are very simple, the HID drivers are usually preferred
blacklist usbmouse
blacklist usbkbd

# replaced by e100
blacklist eepro100

# replaced by tulip
blacklist de4x5

# causes no end of confusion by creating unexpected network interfaces
blacklist eth1394

# snd_intel8x0m can interfere with snd_intel8x0, doesn't seem to support much
# hardware on its own (Ubuntu bug #2011, #6810)
blacklist snd_intel8x0m

# causes failure to suspend on HP compaq nc6000 (Ubuntu: #10306)
blacklist i2c_i801
ingrit@mamalou:~$

mixthead

  • Gast
geen geluid
« Reactie #28 Gepost op: 2006/07/23, 18:29:01 »
ingrit@mamalou:~$ cat /etc/modprobe.d/alsa-base
# autoloader aliases
install sound-slot-0 modprobe snd-card-0
install sound-slot-1 modprobe snd-card-1
install sound-slot-2 modprobe snd-card-2
install sound-slot-3 modprobe snd-card-3
install sound-slot-4 modprobe snd-card-4
install sound-slot-5 modprobe snd-card-5
install sound-slot-6 modprobe snd-card-6
install sound-slot-7 modprobe snd-card-7

# Cause optional modules to be loaded above generic modules
install snd modprobe --ignore-install snd $CMDLINE_OPTS && { modprobe -Qb snd-ioctl32 ; : ; }
install snd-pcm modprobe --ignore-install snd-pcm $CMDLINE_OPTS && { modprobe -Qb snd-pcm-oss ; : ; }
install snd-mixer modprobe --ignore-install snd-mixer $CMDLINE_OPTS && { modprobe -Qb snd-mixer-oss ; : ; }
install snd-seq modprobe --ignore-install snd-seq $CMDLINE_OPTS && { modprobe -Qba snd-seq-midi snd-seq-oss ; : ; }

# Cause optional modules to be loaded above sound card driver modules
install snd-emu10k1 modprobe --ignore-install snd-emu10k1 $CMDLINE_OPTS && { modprobe -Qb snd-emu10k1-synth ; }
install snd-via82xx modprobe --ignore-install snd-via82xx $CMDLINE_OPTS && { modprobe -Qb snd-seq ; }

# Load saa7134-alsa instead of saa7134 (which gets dragged in by it anyway)
install saa7134 modprobe --ignore-install saa7134 $CMDLINE_OPTS && { modprobe -Qb saa7134-alsa ; : ; }
# Prevent abnormal drivers from grabbing index 0
options snd-bt87x index=-2
options snd-atiixp-modem index=-2
options snd-intel8x0m index=-2
options snd-via82xx-modem index=-2
ingrit@mamalou:~$

heb gister alleen aan het eerste file gekloot ;) /etc/ module om de permissies te veranderen ;) .........

groetjes jeroen

Offline profoX

  • Lid
    • wesley
    • Lionslink
geen geluid
« Reactie #29 Gepost op: 2006/07/23, 18:30:11 »
Wat heb jij zitten doen? want die bestanden zijn helemaal niet aangepast.. :P

Ik leg de guide ff uit in mijn eigen woorden:

$gksudo gedit /etc/modules

Je krijgt nu een editor venster, voeg dit achteraan toe, en opslaan en sluiten:
sound
ad1848
uart401
snd-cs4236
$gksudo gedit /etc/modprobe.d/blacklist

Je krijgt nu een editor venster, voeg dit achteraan toe, en opslaan en sluiten:

blacklist snd-cs46xx
blacklist cs46xx
$gksudo gedit /etc/modprobe.d/alsa-base

Je krijgt nu een editor venster, voeg dit onderaan toe, en opslaan en sluiten:

alias char-major-116 snd
alias char-major-14 soundcore
alias snd-card-0 snd-cs4236
options snd-cs4236 isapnp=0 cport=0x538 port=0x530 sb_port=0x220 fm_port=0x388 irq=5 dma1=1 dma2=0
alias sound-slot-0 snd-card-0
alias sound-slot-1 snd-card-1

alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss

alias /dev/mixer snd-mixer-oss
alias /dev/dsp snd-pcm-oss
alias /dev/midi snd-seq-oss

options snd cards_limit=1
en start daarna eens opnieuw op
Human Knowledge Belongs To The World -- Antitrust (2001)
Nederlandstalige Ubuntu documentatie van Ubuntu-NL (wiki)

Offline profoX

  • Lid
    • wesley
    • Lionslink
geen geluid
« Reactie #30 Gepost op: 2006/07/23, 18:31:29 »
Voordat je opnieuw opstart ook je BIOS ff initialiseren, anders werkt geluid ook nog niet:

F1 drukken als je je laptop aanschakelt zodat je in het BIOS setup komt.
Zet Quickboot op Disable (dit schakelt Quickboot uit)
Doe "Initialise" in het BIOS setup.
Human Knowledge Belongs To The World -- Antitrust (2001)
Nederlandstalige Ubuntu documentatie van Ubuntu-NL (wiki)

mixthead

  • Gast
geen geluid
« Reactie #31 Gepost op: 2006/07/23, 19:38:21 »
ingrit@mamalou:~$ gksudo /etc/modprobe.d/blacklist
sudo: /etc/modprobe.d/blacklist: command not found
ingrit@mamalou:~$

wat is dit nu weer
 eerste line werkten wel
weet niet wat ik nu weer deed

Offline profoX

  • Lid
    • wesley
    • Lionslink
geen geluid
« Reactie #32 Gepost op: 2006/07/23, 19:39:59 »
Citaat van: mixthead
ingrit@mamalou:~$ gksudo /etc/modprobe.d/blacklist
sudo: /etc/modprobe.d/blacklist: command not found
ingrit@mamalou:~$

wat is dit nu weer
 eerste line werkten wel
weet niet wat ik nu weer deed
typfoutje, gedit vergeten erbij te zetten..
ik heb het aangepast, doe eens opnieuw die 2 laatste bestanden
Human Knowledge Belongs To The World -- Antitrust (2001)
Nederlandstalige Ubuntu documentatie van Ubuntu-NL (wiki)

mixthead

  • Gast
geen geluid
« Reactie #33 Gepost op: 2006/07/23, 19:42:59 »
3e idem
ingrit@mamalou:~$ gksudo /etc/modprobe.d/alsa-base
sudo: /etc/modprobe.d/alsa-base: command not found

weet het ook niet volg je instructies presies op
o wacht moet het niet gksudo gedit zijn????

Offline bartek

  • Lid
    • http://bartek.blogsome.com
geen geluid
« Reactie #34 Gepost op: 2006/07/23, 19:45:14 »
ofwel sudo gedit

ik ken het verschil niet tussen gksudo en sudo
sudo wil zeggen superuer do
maar voor wat staat die gk dan? en wat is het grote verschil?
| Deliberando saepe perit occasio |

"Car la vie est un bien perdu quand on n'a pas vécu comme on l'aurait voulu"

Offline profoX

  • Lid
    • wesley
    • Lionslink
geen geluid
« Reactie #35 Gepost op: 2006/07/23, 19:52:13 »
gksudo is hetzelfde als sudo maar dan de grafische versie
(paswoord wordt in een grafisch venster gevraagd)
Human Knowledge Belongs To The World -- Antitrust (2001)
Nederlandstalige Ubuntu documentatie van Ubuntu-NL (wiki)

mixthead

  • Gast
geen geluid
« Reactie #36 Gepost op: 2006/07/23, 20:11:34 »
oke heb net weer geboot alles gedaan wat jij zij ook in bios
kreeg wel fout meldingen in consol :
ingrit@mamalou:~$ gksudo gedit /etc/modules
(gedit:5140): GnomeUI-WARNING **: While connecting to session manager:
Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed.
ALSA lib confmisc.c:672:(snd_func_card_driver) cannot find card '0'
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_card_driver returned error: No such device
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_concat returned error: No such device
ALSA lib confmisc.c:1072:(snd_func_refer) error evaluating name
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_refer returned error: No such device
ALSA lib conf.c:3962:(snd_config_expand) Evaluate error: No such device
ALSA lib pcm.c:2102:(snd_pcm_open_noupdate) Unknown PCM default

maar de edit venster opende wel gewoon met het gevraagde file kon ook gewoon de line toevoegen en opslaan en dat heb ik dan ook gedaan

kijk net even na of de lines er nu ook in staan en dat is zo

is een lang verhaal he zo een sound kaart instaleren!!!!

maar ik geef de moet nog niet op

bedankt voor je moeite tot nu toe

gr j

mixthead

  • Gast
geen geluid
« Reactie #37 Gepost op: 2006/07/23, 20:16:28 »
en dit geeft het consul het op vragen van het 2e file


ingrit@mamalou:~$ gksudo gedit /etc/modprobe.d/blacklist
(gedit:5389): GnomeUI-WARNING **: While connecting to session manager:
Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed.
ALSA lib confmisc.c:672:(snd_func_card_driver) cannot find card '0'
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_card_driver returned error: No such device
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_concat returned error: No such device
ALSA lib confmisc.c:1072:(snd_func_refer) error evaluating name
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_refer returned error: No such device
ALSA lib conf.c:3962:(snd_config_expand) Evaluate error: No such device
ALSA lib pcm.c:2102:(snd_pcm_open_noupdate) Unknown PCM default
ingrit@mamalou:~$

mixthead

  • Gast
geen geluid
« Reactie #38 Gepost op: 2006/07/23, 20:21:06 »
en dit bij de 3e

(gedit:5572): GnomeUI-WARNING **: While connecting to session manager:
Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed.
ALSA lib confmisc.c:672:(snd_func_card_driver) cannot find card '0'
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_card_driver returned error: No such device
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_concat returned error: No such device
ALSA lib confmisc.c:1072:(snd_func_refer) error evaluating name
ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_refer returned error: No such device
ALSA lib conf.c:3962:(snd_config_expand) Evaluate error: No such device
ALSA lib pcm.c:2102:(snd_pcm_open_noupdate) Unknown PCM default
ingrit@mamalou:~$

mixthead

  • Gast
geen geluid
« Reactie #39 Gepost op: 2006/07/23, 20:46:48 »
and there was sound!!!!!!!!!!!
hij doet het !!!!!!!!
beter
heeell  heeelll erg bedankt voor je moeite!!!!!!!
veel geleert in dit process
 
op naar het volgende probleem usb 2.0 pc cart!!!!

maar weet nu hoe ik lines kan toevoegen kan ik zelf speuren op het net

nog een keer bedankt

groetjes j.

Offline profoX

  • Lid
    • wesley
    • Lionslink
geen geluid
« Reactie #40 Gepost op: 2006/07/23, 20:54:22 »
Leuk ;)

normaal gezien werkt een geluidskaart zonder al deze moeite hoor, maar het is een ouder type laptop he :) ISA geluidskaarten zijn niet meer in trek

Die dingen in de console daar moet je je niks van aantrekken, dat was omdat je geluidskaart niet werkte..
Human Knowledge Belongs To The World -- Antitrust (2001)
Nederlandstalige Ubuntu documentatie van Ubuntu-NL (wiki)