In Windows I use WinSCP to transfer files server-side. It has a very attractive feature that I like best: keeping remote folders up to date.

This means, whenever my local file is changed, WinScp will replace the same file on the server with this new file.

Could you suggest me software that support this feature?

link|improve this question
feedback

7 Answers

Nautilus the default file browser has the feature of mounting remote files.

Go to File Menu > Connect to Server..

enter image description here

Other than than I guess filezilla and gftp support sftp.

link|improve this answer
feedback

You want "scp". The original scp :-)

Oops, I spoke too soon... you have requirement of syncing as well. In that case, rsync.

However, scp is still good for scripts and automation.

link|improve this answer
1  
I think someone using winscp would not be as excited to use scp in the command line. And one of the features one looks for in a gui sftp client is management of the different sessions one could use. – viyyer Jan 11 at 18:51
@viyyer, yes you're right. – Angelo Jan 11 at 18:54
feedback

You can still use winscp under wine. I am doing the same, and it works very good.

link|improve this answer
feedback

You could also use sshfs or rsync.

sshfs mounts your remote directory locally over ssh very similar to winscp and nautilus.

The potential advantage of sshfs is that you can map users

sshfs -o idmap=server_user user@server:/directory ~/remote_directory

To automate the process, add an entry in fstab

sshfs#user@server:/directory /home/your_local_user/directory fuse idmap=user 0 0

See Ubuntu Wiki SSHFS

rsync will also sync files / directories and will work over ssh and has a graphical front end, grsunc

See Ubuntu wiki rsync

Last you can edit remote files with vim (if you are interested)

vim scp://user@server//path_to/file_to_edit
link|improve this answer
Thank you very much indeed – Summer Nguyen Jan 12 at 3:26
feedback

There are many different tools which would give a similar experience as winscp. I use filezilla for transferring files across ssh.

Nautilus as mentioned by @sagarchalise allows for connecting to server.

One of the things I use more often these days to access sftp is sshfs. I find it very convenient as it mounts the files as local file in the filesystem and transparently updates it on the remote server.

sshfs username@remotehostname.tld:/path/to/remote/files /path/to/local/mountpoint/

It lets me use all my usual tools assuming these file are local files.

link|improve this answer
feedback

You can also try unison to help synchronize the two folders

link|improve this answer
feedback

Ubuntu:

Open Nautilus and type (in the link bar): sftp://user@server/

Kubuntu:

Open Konqueror and type (in the link bar): fish://user@server/

Xubuntu:

Open Thunar and type (in the link bar): sftp://user@server/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.