sachant qu'il semble s'exécuter au démarrage de ma session le script systemd "alsa-restore.service" qui, il me semble, doit réinitialiser les périphériques audio comme il se sont éteint au précédent arrêt de l'ordi.
le fichier correspond à alsa-restore.service se trouve ici :
/lib/systemd/system/alsa-restore.service
et contient ces lignes:
#
# Note that two different ALSA card state management schemes exist and they
# can be switched using a file exist check - /etc/alsa/state-daemon.conf .
#
[Unit]
Description=Save/Restore Sound Card State
Documentation=man:alsactl(1)
ConditionPathExists=!/etc/alsa/state-daemon.conf
ConditionPathExistsGlob=/dev/snd/control*
After=alsa-state.service
[Service]
Type=oneshot
RemainAfterExit=true
ExecStartPre=/bin/mkdir -p /run/alsa
ExecStart=-/usr/sbin/alsactl -E HOME=/run/alsa -E XDG_RUNTIME_DIR=/run/alsa/runtime restore
ExecStop=-/usr/sbin/alsactl -E HOME=/run/alsa -E XDG_RUNTIME_DIR=/run/alsa/runtime store