Disable dedicated Nvidia graphic card
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
i have a laptop (Schenker S403) and installed KUbuntu 18.04.
Previously I have 17.10 with no problems.
I disabled the graphic card in the NVidia-x-server-settings.
Now my laptop runs hot and the fan spins nonstop although I also disabled it in the new installation (no upgrade but a toal new installation)
Investigating I found and did some stuff:
- My CPU governor is on powersafe on AC and DC.
- I have tlp up and running.
- prime-select query : intel
- Nvidia X Server Settings shows Intel as the choice (power saving mode)
BUT:
nopinger@my-laptop ~ lspci
+00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 09)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4)
00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1c.4 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 5 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73)
03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTL8411B PCI Express Card Reader (rev 01)
03:00.1 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12)
04:00.0 3D controller: NVIDIA Corporation GK107M [GeForce GT 745M] (rev a1)
So there seems to be a problem, because the 3D controller is still NVIDIA stuff
And really, PowerTOP shows a 100% usage of the graphics card:
100,0% PCI-Gerät: NVIDIA Corporation GK107M [GeForce GT 745M]
How can I totally disable this stuff?
It drains my battery and the fan is noisy af because of it.
The only useful answer I found is:
How can I uninstall a nvidia driver completely ?
And it is quite old, nvidia-common doesn't exist (anymore).
UPDATE 1:
I did the following things:
uninstalled everything from nvidia (zsh, therefore "")
sudo apt purge "nvidia*"
blacklisted nouveau driver (Can't disable nouveau drivers in Ubuntu 18.04):
nopinger@my-laptop ~ cat /etc/modprobe.d/blacklist.conf | grep nouveau
blacklist nouveau
blacklist lbm-nouveau
alias nouveau off
alias lbm-nouveau off
then updated (sudo update-initramfs -u)
- updated grub to:
nopinger@my-laptop ~ cat /etc/default/grub | grep nouveau
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nouveau.runpm=0 nouveau.modeset=0"
then updated grub (sudo update-grub)
- rebooted
Result:
- Powertop show no change, the card has a 100% usage
- 3D Controller is also unchanged
I don't understand how it is still working in a way.
18.04 uninstall nvidia-optimus
add a comment |
i have a laptop (Schenker S403) and installed KUbuntu 18.04.
Previously I have 17.10 with no problems.
I disabled the graphic card in the NVidia-x-server-settings.
Now my laptop runs hot and the fan spins nonstop although I also disabled it in the new installation (no upgrade but a toal new installation)
Investigating I found and did some stuff:
- My CPU governor is on powersafe on AC and DC.
- I have tlp up and running.
- prime-select query : intel
- Nvidia X Server Settings shows Intel as the choice (power saving mode)
BUT:
nopinger@my-laptop ~ lspci
+00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 09)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4)
00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1c.4 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 5 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73)
03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTL8411B PCI Express Card Reader (rev 01)
03:00.1 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12)
04:00.0 3D controller: NVIDIA Corporation GK107M [GeForce GT 745M] (rev a1)
So there seems to be a problem, because the 3D controller is still NVIDIA stuff
And really, PowerTOP shows a 100% usage of the graphics card:
100,0% PCI-Gerät: NVIDIA Corporation GK107M [GeForce GT 745M]
How can I totally disable this stuff?
It drains my battery and the fan is noisy af because of it.
The only useful answer I found is:
How can I uninstall a nvidia driver completely ?
And it is quite old, nvidia-common doesn't exist (anymore).
UPDATE 1:
I did the following things:
uninstalled everything from nvidia (zsh, therefore "")
sudo apt purge "nvidia*"
blacklisted nouveau driver (Can't disable nouveau drivers in Ubuntu 18.04):
nopinger@my-laptop ~ cat /etc/modprobe.d/blacklist.conf | grep nouveau
blacklist nouveau
blacklist lbm-nouveau
alias nouveau off
alias lbm-nouveau off
then updated (sudo update-initramfs -u)
- updated grub to:
nopinger@my-laptop ~ cat /etc/default/grub | grep nouveau
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nouveau.runpm=0 nouveau.modeset=0"
then updated grub (sudo update-grub)
- rebooted
Result:
- Powertop show no change, the card has a 100% usage
- 3D Controller is also unchanged
I don't understand how it is still working in a way.
18.04 uninstall nvidia-optimus
add a comment |
i have a laptop (Schenker S403) and installed KUbuntu 18.04.
Previously I have 17.10 with no problems.
I disabled the graphic card in the NVidia-x-server-settings.
Now my laptop runs hot and the fan spins nonstop although I also disabled it in the new installation (no upgrade but a toal new installation)
Investigating I found and did some stuff:
- My CPU governor is on powersafe on AC and DC.
- I have tlp up and running.
- prime-select query : intel
- Nvidia X Server Settings shows Intel as the choice (power saving mode)
BUT:
nopinger@my-laptop ~ lspci
+00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 09)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4)
00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1c.4 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 5 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73)
03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTL8411B PCI Express Card Reader (rev 01)
03:00.1 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12)
04:00.0 3D controller: NVIDIA Corporation GK107M [GeForce GT 745M] (rev a1)
So there seems to be a problem, because the 3D controller is still NVIDIA stuff
And really, PowerTOP shows a 100% usage of the graphics card:
100,0% PCI-Gerät: NVIDIA Corporation GK107M [GeForce GT 745M]
How can I totally disable this stuff?
It drains my battery and the fan is noisy af because of it.
The only useful answer I found is:
How can I uninstall a nvidia driver completely ?
And it is quite old, nvidia-common doesn't exist (anymore).
UPDATE 1:
I did the following things:
uninstalled everything from nvidia (zsh, therefore "")
sudo apt purge "nvidia*"
blacklisted nouveau driver (Can't disable nouveau drivers in Ubuntu 18.04):
nopinger@my-laptop ~ cat /etc/modprobe.d/blacklist.conf | grep nouveau
blacklist nouveau
blacklist lbm-nouveau
alias nouveau off
alias lbm-nouveau off
then updated (sudo update-initramfs -u)
- updated grub to:
nopinger@my-laptop ~ cat /etc/default/grub | grep nouveau
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nouveau.runpm=0 nouveau.modeset=0"
then updated grub (sudo update-grub)
- rebooted
Result:
- Powertop show no change, the card has a 100% usage
- 3D Controller is also unchanged
I don't understand how it is still working in a way.
18.04 uninstall nvidia-optimus
i have a laptop (Schenker S403) and installed KUbuntu 18.04.
Previously I have 17.10 with no problems.
I disabled the graphic card in the NVidia-x-server-settings.
Now my laptop runs hot and the fan spins nonstop although I also disabled it in the new installation (no upgrade but a toal new installation)
Investigating I found and did some stuff:
- My CPU governor is on powersafe on AC and DC.
- I have tlp up and running.
- prime-select query : intel
- Nvidia X Server Settings shows Intel as the choice (power saving mode)
BUT:
nopinger@my-laptop ~ lspci
+00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09)
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 09)
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4)
00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)
00:1c.4 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 5 (rev e4)
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04)
02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73)
03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTL8411B PCI Express Card Reader (rev 01)
03:00.1 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 12)
04:00.0 3D controller: NVIDIA Corporation GK107M [GeForce GT 745M] (rev a1)
So there seems to be a problem, because the 3D controller is still NVIDIA stuff
And really, PowerTOP shows a 100% usage of the graphics card:
100,0% PCI-Gerät: NVIDIA Corporation GK107M [GeForce GT 745M]
How can I totally disable this stuff?
It drains my battery and the fan is noisy af because of it.
The only useful answer I found is:
How can I uninstall a nvidia driver completely ?
And it is quite old, nvidia-common doesn't exist (anymore).
UPDATE 1:
I did the following things:
uninstalled everything from nvidia (zsh, therefore "")
sudo apt purge "nvidia*"
blacklisted nouveau driver (Can't disable nouveau drivers in Ubuntu 18.04):
nopinger@my-laptop ~ cat /etc/modprobe.d/blacklist.conf | grep nouveau
blacklist nouveau
blacklist lbm-nouveau
alias nouveau off
alias lbm-nouveau off
then updated (sudo update-initramfs -u)
- updated grub to:
nopinger@my-laptop ~ cat /etc/default/grub | grep nouveau
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nouveau.runpm=0 nouveau.modeset=0"
then updated grub (sudo update-grub)
- rebooted
Result:
- Powertop show no change, the card has a 100% usage
- 3D Controller is also unchanged
I don't understand how it is still working in a way.
18.04 uninstall nvidia-optimus
18.04 uninstall nvidia-optimus
edited Jul 12 '18 at 21:10
WhatIsThisThing
asked Jul 12 '18 at 17:27
WhatIsThisThingWhatIsThisThing
614
614
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I've been battling the same issue for quite some time now and no answer in sight.
I did however install tlp and powertop and I've noticed a funny thing:
When you run sudo powertop --auto-tune
and then sudo powertop for me it shows nvidia card to 0%.
- Later Edit *
It is all related to tunables in powertop more specifically "Sata link power management" which TLP does not activate by default. When that is set the card seems to power off.
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%2f1054579%2fdisable-dedicated-nvidia-graphic-card%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've been battling the same issue for quite some time now and no answer in sight.
I did however install tlp and powertop and I've noticed a funny thing:
When you run sudo powertop --auto-tune
and then sudo powertop for me it shows nvidia card to 0%.
- Later Edit *
It is all related to tunables in powertop more specifically "Sata link power management" which TLP does not activate by default. When that is set the card seems to power off.
add a comment |
I've been battling the same issue for quite some time now and no answer in sight.
I did however install tlp and powertop and I've noticed a funny thing:
When you run sudo powertop --auto-tune
and then sudo powertop for me it shows nvidia card to 0%.
- Later Edit *
It is all related to tunables in powertop more specifically "Sata link power management" which TLP does not activate by default. When that is set the card seems to power off.
add a comment |
I've been battling the same issue for quite some time now and no answer in sight.
I did however install tlp and powertop and I've noticed a funny thing:
When you run sudo powertop --auto-tune
and then sudo powertop for me it shows nvidia card to 0%.
- Later Edit *
It is all related to tunables in powertop more specifically "Sata link power management" which TLP does not activate by default. When that is set the card seems to power off.
I've been battling the same issue for quite some time now and no answer in sight.
I did however install tlp and powertop and I've noticed a funny thing:
When you run sudo powertop --auto-tune
and then sudo powertop for me it shows nvidia card to 0%.
- Later Edit *
It is all related to tunables in powertop more specifically "Sata link power management" which TLP does not activate by default. When that is set the card seems to power off.
edited Jul 25 '18 at 14:51
answered Jul 23 '18 at 15:24
PCatineanPCatinean
32
32
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%2f1054579%2fdisable-dedicated-nvidia-graphic-card%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