I need to open direct links to ftp and sftp urls via Krusader. If I manually enter url like ftp://mylogin:mypassword@example.com or sftp://mylogin:mypassword@example.com in Krusader GUI panel - all works well - it opens remote folder without asking passwords. But when I try to open same url via command line, cli command like: $ krusader ftp://mylogin:mypassword@example.com - Krusader didn't see password in url and ask me for password via popup message, with empty password field. Is this a bug and can be fixed or this feature is disabled for security reasons? Reproducible: Always
If I try to start Dolphin file manager with same cli arguments - all works well, it opens url without asking password.
Here is script, that do workaround for this problem, you can place it into /usr/local/bin/krusader_launch_tab.sh ----------------------------------- #!/bin/bash -e TIMEOUT=60 pid="$(pgrep -u "$(id -u)" '^krusader$' | head -n 1)" if [ -z "$pid" ]; then krusader & pid="$(pgrep -u "$(id -u)" '^krusader$' | head -n 1)" fi polling_start="$(date +%s)" # org.krusader.Instance.isRunning strangely activates the window. I couldn't find # a dbus call that is supposed to do that. while ! (qdbus org.krusader /Instances/krusader org.krusader.Instance.isRunning > /dev/null 2> /dev/null); do sleep 0.1 if [ "$(date +%s)" -gt "$(( $polling_start + $TIMEOUT ))" ]; then exit fi done left_active="$(qdbus org.krusader /Instances/krusader org.krusader.Instance.isLeftActive)" if [ "$left_active" == 'true' ]; then manager="left_manager" else manager="right_manager" fi qdbus org.krusader /Instances/krusader/$manager org.krusader.PanelManager.newTab "$1" > /dev/null -----------------------------------
This version of Krusader is unmantained, please update to 2.7.2 and reopen the bug if the issue is still present.