#1 Le 22/03/2019, à 02:32
- kalimeth
Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonjour, j'ai installé Lubuntu sur un ordinateur AUCHAN SELECLINE netbook 10,1".
J'ai un peu galéré avec le Wifi, qui à l'air de s'être résolu.
Mais maintenant, j'attaque le 2ème problème majeur : le son.
Après avoir essayé quelques trucs avec mon problème de wifi, j'ai du moi-même créer ou amplifier mon problème.
Du coup, je préférerais m'en remettre directement à vous, histoire d'éviter d'accentuer les problèmes lol.
Après avoir lu http://doc.ubuntu-fr.org/son_problemes, j'obtiens :
ben@ben-Selecline-notebook-10-1:~$ lspci | grep -i audio
ben@ben-Selecline-notebook-10-1:~$
ben@ben-Selecline-notebook-10-1:~$ lsusb | grep -i audio
ben@ben-Selecline-notebook-10-1:~$
ben@ben-Selecline-notebook-10-1:~$ cat /proc/asound/cards
0 [Audio ]: HdmiLpeAudio - Intel HDMI/DP LPE Audio
Intel HDMI/DP LPE Audio
ben@ben-Selecline-notebook-10-1:~$
ben@ben-Selecline-notebook-10-1:~$ cat /proc/asound/pcm
00-00: HdmiLpeAudio : Intel HDMI/DP LPE Audio : playback 1
00-01: HdmiLpeAudio : Intel HDMI/DP LPE Audio : playback 1
ben@ben-Selecline-notebook-10-1:~$
Dernière modification par kalimeth (Le 22/03/2019, à 02:39)
Hors ligne
#2 Le 22/03/2019, à 03:37
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Finalement, je me suis un peu emporté, et j'ai trouvé ça :
https://forum.ubuntu-fr.org/viewtopic.php?id=2037328 qui me renvoie au #8 sur :
https://forum.ubuntu-fr.org/viewtopic.p … #p21957308
Au poste #26, XUBU1957 préconise ça :
wget -qO- https://gist.github.com/heikomat/3fe272431b44b580c933bfb901a92257/raw | bash
Je l'ai installé puis rebooté (comme un âne, j'ai pas pensé à noter le retour de la commande).
Cela n'a rien changé, j'ai toujours pas de son.
Hors ligne
#3 Le 22/03/2019, à 06:14
- xubu1957
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonjour,
C'était pour une tablette Asus E200HA, et un codec cx2072x !
Le lien > github.com/heikomat/linux/tree/cx2072x
_ _ _
Dans ton wificheck, pour le son dans lsmod :
snd 81920 8 snd_timer,snd_compress,snd_hdmi_lpe_audio,snd_soc_sst_atom_hifi2_platform,snd_soc_core,snd_pcm
snd_compress 20480 1 snd_soc_core
snd_hdmi_lpe_audio 24576 1
snd_intel_sst_acpi 16384 0
snd_intel_sst_core 53248 1 snd_intel_sst_acpi
snd_pcm 98304 5 snd_hdmi_lpe_audio,snd_soc_sst_atom_hifi2_platform,snd_soc_core,snd_soc_es8316,snd_pcm_dmaengine
snd_pcm_dmaengine 16384 1 snd_soc_core
snd_soc_acpi 16384 1 snd_intel_sst_acpi
snd_soc_acpi_intel_match 20480 1 snd_intel_sst_acpi
snd_soc_core 241664 2 snd_soc_sst_atom_hifi2_platform,snd_soc_es8316
snd_soc_es8316 40960 0
snd_soc_sst_atom_hifi2_platform 102400 1 snd_intel_sst_core
snd_timer 32768 1 snd_pcm
Il faut fouiller pour un chipset es8316.
_ _ _
Donne :
dmesg | grep 8316
Basée sur cette discussion > Yepo 737S : carte son non détectée
Pour comparer avec > [SOLVED] ES8316 Audio Driver
_ _ _
EDIT Stockage du script donné dans la réponse > askubuntu.com/questions/1034619/problem-with-audio-device-es8316-and-ubuntu-18-04
Attends les avis d'aidants confirmés.
#!/bin/bash
# Linuxium's script to install UCM files based on the work of Pierre-Louis Bossart and 'kernins'
echo "$0: Extracting UCM files ..."
PURGE_UNZIP=false && [ ! $(sudo bash -c "command -v unzip") ] && sudo apt -y install unzip > /dev/null 2>&1 && PURGE_UNZIP=true
sudo rm -rf UCM
sudo mkdir UCM
cd UCM
sudo wget --timeout=10 "https://github.com/plbossart/UCM/archive/master.zip" > /dev/null 2>&1
sudo unzip master.zip > /dev/null 2>&1
sudo rm -f master.zip
echo "$0: Installing UCM files ..."
sudo mkdir -p /usr/share/alsa/ucm
sudo cp -rf UCM-master/* /usr/share/alsa/ucm
sudo cp /usr/share/alsa/ucm/bytcr-rt5651/asound.state /var/lib/alsa
sudo rm -rf UCM-master
sudo mkdir /usr/share/alsa/ucm/bytcht-es8316
sudo wget --timeout=10 "https://github.com/kernins/linux-chwhi12/raw/master/configs/audio/ucm/bytcht-es8316/HiFi" -O /usr/share/alsa/ucm/bytcht-es8316/HiFi > /dev/null 2>&1
sudo wget --timeout=10 "https://github.com/kernins/linux-chwhi12/raw/master/configs/audio/ucm/bytcht-es8316/bytcht-es8316.conf" -O /usr/share/alsa/ucm/bytcht-es8316/bytcht-es8316.conf > /dev/null 2>&1
# add HdmiLpeAudio.conf
sed '1,/^exit$/d' < ../$0 | base64 -d | sudo tee $0.zip > /dev/null 2>&1
sudo unzip $0.zip > /dev/null 2>&1
sudo rm -f $0.zip
sudo mkdir -p /usr/share/alsa/cards
sudo cp HdmiLpeAudio.conf /usr/share/alsa/cards
cd ..
sudo rm -rf UCM
[ ${PURGE_UNZIP} ] && sudo apt -y purge unzip > /dev/null 2>&1
echo "$0: Installation of UCM files finished "
exit
UEsDBBQAAAAIAGJSfUqJc4xwrgEAAI8EAAARABwASGRtaUxwZUF1ZGlvLmNvbmZVVAkAA2jv2lho
79pYdXgLAAEEAAAAAAQAAAAAnVPbSsNAEH3OfsXQ5k1I76AiYmkLFhSKgi9SZE0maXCTDZvd1iL+
u3vpxdgaiy9LZs5c9pw9aZImjHgep4kSVKY8h5gLkAuEaS6Rwe34ftoaz+BuNgGqopSTJiFXoe6I
UnFZhFkrFjyXgclcE3IbZeldgUNTGWg0cGgbPoh3Q0VSwjOMhg9jmG/iwEYa9eS6QCilSPOEeJ9k
E/NYLjkjXsnoEs3Efe1ipb9CKiLwzRDbpK8hBWe2KKcZQmM2uocZo+tXGr7BE2cqw8ZB3yfRMkQY
U8UkrFK5AM3j/Wy7/YDVtvSfrAqmkqOUdnR/gN5NrPIQNLuQShO7iWZvw9z0suG4mAuYLRUd6oWo
KGF6rRqVFy6VEFzlUb+9eeajaLdTh/Zr0UHt5MG2twovNPNffWfBQ9sNJ49tc3TM0TVH74RHc7Dt
3cGp/j0SFFW88wfe/QPvHced3Tl/K0/+EWx18O2+oWQvyDDTIyz44mQxDrAm8cxCEdMQQTvFZpxv
ppPRxeB8b52x8771jse4zkih0EaFwBLFEveZJWUKtfi+Fc+3EvlWCH+rvTPs3BnvC1BLAQIeAxQA
AAAIAGJSfUqJc4xwrgEAAI8EAAARABgAAAAAAAEAAACkgQAAAABIZG1pTHBlQXVkaW8uY29uZlVU
BQADaO/aWHV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAFcAAAD5AQAAAAA=
Dernière modification par xubu1957 (Le 22/03/2019, à 14:22)
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
Hors ligne
#4 Le 22/03/2019, à 12:42
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Arf, j'ai encore merdé lol.
Voila le retour de la commande :
ben@ben-Selecline-notebook-10-1:~$ dmesg | grep 8316
ben@ben-Selecline-notebook-10-1:~$
Le fait d'avoir télécharger les mauvais drivers et codecs peut-il être rétroactif ?
Sinon, au pire, je réinstalle de nouveau, je suis plus à ça près.
Dans tous les cas, je ne touche plus à rien.
Hors ligne
#5 Le 22/03/2019, à 13:06
- xubu1957
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Fais voir :
lsmod | sort
Commande rectifiée (classement alphabétique des modules)
Dernière modification par xubu1957 (Le 22/03/2019, à 13:12)
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
Hors ligne
#6 Le 22/03/2019, à 13:49
- diesel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Donne nous le retour de
sudo lshw -C multimedia
Amicalement.
Jean-Marie
Je déteste qu'on cherche à me faire passer pour un con, j'y arrive déjà très bien tout seul.
Le mort, il sait pas qu'il est mort ; c'est pour les autres que c'est dur.................... Pour les cons, c'est pareil.
Hors ligne
#7 Le 22/03/2019, à 14:17
- Nuliel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonjour,
@xubu: tu as des balises url en trop dans ton post 3 . Sinon ça se tente.
Hors ligne
#8 Le 22/03/2019, à 14:24
- xubu1957
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
@Nuliel
J'avais fait un copier coller drive.google.com/file/d/0B99O3A0dDe67VUNMV2xfVjJKeVk/edit, et les balises url ont été générées !
J'ai rectifié au #3.
Merci.
Dernière modification par xubu1957 (Le 05/03/2022, à 16:32)
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
Hors ligne
#9 Le 22/03/2019, à 14:59
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Voilà les retours :
ben@ben-Selecline-notebook-10-1:~$ lsmod | sort
8250_dw 20480 0
ac97_bus 16384 1 snd_soc_core
acpi_pad 180224 0
acpi_thermal_rel 16384 1 int3400_thermal
aesni_intel 200704 0
aes_x86_64 20480 1 aesni_intel
autofs4 45056 2
axp20x 28672 1 axp20x_i2c
axp20x_i2c 16384 0
axp20x_pek 16384 0
axp288_adc 16384 0
axp288_charger 24576 0
axp288_fuel_gauge 28672 0
cfg80211 655360 1 r8723bs
coretemp 20480 0
crc32_pclmul 16384 0
crct10dif_pclmul 16384 1
cryptd 24576 3 crypto_simd,ghash_clmulni_intel,aesni_intel
crypto_simd 16384 1 aesni_intel
dptf_power 16384 0
drm 471040 9 drm_kms_helper,i915
drm_kms_helper 172032 1 i915
dw_dmac 16384 0
dw_dmac_core 28672 1 dw_dmac
extcon_axp288 20480 0
fb_sys_fops 16384 1 drm_kms_helper
ghash_clmulni_intel 16384 0
glue_helper 16384 1 aesni_intel
gpio_keys 20480 0
hid 135168 2 usbhid,hid_generic
hid_generic 16384 0
i2c_algo_bit 16384 1 i915
i915 1765376 8
industrialio 73728 2 axp288_adc,axp288_fuel_gauge
input_leds 16384 0
int3400_thermal 20480 0
int3403_thermal 16384 0
int3406_thermal 16384 0
int340x_thermal_zone 16384 2 int3403_thermal,processor_thermal_device
intel_cstate 20480 0
intel_int0002_vgpio 16384 1
intel_powerclamp 20480 0
intel_rapl 24576 0
intel_soc_dts_iosf 20480 2 intel_soc_dts_thermal,processor_thermal_device
intel_soc_dts_thermal 20480 0
ip_tables 32768 0
irqbypass 16384 1 kvm
joydev 24576 0
kvm 626688 2 kvmgt,kvm_intel
kvmgt 28672 0
kvm_intel 212992 0
lp 20480 0
lpc_ich 24576 0
mac_hid 16384 0
mdev 24576 2 kvmgt,vfio_mdev
media 53248 4 videodev,videobuf2_v4l2,uvcvideo,videobuf2_common
mei 102400 1 mei_txe
mei_txe 24576 0
mmc_block 49152 3
Module Size Used by
nls_iso8859_1 16384 1
parport 53248 3 parport_pc,lp,ppdev
parport_pc 36864 0
ppdev 24576 0
processor_thermal_device 16384 0
punit_atom_debug 16384 0
pwm_lpss 16384 2 pwm_lpss_platform
pwm_lpss_platform 16384 0
r8723bs 602112 0
roles 16384 1 extcon_axp288
sch_fq_codel 20480 5
sdhci 57344 1 sdhci_acpi
sdhci_acpi 24576 0
snd 81920 8 snd_timer,snd_compress,snd_hdmi_lpe_audio,snd_soc_sst_atom_hifi2_platform,snd_soc_core,snd_pcm
snd_compress 24576 1 snd_soc_core
snd_hdmi_lpe_audio 28672 1
snd_intel_sst_acpi 20480 0
snd_intel_sst_core 53248 1 snd_intel_sst_acpi
snd_pcm 102400 5 snd_hdmi_lpe_audio,snd_soc_sst_atom_hifi2_platform,snd_soc_core,snd_soc_es8316,snd_pcm_dmaengine
snd_pcm_dmaengine 16384 1 snd_soc_core
snd_soc_acpi 16384 2 snd_soc_acpi_intel_match,snd_intel_sst_acpi
snd_soc_acpi_intel_match 24576 1 snd_intel_sst_acpi
snd_soc_core 233472 2 snd_soc_sst_atom_hifi2_platform,snd_soc_es8316
snd_soc_es8316 40960 0
snd_soc_sst_atom_hifi2_platform 102400 1 snd_intel_sst_core
snd_timer 36864 1 snd_pcm
soc_button_array 20480 0
soundcore 16384 1 snd
syscopyarea 16384 1 drm_kms_helper
sysfillrect 16384 1 drm_kms_helper
sysimgblt 16384 1 drm_kms_helper
usbhid 53248 0
uvcvideo 94208 0
vfio 32768 3 kvmgt,vfio_mdev,vfio_iommu_type1
vfio_iommu_type1 28672 0
vfio_mdev 16384 0
video 49152 2 int3406_thermal,i915
videobuf2_common 45056 2 videobuf2_v4l2,uvcvideo
videobuf2_memops 20480 1 videobuf2_vmalloc
videobuf2_v4l2 24576 1 uvcvideo
videobuf2_vmalloc 20480 1 uvcvideo
videodev 200704 3 videobuf2_v4l2,uvcvideo,videobuf2_common
x_tables 40960 1 ip_tables
ben@ben-Selecline-notebook-10-1:~$
ben@ben-Selecline-notebook-10-1:~$ sudo lshw -C multimedia
[sudo] Mot de passe de ben :
*-usb:0
description: Vidéo
produit: VGA Webcam
fabriquant: Alcor Micro, Corp.
identifiant matériel: 2
information bus: usb@1:2.2
version: 0.01
fonctionnalités: usb-2.00
configuration: driver=uvcvideo maxpower=200mA speed=480Mbit/s
ben@ben-Selecline-notebook-10-1:~$
Hors ligne
#10 Le 23/03/2019, à 12:04
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonjour,
Je reviens vers vous pour savoir si quelqu'un a une piste ?
Dois-je lancer les instructions de : drive.google.com/file/d/0B99O3A0dDe67VU … eVk/edit,,?
Dernière modification par kalimeth (Le 23/03/2019, à 12:05)
Hors ligne
#11 Le 23/03/2019, à 12:16
- Nuliel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
J'avais pas vu la fin, je vais proposer un script plus propre.
sudo apt install unzip
wget --timeout=10 "https://github.com/plbossart/UCM/archive/master.zip"
unzip master.zip
rm master.zip
sudo mkdir -p /usr/share/alsa/ucm
sudo cp -rf UCM-master/* /usr/share/alsa/ucm
sudo cp /usr/share/alsa/ucm/bytcr-rt5651/asound.state /var/lib/alsa # pas sur de l'interet de cette commande
rm -rf UCM-master
sudo mkdir /usr/share/alsa/ucm/bytcht-es8316
sudo wget --timeout=10 "https://github.com/kernins/linux-chwhi12/raw/master/configs/audio/ucm/bytcht-es8316/HiFi" -O /usr/share/alsa/ucm/bytcht-es8316/HiFi > /dev/null 2>&1
sudo wget --timeout=10 "https://github.com/kernins/linux-chwhi12/raw/master/configs/audio/ucm/bytcht-es8316/bytcht-es8316.conf" -O /usr/share/alsa/ucm/bytcht-es8316/bytcht-es8316.conf > /dev/null 2>&1
La fin du script est vraiment dégueulasse, faut que je comprenne le code en base64 avant
C'est bon j'ai compris, c'est un fichier mis en archive zip qui a été encodé en base64. Le code
#
# Configuration for the Intel HDMI/DP LPE audio
#
<confdir:pcm/front.conf>
HdmiLpeAudio.pcm.front.0 {
@args [ CARD ]
@args.CARD {
type string
}
type softvol
slave.pcm {
type hw
card $CARD
}
control {
name "PCM Playback Volume"
card $CARD
}
}
# default with dmix+softvol
HdmiLpeAudio.pcm.default {
@args [ CARD ]
@args.CARD {
type string
}
type plug
slave.pcm {
type softvol
slave.pcm {
@func concat
strings [ "dmix:" $CARD ]
}
control {
name "PCM Playback Volume"
card $CARD
}
}
}
<confdir:pcm/surround40.conf>
<confdir:pcm/surround21.conf>
<confdir:pcm/surround41.conf>
<confdir:pcm/surround50.conf>
<confdir:pcm/surround51.conf>
<confdir:pcm/hdmi.conf>
HdmiLpeAudio.pcm.hdmi.0 {
@args [ CARD AES0 AES1 AES2 AES3 ]
@args.CARD {
type string
}
@args.AES0 {
type integer
}
@args.AES1 {
type integer
}
@args.AES2 {
type integer
}
@args.AES3 {
type integer
}
type hooks
slave.pcm {
type hw
card $CARD
}
hooks.0 {
type ctl_elems
hook_args [
{
interface PCM
name "IEC958 Playback Default"
lock true
preserve true
value [ $AES0 $AES1 $AES2 $AES3 ]
}
]
}
}
En gros tu peux tenter les commandes que je propose en donnant le retour, tu peux zapper pour l'instant la commande dont je vois pas l'intérêt, et une fois que c'est fait tu redémarres et tu testes.
Dernière modification par Nuliel (Le 23/03/2019, à 12:32)
Hors ligne
#12 Le 23/03/2019, à 14:10
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
J'ai donc fait :
en@ben-Selecline-notebook-10-1:~$ sudo apt install unzip
[sudo] Mot de passe de ben :
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
unzip est déjà la version la plus récente (6.0-21ubuntu1).
Le paquet suivant a été installé automatiquement et n'est plus nécessaire :
libllvm6.0
Veuillez utiliser « sudo apt autoremove » pour le supprimer.
0 mis à jour, 0 nouvellement installés, 0 à enlever et 0 non mis à jour.
ben@ben-Selecline-notebook-10-1:~$
ben@ben-Selecline-notebook-10-1:~$ wget --timeout=10 "https://github.com/plbossart/UCM/archive/master.zip"
--2019-03-23 14:01:44-- https://github.com/plbossart/UCM/archive/master.zip
Résolution de github.com (github.com)… 140.82.118.4, 140.82.118.3
Connexion à github.com (github.com)|140.82.118.4|:443… connecté.
requête HTTP transmise, en attente de la réponse… 302 Found
Emplacement : https://codeload.github.com/plbossart/UCM/zip/master [suivant]
--2019-03-23 14:01:44-- https://codeload.github.com/plbossart/UCM/zip/master
Résolution de codeload.github.com (codeload.github.com)… 192.30.253.120, 192.30.253.121
Connexion à codeload.github.com (codeload.github.com)|192.30.253.120|:443… connecté.
requête HTTP transmise, en attente de la réponse… 200 OK
Taille : non indiqué [application/zip]
Enregistre : «master.zip»
master.zip [ <=> ] 38,55K 165KB/s ds 0,2s
2019-03-23 14:01:45 (165 KB/s) - «master.zip» enregistré [39474]
ben@ben-Selecline-notebook-10-1:~$
ben@ben-Selecline-notebook-10-1:~$ unzip master.zip
Archive: master.zip
7eaea9902a70a8878fb33fd37237ea71c199ddb0
creating: UCM-master/
creating: UCM-master/byt-max98090/
inflating: UCM-master/byt-max98090/HiFi.conf
inflating: UCM-master/byt-max98090/byt-max98090.conf
inflating: UCM-master/byt-max98090/orco-bytmax98090.state
creating: UCM-master/byt-rt5640/
inflating: UCM-master/byt-rt5640/HiFi
inflating: UCM-master/byt-rt5640/README
inflating: UCM-master/byt-rt5640/byt-rt5640.conf
creating: UCM-master/bytcht-da7213/
inflating: UCM-master/bytcht-da7213/HiFi
inflating: UCM-master/bytcht-da7213/README
inflating: UCM-master/bytcht-da7213/bytcht-da7213.conf
creating: UCM-master/bytcht-nocodec/
inflating: UCM-master/bytcht-nocodec/HiFi
inflating: UCM-master/bytcht-nocodec/README
inflating: UCM-master/bytcht-nocodec/bytcht-nocodec.conf
creating: UCM-master/bytcht-pcm512x/
inflating: UCM-master/bytcht-pcm512x/HiFi
inflating: UCM-master/bytcht-pcm512x/README
inflating: UCM-master/bytcht-pcm512x/bytcht-pcm512x.conf
creating: UCM-master/bytcr-rt5640/
inflating: UCM-master/bytcr-rt5640/HiFi
inflating: UCM-master/bytcr-rt5640/README
inflating: UCM-master/bytcr-rt5640/bytcr-rt5640.conf
creating: UCM-master/bytcr-rt5651/
inflating: UCM-master/bytcr-rt5651/HiFi.conf
inflating: UCM-master/bytcr-rt5651/README
inflating: UCM-master/bytcr-rt5651/asound.state
inflating: UCM-master/bytcr-rt5651/bytcr-rt5651.conf
creating: UCM-master/cht-bsw-rt5672/
inflating: UCM-master/cht-bsw-rt5672/HiFi
inflating: UCM-master/cht-bsw-rt5672/cht-bsw-rt5672.conf
creating: UCM-master/chtmax98090/
inflating: UCM-master/chtmax98090/HiFi.conf
inflating: UCM-master/chtmax98090/chtmax98090.conf
creating: UCM-master/chtnau8824/
inflating: UCM-master/chtnau8824/HiFi.conf
inflating: UCM-master/chtnau8824/chtnau8824.conf
creating: UCM-master/chtrt5645/
inflating: UCM-master/chtrt5645/HiFi.conf
inflating: UCM-master/chtrt5645/chtrt5645.conf
creating: UCM-master/skl_hda_card/
inflating: UCM-master/skl_hda_card/HiFi
inflating: UCM-master/skl_hda_card/skl_hda_card.conf
creating: UCM-master/sof-bxt-pcm512x/
inflating: UCM-master/sof-bxt-pcm512x/HiFi
inflating: UCM-master/sof-bxt-pcm512x/README
inflating: UCM-master/sof-bxt-pcm512x/sof-bxt-pcm512x.conf
creating: UCM-master/sof-bxtda7219max/
inflating: UCM-master/sof-bxtda7219max/HiFi.conf
inflating: UCM-master/sof-bxtda7219max/sof-bxtda7219max.conf
creating: UCM-master/sof-bytcht-da7213/
inflating: UCM-master/sof-bytcht-da7213/HiFi
inflating: UCM-master/sof-bytcht-da7213/README
inflating: UCM-master/sof-bytcht-da7213/sof-bytcht-da7213.conf
creating: UCM-master/sof-bytcr-rt5640/
inflating: UCM-master/sof-bytcr-rt5640/HiFi
inflating: UCM-master/sof-bytcr-rt5640/README
inflating: UCM-master/sof-bytcr-rt5640/sof-bytcr-rt5640.conf
creating: UCM-master/sof-bytcr-rt5651/
inflating: UCM-master/sof-bytcr-rt5651/HiFi.conf
inflating: UCM-master/sof-bytcr-rt5651/sof-bytcr-rt5651.conf
creating: UCM-master/sof-cht-bsw-rt5672/
inflating: UCM-master/sof-cht-bsw-rt5672/HiFi
inflating: UCM-master/sof-cht-bsw-rt5672/sof-cht-bsw-rt5672.conf
creating: UCM-master/sof-chtmax98090/
inflating: UCM-master/sof-chtmax98090/HiFi.conf
inflating: UCM-master/sof-chtmax98090/sof-chtmax98090.conf
creating: UCM-master/sof-chtrt5645/
inflating: UCM-master/sof-chtrt5645/HiFi.conf
inflating: UCM-master/sof-chtrt5645/sof-chtrt5645.conf
ben@ben-Selecline-notebook-10-1:~$
ben@ben-Selecline-notebook-10-1:~$ rm master.zip
ben@ben-Selecline-notebook-10-1:~$ sudo mkdir -p /usr/share/alsa/ucm
[sudo] Mot de passe de ben :
ben@ben-Selecline-notebook-10-1:~$ sudo cp -rf UCM-master/* /usr/share/alsa/ucm
ben@ben-Selecline-notebook-10-1:~$ rm -rf UCM-master
ben@ben-Selecline-notebook-10-1:~$ sudo mkdir /usr/share/alsa/ucm/bytcht-es8316
ben@ben-Selecline-notebook-10-1:~$ sudo wget --timeout=10 "https://github.com/kernins/linux-chwhi12/raw/master/configs/audio/ucm/bytcht-es8316/HiFi" -O /usr/share/alsa/ucm/bytcht-es8316/HiFi > /dev/null 2>&1
ben@ben-Selecline-notebook-10-1:~$ sudo wget --timeout=10 "https://github.com/kernins/linux-chwhi12/raw/master/configs/audio/ucm/bytcht-es8316/bytcht-es8316.conf" -O /usr/share/alsa/ucm/bytcht-es8316/bytcht-es8316.conf > /dev/null 2>&1
ben@ben-Selecline-notebook-10-1:~$
Après un redémarrage, le son n'est toujours pas là.
Du coup, j'ai recommencé en ajoutant la commande dont tu n'es pas sûr mais c'est pas mieux.
Hors ligne
#13 Le 23/03/2019, à 15:02
- Nuliel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bon, tu peux faire
echo "blacklist snd_hdmi_lpe_audio" | sudo tee /etc/modprobe.d/blacklist_hdmi.conf
redémarrer et tester
Hors ligne
#14 Le 23/03/2019, à 15:08
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
ben@ben-Selecline-notebook-10-1:~$ echo "blacklist snd_hdmi_lpe_audio" | sudo tee /etc/modprobe.d/blacklist_hdmi.conf
[sudo] Mot de passe de ben :
blacklist snd_hdmi_lpe_audio
ben@ben-Selecline-notebook-10-1:~$
Après redémarrage, le son n'est toujours pas là.
Juste pour ma culture personnelle, le fait de blacklister, ça sert à désactiver un fichier sans le supprimer, comme une inhibition, c'est ça ?
Dernière modification par kalimeth (Le 23/03/2019, à 15:13)
Hors ligne
#15 Le 23/03/2019, à 15:33
- Nuliel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
blacklister snd_hdmi_lpe_audio empêche un chargement automatique du module permettant d'envoyer du son via la prise hdmi, qui bloque dans très peu de cas le son des hauts parleurs.
Tu peux copier le contenu de
#
# Configuration for the Intel HDMI/DP LPE audio
#
<confdir:pcm/front.conf>
HdmiLpeAudio.pcm.front.0 {
@args [ CARD ]
@args.CARD {
type string
}
type softvol
slave.pcm {
type hw
card $CARD
}
control {
name "PCM Playback Volume"
card $CARD
}
}
# default with dmix+softvol
HdmiLpeAudio.pcm.default {
@args [ CARD ]
@args.CARD {
type string
}
type plug
slave.pcm {
type softvol
slave.pcm {
@func concat
strings [ "dmix:" $CARD ]
}
control {
name "PCM Playback Volume"
card $CARD
}
}
}
<confdir:pcm/surround40.conf>
<confdir:pcm/surround21.conf>
<confdir:pcm/surround41.conf>
<confdir:pcm/surround50.conf>
<confdir:pcm/surround51.conf>
<confdir:pcm/hdmi.conf>
HdmiLpeAudio.pcm.hdmi.0 {
@args [ CARD AES0 AES1 AES2 AES3 ]
@args.CARD {
type string
}
@args.AES0 {
type integer
}
@args.AES1 {
type integer
}
@args.AES2 {
type integer
}
@args.AES3 {
type integer
}
type hooks
slave.pcm {
type hw
card $CARD
}
hooks.0 {
type ctl_elems
hook_args [
{
interface PCM
name "IEC958 Playback Default"
lock true
preserve true
value [ $AES0 $AES1 $AES2 $AES3 ]
}
]
}
}
le mettre dans un fichier nommé HdmiLpeAudio.conf dans ton dossier personnel puis faire
sudo mkdir -p /usr/share/alsa/cards
sudo cp HdmiLpeAudio.conf /usr/share/alsa/cards
redémarrer et tester.
Hors ligne
#16 Le 23/03/2019, à 19:17
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonsoir,
Je viens de faire tes manips malgré ça, le son ne fonctionne toujours pas.
En revanche, j'ai essayer de lancer alsamixer (qui se lancer avant) et il ne veut plus.
D'ailleurs, il ne trouve plus de carte son :
ben@ben-Selecline-notebook-10-1:~$ alsamixer
le mixeur ne peut pas être ouvert: Aucun fichier ou dossier de ce type
ben@ben-Selecline-notebook-10-1:~$ cat /proc/asound/pcm
ben@ben-Selecline-notebook-10-1:~$ cat /proc/asound/cards
--- no soundcards ---
Hors ligne
#17 Le 23/03/2019, à 23:46
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Suis-je dans la même situation que 321guyver sur ce topic ?
https://forum.ubuntu-fr.org/viewtopic.p … 026142&p=4
Et dans ce cas, faut-il que j'essaie d'installer un ubuntu 16.04 ?
Au détour de mes pérégrinations sur le web, j'ai découvert cette instruction:
sudo ubuntu-drivers autoinstall
Ca peut donner quelque chose ?
Dernière modification par kalimeth (Le 23/03/2019, à 23:56)
Hors ligne
#18 Le 24/03/2019, à 09:12
- Nuliel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Arf, j'avais écrit un message mais il est pas parti. C'est normal qu'il n'y ait plus de carte son, on a blacklisté le son en sortie hdmi.
Je vais continuer de chercher après.
Ta commande ne devrait pas aider dans ce cas ci
Hors ligne
#19 Le 27/03/2019, à 20:29
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonsoir, je suis tombe sur ce lien, ca a une chance de fonctionner?
https://ubuntuforums.org/showthread.php … st13797939
Hors ligne
#20 Le 27/03/2019, à 20:40
- Nuliel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Que donne
dmesg | grep 8316
Hors ligne
#21 Le 27/03/2019, à 20:48
- xubu1957
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonsoir,
Le lien au #19 (je l'avais indiqué au post #3).
Dernière modification par xubu1957 (Le 27/03/2019, à 20:52)
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
Hors ligne
#22 Le 27/03/2019, à 21:15
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonsoir, voici les réponses:
ben@ben-Selecline-notebook-10-1:~$ dmesg | grep 8316
ben@ben-Selecline-notebook-10-1:~$
Mince, désolé xubu1957, j'ai l"impression qu'en fait, on fait assez vite le tour des posts concernant ce sujet sur le net
Hors ligne
#23 Le 27/03/2019, à 21:18
- xubu1957
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
J'avais pris l'habitude de chercher pour les cartes Wi-Fi, mais pour ces pilotes audio, spécifiques aux tablettes, les discussions sont rares.
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
Hors ligne
#24 Le 27/03/2019, à 21:20
- Nuliel
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
les discussions sont rares.
car c'est très compliqué! Manipuler l'état de GPIO ne devrait pas être à faire par l'utilisateur
Hors ligne
#25 Le 29/03/2019, à 00:14
- kalimeth
Re : Problème de son avec Lubuntu sur AUCHAN SELECLINE 10,1
Bonsoir,
Pas super rassurant vos messages.
Du coup, je garde un peu d'espoir quand même ???
Dernière modification par kalimeth (Le 29/03/2019, à 00:14)
Hors ligne