Disable KDE Wallet from the command line
When I log into my desktop session, Plasma shell is unresponsive and CPU utilization is 100%. I have tracked this down to an issue with KDE Wallet and an attempt to make a WiFi connection. Unfortunately, I cannot resolve the issue via the desktop session because it is mostly unresponsive.
I am seeking a command line solution. I can log in via SSH or I can log into the console without SDDM & Plasma.
I saw a similar solution here: https://unix.stackexchange.com/a/36444/15010
cd $(kde4-config --localprefix)share/apps/kwallet mv kdewallet.kwl
kdewallet.kwl.bak
However, I do not have a directory at ~/.kde4/share/apps/kwallet
The closest I find is ~/.kde/share/apps/kwallet where I have I see only this one file: kdewallet.salt
find . -iname "wallet"
./.config/kwalletrc
./.config/kwalletmanager5rc
./.kde/share/apps/kwallet
./.kde/share/apps/kwallet/kdewallet.salt
./.kde/share/config/kwalletrc
./.kde4/share/config/kwalletrc
./.local/share/kwalletd
./.local/share/kwalletd/kdewallet.salt
kde kwallet
add a comment |
When I log into my desktop session, Plasma shell is unresponsive and CPU utilization is 100%. I have tracked this down to an issue with KDE Wallet and an attempt to make a WiFi connection. Unfortunately, I cannot resolve the issue via the desktop session because it is mostly unresponsive.
I am seeking a command line solution. I can log in via SSH or I can log into the console without SDDM & Plasma.
I saw a similar solution here: https://unix.stackexchange.com/a/36444/15010
cd $(kde4-config --localprefix)share/apps/kwallet mv kdewallet.kwl
kdewallet.kwl.bak
However, I do not have a directory at ~/.kde4/share/apps/kwallet
The closest I find is ~/.kde/share/apps/kwallet where I have I see only this one file: kdewallet.salt
find . -iname "wallet"
./.config/kwalletrc
./.config/kwalletmanager5rc
./.kde/share/apps/kwallet
./.kde/share/apps/kwallet/kdewallet.salt
./.kde/share/config/kwalletrc
./.kde4/share/config/kwalletrc
./.local/share/kwalletd
./.local/share/kwalletd/kdewallet.salt
kde kwallet
Going out on a limb, but would uninstalling the wallet w/o removing dependencies help?
– ajeh
Jun 19 '18 at 21:47
add a comment |
When I log into my desktop session, Plasma shell is unresponsive and CPU utilization is 100%. I have tracked this down to an issue with KDE Wallet and an attempt to make a WiFi connection. Unfortunately, I cannot resolve the issue via the desktop session because it is mostly unresponsive.
I am seeking a command line solution. I can log in via SSH or I can log into the console without SDDM & Plasma.
I saw a similar solution here: https://unix.stackexchange.com/a/36444/15010
cd $(kde4-config --localprefix)share/apps/kwallet mv kdewallet.kwl
kdewallet.kwl.bak
However, I do not have a directory at ~/.kde4/share/apps/kwallet
The closest I find is ~/.kde/share/apps/kwallet where I have I see only this one file: kdewallet.salt
find . -iname "wallet"
./.config/kwalletrc
./.config/kwalletmanager5rc
./.kde/share/apps/kwallet
./.kde/share/apps/kwallet/kdewallet.salt
./.kde/share/config/kwalletrc
./.kde4/share/config/kwalletrc
./.local/share/kwalletd
./.local/share/kwalletd/kdewallet.salt
kde kwallet
When I log into my desktop session, Plasma shell is unresponsive and CPU utilization is 100%. I have tracked this down to an issue with KDE Wallet and an attempt to make a WiFi connection. Unfortunately, I cannot resolve the issue via the desktop session because it is mostly unresponsive.
I am seeking a command line solution. I can log in via SSH or I can log into the console without SDDM & Plasma.
I saw a similar solution here: https://unix.stackexchange.com/a/36444/15010
cd $(kde4-config --localprefix)share/apps/kwallet mv kdewallet.kwl
kdewallet.kwl.bak
However, I do not have a directory at ~/.kde4/share/apps/kwallet
The closest I find is ~/.kde/share/apps/kwallet where I have I see only this one file: kdewallet.salt
find . -iname "wallet"
./.config/kwalletrc
./.config/kwalletmanager5rc
./.kde/share/apps/kwallet
./.kde/share/apps/kwallet/kdewallet.salt
./.kde/share/config/kwalletrc
./.kde4/share/config/kwalletrc
./.local/share/kwalletd
./.local/share/kwalletd/kdewallet.salt
kde kwallet
kde kwallet
asked Jun 19 '18 at 20:58
MountainXMountainX
5,0482672131
5,0482672131
Going out on a limb, but would uninstalling the wallet w/o removing dependencies help?
– ajeh
Jun 19 '18 at 21:47
add a comment |
Going out on a limb, but would uninstalling the wallet w/o removing dependencies help?
– ajeh
Jun 19 '18 at 21:47
Going out on a limb, but would uninstalling the wallet w/o removing dependencies help?
– ajeh
Jun 19 '18 at 21:47
Going out on a limb, but would uninstalling the wallet w/o removing dependencies help?
– ajeh
Jun 19 '18 at 21:47
add a comment |
2 Answers
2
active
oldest
votes
I think you have a couple of options:
pkill kwallet
to kill the current wallet processes. If your desktop is still unresponsive, change Enabled=false in ~/.config/kwalletrc and log out and back in.
On a side note, you can open the wallet configuration with kcmshell5 kwalletconfig5, but it crashes without a gui.
I think this is probably the right answer. Unfortunately, it did not work for me. After changing~/.config/kwalletrc, kwallet continues to pop up and cause problems when I log in.
– MountainX
Jun 20 '18 at 5:44
add a comment |
For KDE4:
kwriteconfig --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
For KDE5:
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
Source:
# Kwallet is annoying, and also makes connecting
# to wireless networks take multiple attempts -- no thanks.
https://github.com/ryanpcmcquen/linuxTweaks/blob/e60f2421a3b98c7741a0b27cfe176db10e130a1f/.kdeSetup.sh#L18
Related:
Disable KWallet password request in Arch Plasma 5
https://askubuntu.com/questions/47216/how-to-disable-kde-wallet
https://stackoverflow.com/questions/29594260/how-to-disable-kwallet-in-kde-plasma-5
https://superuser.com/questions/994551/disable-kwallet-popups-from-chrome
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f450731%2fdisable-kde-wallet-from-the-command-line%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
I think you have a couple of options:
pkill kwallet
to kill the current wallet processes. If your desktop is still unresponsive, change Enabled=false in ~/.config/kwalletrc and log out and back in.
On a side note, you can open the wallet configuration with kcmshell5 kwalletconfig5, but it crashes without a gui.
I think this is probably the right answer. Unfortunately, it did not work for me. After changing~/.config/kwalletrc, kwallet continues to pop up and cause problems when I log in.
– MountainX
Jun 20 '18 at 5:44
add a comment |
I think you have a couple of options:
pkill kwallet
to kill the current wallet processes. If your desktop is still unresponsive, change Enabled=false in ~/.config/kwalletrc and log out and back in.
On a side note, you can open the wallet configuration with kcmshell5 kwalletconfig5, but it crashes without a gui.
I think this is probably the right answer. Unfortunately, it did not work for me. After changing~/.config/kwalletrc, kwallet continues to pop up and cause problems when I log in.
– MountainX
Jun 20 '18 at 5:44
add a comment |
I think you have a couple of options:
pkill kwallet
to kill the current wallet processes. If your desktop is still unresponsive, change Enabled=false in ~/.config/kwalletrc and log out and back in.
On a side note, you can open the wallet configuration with kcmshell5 kwalletconfig5, but it crashes without a gui.
I think you have a couple of options:
pkill kwallet
to kill the current wallet processes. If your desktop is still unresponsive, change Enabled=false in ~/.config/kwalletrc and log out and back in.
On a side note, you can open the wallet configuration with kcmshell5 kwalletconfig5, but it crashes without a gui.
answered Jun 19 '18 at 22:28
m0dularm0dular
70115
70115
I think this is probably the right answer. Unfortunately, it did not work for me. After changing~/.config/kwalletrc, kwallet continues to pop up and cause problems when I log in.
– MountainX
Jun 20 '18 at 5:44
add a comment |
I think this is probably the right answer. Unfortunately, it did not work for me. After changing~/.config/kwalletrc, kwallet continues to pop up and cause problems when I log in.
– MountainX
Jun 20 '18 at 5:44
I think this is probably the right answer. Unfortunately, it did not work for me. After changing
~/.config/kwalletrc, kwallet continues to pop up and cause problems when I log in.– MountainX
Jun 20 '18 at 5:44
I think this is probably the right answer. Unfortunately, it did not work for me. After changing
~/.config/kwalletrc, kwallet continues to pop up and cause problems when I log in.– MountainX
Jun 20 '18 at 5:44
add a comment |
For KDE4:
kwriteconfig --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
For KDE5:
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
Source:
# Kwallet is annoying, and also makes connecting
# to wireless networks take multiple attempts -- no thanks.
https://github.com/ryanpcmcquen/linuxTweaks/blob/e60f2421a3b98c7741a0b27cfe176db10e130a1f/.kdeSetup.sh#L18
Related:
Disable KWallet password request in Arch Plasma 5
https://askubuntu.com/questions/47216/how-to-disable-kde-wallet
https://stackoverflow.com/questions/29594260/how-to-disable-kwallet-in-kde-plasma-5
https://superuser.com/questions/994551/disable-kwallet-popups-from-chrome
add a comment |
For KDE4:
kwriteconfig --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
For KDE5:
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
Source:
# Kwallet is annoying, and also makes connecting
# to wireless networks take multiple attempts -- no thanks.
https://github.com/ryanpcmcquen/linuxTweaks/blob/e60f2421a3b98c7741a0b27cfe176db10e130a1f/.kdeSetup.sh#L18
Related:
Disable KWallet password request in Arch Plasma 5
https://askubuntu.com/questions/47216/how-to-disable-kde-wallet
https://stackoverflow.com/questions/29594260/how-to-disable-kwallet-in-kde-plasma-5
https://superuser.com/questions/994551/disable-kwallet-popups-from-chrome
add a comment |
For KDE4:
kwriteconfig --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
For KDE5:
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
Source:
# Kwallet is annoying, and also makes connecting
# to wireless networks take multiple attempts -- no thanks.
https://github.com/ryanpcmcquen/linuxTweaks/blob/e60f2421a3b98c7741a0b27cfe176db10e130a1f/.kdeSetup.sh#L18
Related:
Disable KWallet password request in Arch Plasma 5
https://askubuntu.com/questions/47216/how-to-disable-kde-wallet
https://stackoverflow.com/questions/29594260/how-to-disable-kwallet-in-kde-plasma-5
https://superuser.com/questions/994551/disable-kwallet-popups-from-chrome
For KDE4:
kwriteconfig --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
For KDE5:
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'Enabled' 'false'
kwriteconfig5 --file kwalletrc --group 'Wallet' --key 'First Use' 'false'
Source:
# Kwallet is annoying, and also makes connecting
# to wireless networks take multiple attempts -- no thanks.
https://github.com/ryanpcmcquen/linuxTweaks/blob/e60f2421a3b98c7741a0b27cfe176db10e130a1f/.kdeSetup.sh#L18
Related:
Disable KWallet password request in Arch Plasma 5
https://askubuntu.com/questions/47216/how-to-disable-kde-wallet
https://stackoverflow.com/questions/29594260/how-to-disable-kwallet-in-kde-plasma-5
https://superuser.com/questions/994551/disable-kwallet-popups-from-chrome
answered 3 hours ago
Nathaniel M. BeaverNathaniel M. Beaver
220117
220117
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f450731%2fdisable-kde-wallet-from-the-command-line%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
Going out on a limb, but would uninstalling the wallet w/o removing dependencies help?
– ajeh
Jun 19 '18 at 21:47