welcome: please sign in

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
Last name of the author of the GNU Manifesto

Revision 1 as of 2005-08-07 12:27:57

Edit

FileTransfer

The recommended way (and possibly only reasonable way at the moment) to upload content from your computer to our servers (or the other way around if you want to make backups) is to use scp. It is a secure and easy way to copy single files or whole directory trees.

If all you want is to keep a directory at hcoop in sync with your local changes, you should consider using rsync. It can significantly reduce bandwidth usage by only transmitting the differences between the two trees. Since version 2.6 rsync uses scp for file transfer by default. For older versions you have to use the -e (--rsh) option. For example:

rsync -avz -e ssh ~/html/hcoop/* username@hcoop.net:public_html

You can also use plain scp, but it overwrites destination files and is usually only applicable when you are uploading new files to hcoop:

scp -r ~/html/hcoop/* username@hcoop.net:public_html

You can run command-line sftp (Secure FTP) tool:

sftp hcoop.net
Connecting to hcoop.net...
Password:
sftp> help

With GUI FTP clients, SFTP connection is possible if the clients support "Secure FTP" or similar as the connection method. In Unix/Gnome, you could use for example gftp; for Microsoft Windows, example clients are the free WinSCP.sourceforge.net, or proprietary FTP Voyager.

If you use some other tools or methods for file transfer, please add some advice here.