Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.misc > #55854

Re: Audio lost after a reboot, until speaker cable is removed and reinserted

From Fritz Wuehler <fritz@spamexpire-202404.rodent.frell.theremailer.net>
Subject Re: Audio lost after a reboot, until speaker cable is removed and reinserted
References <1114f9df059aed93a2901c15c70fa4c6@www.novabbs.com>
Message-ID <f24225b68727cadf45322a504bb0e374@msgid.frell.theremailer.net> (permalink)
Date 2024-04-09 20:16 +0200
Newsgroups comp.os.linux.misc
Organization dizum.com - The Internet Problem Provider

Show all headers | View raw


tinker123 <tinker...@gmail.com> [t]:
t> I lose audio after rebooting my computer. It comes back if I remove
t> my speaker cable from the jack ( in the computer, not the monitor )
t> and reinsert it.


Post the output of the following commands:


# list available and default audio output (pseudo)devices
LANG=C pactl list short sources 2>&1 | grep output
echo
LANG=C pactl info | grep -e '^Default Sink'| sed 's@\(.\{60\}\).*@\1@'
               # Is the default output device the one you think it is?

# check the volume of the default audio output device; is it muted?
env LANG=C pactl list sinks | awk '/^Sink/||/Volume:/'




Depending on what the output of the above commands is you may need to
(re)define the default audio output device and/or change its volume setting.

# select default audio device
env LANG=C pactl list short sinks 2>&1 | grep output | sed 's@\(.\{60\}\).*@\1@'
read -p "Select default output device: "  # enter the index number
[ ! -z "$REPLY" ] && pacmd set-default-sink "$REPLY"

# change volume setting
PA_sink='<some (pseudo)device from the list above>' # full name, not just the index number
env LANG=C pactl set-sink-volume $PA_sink 70%



If the problem is gone, insert the appropriate commands in some
user/terminal session startup file.

Back to comp.os.linux.misc | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Audio lost after a reboot, until speaker cable is removed and reinserted tinker123@gmail.com (tinker123) - 2024-04-09 12:55 +0000
  Re: Audio lost after a reboot, until speaker cable is removed and reinserted Marco Moock <mm+usenet-es@dorfdsl.de> - 2024-04-09 15:06 +0200
  Re: Audio lost after a reboot, until speaker cable is removed and reinserted "Carlos E.R." <robin_listas@es.invalid> - 2024-04-09 15:17 +0200
    Re: Audio lost after a reboot, until speaker cable is removed and reinserted tinker123@gmail.com (tinker123) - 2024-04-09 13:30 +0000
  Re: Audio lost after a reboot, until speaker cable is removed  and  reinserted Fritz Wuehler <fritz@spamexpire-202404.rodent.frell.theremailer.net> - 2024-04-09 20:16 +0200
  Re: Audio lost after a reboot, until speaker cable is removed and reinserted tinker123 <tinker123@gmail.com> - 2024-04-28 19:18 +0000
    Re: Audio lost after a reboot, until speaker cable is removed and reinserted Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-29 00:09 +0000

csiph-web