Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| linux:linux-tutorials:disable-ksshaskpass [2025/09/24 10:09] – removed - external edit (Unknown date) 127.0.0.1 | linux:linux-tutorials:disable-ksshaskpass [2025/09/24 10:09] (current) – ↷ Page name changed from linux:linux-tutorials:disable_ksshaskpass to linux:linux-tutorials:disable-ksshaskpass Zyzonix | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ===== Disable ksshaskpass on KDE neon ===== | ||
| + | To disable the pop-up window when opening a SSH-connection on KDEneon first uninstall the '' | ||
| + | <code bash> | ||
| + | |||
| + | Then comment out all lines in ''/ | ||
| + | <code bash> | ||
| + | #!/bin/sh | ||
| + | # SPDX-License-Identifier: | ||
| + | # SPDX-FileCopyrightText: | ||
| + | # export SSH_ASKPASS to be ksshaskpass | ||
| + | |||
| + | #export SSH_ASKPASS='/ | ||
| + | #export SSH_ASKPASS_REQUIRE=' | ||
| + | |||
| + | #ssh-add < /dev/null | ||
| + | |||
| + | </ | ||
| + | |||
| + | Finally restart the bash console: '' | ||
| + | |||
| + | //Sourced partially from: [[https:// | ||