Sound is using exclusively max volume or mute. When plugging in audio in headphone jack popping noises in the...
I'm using an Asus Zenbook with Intel integrated audio. The audio volume is always maxed out and the only way to lower it is to use mute. When I plug a sound cable into the audio output all I can hear is popping noises. I think it must be some driver problem because when I use the computer with Windows 10 the audio works. Also there is no problem when using bluetooth headphones. How can I install the right drivers or configure pulseaudio etc. to work properly?
drivers sound pulseaudio alsa headphones
add a comment |
I'm using an Asus Zenbook with Intel integrated audio. The audio volume is always maxed out and the only way to lower it is to use mute. When I plug a sound cable into the audio output all I can hear is popping noises. I think it must be some driver problem because when I use the computer with Windows 10 the audio works. Also there is no problem when using bluetooth headphones. How can I install the right drivers or configure pulseaudio etc. to work properly?
drivers sound pulseaudio alsa headphones
add a comment |
I'm using an Asus Zenbook with Intel integrated audio. The audio volume is always maxed out and the only way to lower it is to use mute. When I plug a sound cable into the audio output all I can hear is popping noises. I think it must be some driver problem because when I use the computer with Windows 10 the audio works. Also there is no problem when using bluetooth headphones. How can I install the right drivers or configure pulseaudio etc. to work properly?
drivers sound pulseaudio alsa headphones
I'm using an Asus Zenbook with Intel integrated audio. The audio volume is always maxed out and the only way to lower it is to use mute. When I plug a sound cable into the audio output all I can hear is popping noises. I think it must be some driver problem because when I use the computer with Windows 10 the audio works. Also there is no problem when using bluetooth headphones. How can I install the right drivers or configure pulseaudio etc. to work properly?
drivers sound pulseaudio alsa headphones
drivers sound pulseaudio alsa headphones
asked Apr 18 '18 at 13:08
ChristofferABChristofferAB
12
12
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I also have a ZenBook and had the same problem.
By running alsamixer in the terminal, I noticed that my actual sound volume was depending on the PCM value, not the Master value. You can use the arrow keys on your keyboard to change the values in the mixer while playing music or something. If the situation is the same for you, this should be your solution:
Open the terminal (CTRL+ALT+T) and run:
sudo nano /usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common
Use the arrow keys on the keyboard to navigate down to this section:
[Element PCM]
switch = mute
volume = merge
override-map.1 = all
override-map.2 = all-left,all-right
...and add these lines before it:
[Element Master]
switch = mute
volume = ignore
Use CTRL+X to exit, say yes to save the changes and ENTER without changing the file name.
With the AlsaMixer, you can set the master value to 0, reboot your computer, and the volume keys and other controls should work fine now.
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026107%2fsound-is-using-exclusively-max-volume-or-mute-when-plugging-in-audio-in-headpho%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I also have a ZenBook and had the same problem.
By running alsamixer in the terminal, I noticed that my actual sound volume was depending on the PCM value, not the Master value. You can use the arrow keys on your keyboard to change the values in the mixer while playing music or something. If the situation is the same for you, this should be your solution:
Open the terminal (CTRL+ALT+T) and run:
sudo nano /usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common
Use the arrow keys on the keyboard to navigate down to this section:
[Element PCM]
switch = mute
volume = merge
override-map.1 = all
override-map.2 = all-left,all-right
...and add these lines before it:
[Element Master]
switch = mute
volume = ignore
Use CTRL+X to exit, say yes to save the changes and ENTER without changing the file name.
With the AlsaMixer, you can set the master value to 0, reboot your computer, and the volume keys and other controls should work fine now.
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I also have a ZenBook and had the same problem.
By running alsamixer in the terminal, I noticed that my actual sound volume was depending on the PCM value, not the Master value. You can use the arrow keys on your keyboard to change the values in the mixer while playing music or something. If the situation is the same for you, this should be your solution:
Open the terminal (CTRL+ALT+T) and run:
sudo nano /usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common
Use the arrow keys on the keyboard to navigate down to this section:
[Element PCM]
switch = mute
volume = merge
override-map.1 = all
override-map.2 = all-left,all-right
...and add these lines before it:
[Element Master]
switch = mute
volume = ignore
Use CTRL+X to exit, say yes to save the changes and ENTER without changing the file name.
With the AlsaMixer, you can set the master value to 0, reboot your computer, and the volume keys and other controls should work fine now.
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I also have a ZenBook and had the same problem.
By running alsamixer in the terminal, I noticed that my actual sound volume was depending on the PCM value, not the Master value. You can use the arrow keys on your keyboard to change the values in the mixer while playing music or something. If the situation is the same for you, this should be your solution:
Open the terminal (CTRL+ALT+T) and run:
sudo nano /usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common
Use the arrow keys on the keyboard to navigate down to this section:
[Element PCM]
switch = mute
volume = merge
override-map.1 = all
override-map.2 = all-left,all-right
...and add these lines before it:
[Element Master]
switch = mute
volume = ignore
Use CTRL+X to exit, say yes to save the changes and ENTER without changing the file name.
With the AlsaMixer, you can set the master value to 0, reboot your computer, and the volume keys and other controls should work fine now.
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I also have a ZenBook and had the same problem.
By running alsamixer in the terminal, I noticed that my actual sound volume was depending on the PCM value, not the Master value. You can use the arrow keys on your keyboard to change the values in the mixer while playing music or something. If the situation is the same for you, this should be your solution:
Open the terminal (CTRL+ALT+T) and run:
sudo nano /usr/share/pulseaudio/alsa-mixer/paths/analog-output.conf.common
Use the arrow keys on the keyboard to navigate down to this section:
[Element PCM]
switch = mute
volume = merge
override-map.1 = all
override-map.2 = all-left,all-right
...and add these lines before it:
[Element Master]
switch = mute
volume = ignore
Use CTRL+X to exit, say yes to save the changes and ENTER without changing the file name.
With the AlsaMixer, you can set the master value to 0, reboot your computer, and the volume keys and other controls should work fine now.
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 5 hours ago
derfreddiederfreddie
1
1
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
derfreddie is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1026107%2fsound-is-using-exclusively-max-volume-or-mute-when-plugging-in-audio-in-headpho%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown