Is is possible to access remote servers in Ranger (cli) file manager using sftp/fish/... protocols, example:
sftp://user@server/home/user
Is is possible to access remote servers in Ranger (cli) file manager using sftp/fish/... protocols, example:
sftp://user@server/home/user
It does not look like it would be possible using Ranger. But you can mount remote filesystem using sshfs
and then access it as every other file on your local system:
mkdir /mnt/server
sshfs user@server:dir /mnt/server
cd /mnt/server
You can use rclone to mount many different cloud shares like sftp, webdav, s3, google drive, ... to your local filesystem.
Only for ssh I found no rclone remote system.