Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 5012  / 1 Year ago, sun, may 21, 2023, 3:09:57

Is there a SSH client for Ubuntu with File Manager facility like Bitvise SSH Client?



I tried Putty, but it doesn't include the UI based file management?


More From » ssh

 Answers
1

I suggest using sshfs instead of using something like sftp://; It's a small package, install it using:



sudo apt install sshfs


Then mount your remote machine using something like:



mkdir ~/sshfs
sshfs [email protected]:/home ~/sshfs



  • /home is the path you want to mount, you can use whatever path you want.



Now you have access to your files using your default file manager, you can even play music/video etc using your default applications and work with your files on remote machine in real time.



After you were finished run:



fusermount -u ~/sshfs


to unmount the mount point.



The advantage over sftp is that you don't need to move files to your local machine to edit/run/play them you can use them as they are located on your local machine.


[#11459] Monday, May 22, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ampust

Total Points: 133
Total Questions: 109
Total Answers: 111

Location: Reunion
Member since Fri, Jul 22, 2022
2 Years ago
;