You are not logged in.
Hi,
Both my desktop and laptop are running on the same network, both using arch. What's the easiest way to share files between them? ftp? samba? etc? thanks!
Offline
I use ssh for everything, though if I wanted to have a dedicated file server or something like that I'd probably use something more specialized (i.e. samba or nfs) for that.
Offline
I'd go for rsync. I think it's very convenient because it keeps track of what has been transferred between sessions.
EDIT: nevermind, I misread the thread title for some reason. I thought you wanted to transfer files rather than share them. For simple file transfer I would still use rsync though.
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
i want to be able to send files back and forth to each computer. and/or have a folder on each computer that can be accessed from either box
Offline
Try Dropbox quick easy to set up ...
Mr Green I like Landuke!
Offline
How could I set up a simple ftp server to share files?
Offline
+1.
dropbox is very nice. lots of tricks possible with it (for example an exchange server like setup by putting the mail folders in dropbox)
Offline
Is there a how-to around on how to setup ssh so I can send files back and forth?
Offline
Simply set up a ssh server on both machines. You can use nautilus, for example, to browse other systems through the ssh protocol (i.e. using scp).
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
Try this:
$ man ssh{,_config,d{,_config}}
$ man scp sftp
Better than any howto ;-)
Offline
oh and you can mount a remote folder using sshfs. very handy.
Offline
Okay, I started the server on the "server machine" i tried to get int through nautilus on the client, it asks for password, where do I set this?
Offline
Okay, I'm able to get in through nautilus. How do you get in through command line??
Offline
ssh [-p PORT#] user@host
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
i want to be able to send files back and forth to each computer. and/or have a folder on each computer that can be accessed from either box
A 192.168.0.1
B 192.168.0.2
A /etc/exports
/home/user/shared 192.168.0.2(rw,subtree_check,sync)
#/home/user/shared 192.168.0.2(rw,subtree_check,sync,all_squash,anonuid=1000,anongid=1000)
B /etc/exports
/home/user/shared 192.168.0.1(rw,subtree_check,sync)
#/home/user/shared 192.168.0.1(rw,subtree_check,sync,all_squash,anonuid=1003,anongid=1003)
A man exports
A, B /etc/rc.d/nfsd start
A, B mount -t nfs 192.168.0.X:/home/user/shared /mnt/nfs
A, B automounting or setup autofs
Last edited by anrxc (2008-12-29 01:27:21)
You need to install an RTFM interface.
Offline