Worried about often copying files to remote machines using ftp or scp ?. Try using fuse-sshfs . You can download the fuse and sshfs rpm from DAG and install it based on your OS version.
fuse : http://dag.wieers.com/rpm/packages/fuse/
fuse-sshfs : http://dag.wieers.com/rpm/packages/fuse-sshfs/
SSHfs Steps :
1) Create a sshfs connection.
[root@vm1 ~]# sshfs -o nonempty,sshfs_sync,compression=yes admin@foolab23:/home/admin/ /home/admin/
admin@foolab23’s password:
admin@foolab23’s password:
2) Access filesystem as if it is a local or NFS filesystem
[root@vm1 ~]# df -h /home/admin/
Filesystem Size Used Avail Use% Mounted on
sshfs#admin@foolab23:/home/admin/
1000G 0 1000G 0% /home/admin
[root@vm1 ~]# ls /home/admin
foo.txt encryption decryption resume jobs perl work
Filesystem Size Used Avail Use% Mounted on
sshfs#admin@foolab23:/home/admin/
1000G 0 1000G 0% /home/admin
[root@vm1 ~]# ls /home/admin
foo.txt encryption decryption resume jobs perl work
[root@vm1 ~]# mount | grep /home/admin
sshfs#admin@foolab23:/home/admin/ on /home/admin type fuse (rw,nosuid,nodev,max_read=65536)
[root@vm1 ~]#