How can I completely disable internal Mic and Webcam
I want to disable the internal Microphone on my laptop and the internal Webcam completely that they're no longer selectable, and no longer available?
I will only use my external Webcam, and my external (USB) headset.
The internal audio should still be available for playback.
12.04 webcam acer microphone aspire
add a comment |
I want to disable the internal Microphone on my laptop and the internal Webcam completely that they're no longer selectable, and no longer available?
I will only use my external Webcam, and my external (USB) headset.
The internal audio should still be available for playback.
12.04 webcam acer microphone aspire
add a comment |
I want to disable the internal Microphone on my laptop and the internal Webcam completely that they're no longer selectable, and no longer available?
I will only use my external Webcam, and my external (USB) headset.
The internal audio should still be available for playback.
12.04 webcam acer microphone aspire
I want to disable the internal Microphone on my laptop and the internal Webcam completely that they're no longer selectable, and no longer available?
I will only use my external Webcam, and my external (USB) headset.
The internal audio should still be available for playback.
12.04 webcam acer microphone aspire
12.04 webcam acer microphone aspire
edited Jun 29 '12 at 7:32
Takkat
108k35249377
108k35249377
asked Jun 5 '12 at 6:45
lupopalupopa
2111413
2111413
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Blacklist drivers
In both cases kernel drivers may be loaded for both, the internal sound card, and the webcam to be recognized by Ubuntu. We can find out which drivers are loaded by the following command in a terminal:
lsmod
From this list we can see which of these kernel modules may be responsible for our (specific) hardware (e.g. an Intel sound card may need the snd_hda_intel
module).
Blacklisting these kernel module will stop this device from being recognized by your system. To do so we edit the file /etc/modprobe.d/blacklist.conf
as root to add the following line:
blacklist <name_of_module>
See also: How can I control which sound card Ubuntu uses for playback?
In case we still need the internal audio card for playback audio we can just mute the input microphone source, e.g by running alsamixer
in a terminal.
Sorry, I don't understand, my English is bad, I'm German User. I will only deactivate internal Mic and internal Webcam, but not internal Audio (Playback)
– lupopa
Jun 13 '12 at 15:52
Is anyone here who can really help? I want the mic "completely" off, it is NOT to see more. I want to disable the internal webcam "completely", she is no longer visible. Audio will continue to run
– lupopa
Jun 29 '12 at 7:10
@lupopa: I pushed your question up with an edit. If there still is no other solution you may consider offering a bounty to get more attention.
– Takkat
Jun 29 '12 at 7:31
Here my Hardware on pastebin: pastebin.com/qwvd9R8z can anyone help me please?
– lupopa
Jul 12 '12 at 15:37
1
For the webcam, blacklist the "webcamstudio" driver as above. Your microphone will not have a separate driver that can be blacklisted, you must mute it using alsamixer as above.
– ImaginaryRobots
Oct 15 '12 at 18:08
|
show 4 more comments
Blacklist the webcam driver and mute the Internal Mic from Alsamixer.
According to the informations you gave here, open a terminal and execute this command
Disable WebCam
echo 'blacklist webcamstudio' | sudo tee -a /etc/modprobe.d/blacklist.conf
Mute the microphone
To mute the internal microphone use the alsamixer.
Open a terminal and give this command
alsamixer
Navigate with arrow keys <--> and find the internal or mic channel and then press the M key on your keyboard to disable - mute [MM] the microphone. Esc to exit
Hi, the Webcamstudio is a Program like "manycam in windows" and install own webcamdriver to use more Cam's, text, animationen... My Problem: I'll disable Bus 002 Device 005: ID 064e:a219 Suyin Corp. 1.3M WebCam (notebook emachines E730, Acer sub-brand), but not my USB Cam. all Cam's using uvcvideo driver from Linux :(
– lupopa
Nov 19 '12 at 8:40
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%2f146654%2fhow-can-i-completely-disable-internal-mic-and-webcam%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Blacklist drivers
In both cases kernel drivers may be loaded for both, the internal sound card, and the webcam to be recognized by Ubuntu. We can find out which drivers are loaded by the following command in a terminal:
lsmod
From this list we can see which of these kernel modules may be responsible for our (specific) hardware (e.g. an Intel sound card may need the snd_hda_intel
module).
Blacklisting these kernel module will stop this device from being recognized by your system. To do so we edit the file /etc/modprobe.d/blacklist.conf
as root to add the following line:
blacklist <name_of_module>
See also: How can I control which sound card Ubuntu uses for playback?
In case we still need the internal audio card for playback audio we can just mute the input microphone source, e.g by running alsamixer
in a terminal.
Sorry, I don't understand, my English is bad, I'm German User. I will only deactivate internal Mic and internal Webcam, but not internal Audio (Playback)
– lupopa
Jun 13 '12 at 15:52
Is anyone here who can really help? I want the mic "completely" off, it is NOT to see more. I want to disable the internal webcam "completely", she is no longer visible. Audio will continue to run
– lupopa
Jun 29 '12 at 7:10
@lupopa: I pushed your question up with an edit. If there still is no other solution you may consider offering a bounty to get more attention.
– Takkat
Jun 29 '12 at 7:31
Here my Hardware on pastebin: pastebin.com/qwvd9R8z can anyone help me please?
– lupopa
Jul 12 '12 at 15:37
1
For the webcam, blacklist the "webcamstudio" driver as above. Your microphone will not have a separate driver that can be blacklisted, you must mute it using alsamixer as above.
– ImaginaryRobots
Oct 15 '12 at 18:08
|
show 4 more comments
Blacklist drivers
In both cases kernel drivers may be loaded for both, the internal sound card, and the webcam to be recognized by Ubuntu. We can find out which drivers are loaded by the following command in a terminal:
lsmod
From this list we can see which of these kernel modules may be responsible for our (specific) hardware (e.g. an Intel sound card may need the snd_hda_intel
module).
Blacklisting these kernel module will stop this device from being recognized by your system. To do so we edit the file /etc/modprobe.d/blacklist.conf
as root to add the following line:
blacklist <name_of_module>
See also: How can I control which sound card Ubuntu uses for playback?
In case we still need the internal audio card for playback audio we can just mute the input microphone source, e.g by running alsamixer
in a terminal.
Sorry, I don't understand, my English is bad, I'm German User. I will only deactivate internal Mic and internal Webcam, but not internal Audio (Playback)
– lupopa
Jun 13 '12 at 15:52
Is anyone here who can really help? I want the mic "completely" off, it is NOT to see more. I want to disable the internal webcam "completely", she is no longer visible. Audio will continue to run
– lupopa
Jun 29 '12 at 7:10
@lupopa: I pushed your question up with an edit. If there still is no other solution you may consider offering a bounty to get more attention.
– Takkat
Jun 29 '12 at 7:31
Here my Hardware on pastebin: pastebin.com/qwvd9R8z can anyone help me please?
– lupopa
Jul 12 '12 at 15:37
1
For the webcam, blacklist the "webcamstudio" driver as above. Your microphone will not have a separate driver that can be blacklisted, you must mute it using alsamixer as above.
– ImaginaryRobots
Oct 15 '12 at 18:08
|
show 4 more comments
Blacklist drivers
In both cases kernel drivers may be loaded for both, the internal sound card, and the webcam to be recognized by Ubuntu. We can find out which drivers are loaded by the following command in a terminal:
lsmod
From this list we can see which of these kernel modules may be responsible for our (specific) hardware (e.g. an Intel sound card may need the snd_hda_intel
module).
Blacklisting these kernel module will stop this device from being recognized by your system. To do so we edit the file /etc/modprobe.d/blacklist.conf
as root to add the following line:
blacklist <name_of_module>
See also: How can I control which sound card Ubuntu uses for playback?
In case we still need the internal audio card for playback audio we can just mute the input microphone source, e.g by running alsamixer
in a terminal.
Blacklist drivers
In both cases kernel drivers may be loaded for both, the internal sound card, and the webcam to be recognized by Ubuntu. We can find out which drivers are loaded by the following command in a terminal:
lsmod
From this list we can see which of these kernel modules may be responsible for our (specific) hardware (e.g. an Intel sound card may need the snd_hda_intel
module).
Blacklisting these kernel module will stop this device from being recognized by your system. To do so we edit the file /etc/modprobe.d/blacklist.conf
as root to add the following line:
blacklist <name_of_module>
See also: How can I control which sound card Ubuntu uses for playback?
In case we still need the internal audio card for playback audio we can just mute the input microphone source, e.g by running alsamixer
in a terminal.
edited Mar 20 '17 at 10:18
Community♦
1
1
answered Jun 5 '12 at 7:33
TakkatTakkat
108k35249377
108k35249377
Sorry, I don't understand, my English is bad, I'm German User. I will only deactivate internal Mic and internal Webcam, but not internal Audio (Playback)
– lupopa
Jun 13 '12 at 15:52
Is anyone here who can really help? I want the mic "completely" off, it is NOT to see more. I want to disable the internal webcam "completely", she is no longer visible. Audio will continue to run
– lupopa
Jun 29 '12 at 7:10
@lupopa: I pushed your question up with an edit. If there still is no other solution you may consider offering a bounty to get more attention.
– Takkat
Jun 29 '12 at 7:31
Here my Hardware on pastebin: pastebin.com/qwvd9R8z can anyone help me please?
– lupopa
Jul 12 '12 at 15:37
1
For the webcam, blacklist the "webcamstudio" driver as above. Your microphone will not have a separate driver that can be blacklisted, you must mute it using alsamixer as above.
– ImaginaryRobots
Oct 15 '12 at 18:08
|
show 4 more comments
Sorry, I don't understand, my English is bad, I'm German User. I will only deactivate internal Mic and internal Webcam, but not internal Audio (Playback)
– lupopa
Jun 13 '12 at 15:52
Is anyone here who can really help? I want the mic "completely" off, it is NOT to see more. I want to disable the internal webcam "completely", she is no longer visible. Audio will continue to run
– lupopa
Jun 29 '12 at 7:10
@lupopa: I pushed your question up with an edit. If there still is no other solution you may consider offering a bounty to get more attention.
– Takkat
Jun 29 '12 at 7:31
Here my Hardware on pastebin: pastebin.com/qwvd9R8z can anyone help me please?
– lupopa
Jul 12 '12 at 15:37
1
For the webcam, blacklist the "webcamstudio" driver as above. Your microphone will not have a separate driver that can be blacklisted, you must mute it using alsamixer as above.
– ImaginaryRobots
Oct 15 '12 at 18:08
Sorry, I don't understand, my English is bad, I'm German User. I will only deactivate internal Mic and internal Webcam, but not internal Audio (Playback)
– lupopa
Jun 13 '12 at 15:52
Sorry, I don't understand, my English is bad, I'm German User. I will only deactivate internal Mic and internal Webcam, but not internal Audio (Playback)
– lupopa
Jun 13 '12 at 15:52
Is anyone here who can really help? I want the mic "completely" off, it is NOT to see more. I want to disable the internal webcam "completely", she is no longer visible. Audio will continue to run
– lupopa
Jun 29 '12 at 7:10
Is anyone here who can really help? I want the mic "completely" off, it is NOT to see more. I want to disable the internal webcam "completely", she is no longer visible. Audio will continue to run
– lupopa
Jun 29 '12 at 7:10
@lupopa: I pushed your question up with an edit. If there still is no other solution you may consider offering a bounty to get more attention.
– Takkat
Jun 29 '12 at 7:31
@lupopa: I pushed your question up with an edit. If there still is no other solution you may consider offering a bounty to get more attention.
– Takkat
Jun 29 '12 at 7:31
Here my Hardware on pastebin: pastebin.com/qwvd9R8z can anyone help me please?
– lupopa
Jul 12 '12 at 15:37
Here my Hardware on pastebin: pastebin.com/qwvd9R8z can anyone help me please?
– lupopa
Jul 12 '12 at 15:37
1
1
For the webcam, blacklist the "webcamstudio" driver as above. Your microphone will not have a separate driver that can be blacklisted, you must mute it using alsamixer as above.
– ImaginaryRobots
Oct 15 '12 at 18:08
For the webcam, blacklist the "webcamstudio" driver as above. Your microphone will not have a separate driver that can be blacklisted, you must mute it using alsamixer as above.
– ImaginaryRobots
Oct 15 '12 at 18:08
|
show 4 more comments
Blacklist the webcam driver and mute the Internal Mic from Alsamixer.
According to the informations you gave here, open a terminal and execute this command
Disable WebCam
echo 'blacklist webcamstudio' | sudo tee -a /etc/modprobe.d/blacklist.conf
Mute the microphone
To mute the internal microphone use the alsamixer.
Open a terminal and give this command
alsamixer
Navigate with arrow keys <--> and find the internal or mic channel and then press the M key on your keyboard to disable - mute [MM] the microphone. Esc to exit
Hi, the Webcamstudio is a Program like "manycam in windows" and install own webcamdriver to use more Cam's, text, animationen... My Problem: I'll disable Bus 002 Device 005: ID 064e:a219 Suyin Corp. 1.3M WebCam (notebook emachines E730, Acer sub-brand), but not my USB Cam. all Cam's using uvcvideo driver from Linux :(
– lupopa
Nov 19 '12 at 8:40
add a comment |
Blacklist the webcam driver and mute the Internal Mic from Alsamixer.
According to the informations you gave here, open a terminal and execute this command
Disable WebCam
echo 'blacklist webcamstudio' | sudo tee -a /etc/modprobe.d/blacklist.conf
Mute the microphone
To mute the internal microphone use the alsamixer.
Open a terminal and give this command
alsamixer
Navigate with arrow keys <--> and find the internal or mic channel and then press the M key on your keyboard to disable - mute [MM] the microphone. Esc to exit
Hi, the Webcamstudio is a Program like "manycam in windows" and install own webcamdriver to use more Cam's, text, animationen... My Problem: I'll disable Bus 002 Device 005: ID 064e:a219 Suyin Corp. 1.3M WebCam (notebook emachines E730, Acer sub-brand), but not my USB Cam. all Cam's using uvcvideo driver from Linux :(
– lupopa
Nov 19 '12 at 8:40
add a comment |
Blacklist the webcam driver and mute the Internal Mic from Alsamixer.
According to the informations you gave here, open a terminal and execute this command
Disable WebCam
echo 'blacklist webcamstudio' | sudo tee -a /etc/modprobe.d/blacklist.conf
Mute the microphone
To mute the internal microphone use the alsamixer.
Open a terminal and give this command
alsamixer
Navigate with arrow keys <--> and find the internal or mic channel and then press the M key on your keyboard to disable - mute [MM] the microphone. Esc to exit
Blacklist the webcam driver and mute the Internal Mic from Alsamixer.
According to the informations you gave here, open a terminal and execute this command
Disable WebCam
echo 'blacklist webcamstudio' | sudo tee -a /etc/modprobe.d/blacklist.conf
Mute the microphone
To mute the internal microphone use the alsamixer.
Open a terminal and give this command
alsamixer
Navigate with arrow keys <--> and find the internal or mic channel and then press the M key on your keyboard to disable - mute [MM] the microphone. Esc to exit
answered Oct 22 '12 at 7:33
NickTuxNickTux
14k54465
14k54465
Hi, the Webcamstudio is a Program like "manycam in windows" and install own webcamdriver to use more Cam's, text, animationen... My Problem: I'll disable Bus 002 Device 005: ID 064e:a219 Suyin Corp. 1.3M WebCam (notebook emachines E730, Acer sub-brand), but not my USB Cam. all Cam's using uvcvideo driver from Linux :(
– lupopa
Nov 19 '12 at 8:40
add a comment |
Hi, the Webcamstudio is a Program like "manycam in windows" and install own webcamdriver to use more Cam's, text, animationen... My Problem: I'll disable Bus 002 Device 005: ID 064e:a219 Suyin Corp. 1.3M WebCam (notebook emachines E730, Acer sub-brand), but not my USB Cam. all Cam's using uvcvideo driver from Linux :(
– lupopa
Nov 19 '12 at 8:40
Hi, the Webcamstudio is a Program like "manycam in windows" and install own webcamdriver to use more Cam's, text, animationen... My Problem: I'll disable Bus 002 Device 005: ID 064e:a219 Suyin Corp. 1.3M WebCam (notebook emachines E730, Acer sub-brand), but not my USB Cam. all Cam's using uvcvideo driver from Linux :(
– lupopa
Nov 19 '12 at 8:40
Hi, the Webcamstudio is a Program like "manycam in windows" and install own webcamdriver to use more Cam's, text, animationen... My Problem: I'll disable Bus 002 Device 005: ID 064e:a219 Suyin Corp. 1.3M WebCam (notebook emachines E730, Acer sub-brand), but not my USB Cam. all Cam's using uvcvideo driver from Linux :(
– lupopa
Nov 19 '12 at 8:40
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%2f146654%2fhow-can-i-completely-disable-internal-mic-and-webcam%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