Edit History Actions Discussion

Diff for "Howto/Upload"

Differences between revisions 9 and 10
Revision 9 as of 2010-01-28 21:09:09
Size: 1050
Editor: 78
Comment: ftp technique
Revision 10 as of 2010-01-28 21:17:41
Size: 1259
Editor: 78
Comment: quota + syntax
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

Remember that based on [[Start|the rules]] you need to [[Howto/FileManagement|check your disk usage]] with `quota` in order to avoid problems.
Line 9: Line 11:
{{{
Line 10: Line 13:
}}}
Line 16: Line 20:
 1. login
Line 22: Line 25:
 1. ftp -p (for passive mode)
 1. cd yourdir
 1. get yourfile
 1. login on blinkenshell
 1. `
ftp -p` (for passive mode)
 1. `cd yourdir`
 1. `get yourfile`
 1. `exit`
 1. `vi yourfile`

Principle

How can I send file to my Blinkenshell account since there is no ftp access?

Remember that based on the rules you need to check your disk usage with quota in order to avoid problems.

Windows

Use pscp from Putty

Examples

pscp -P 2222 myfile mynick@blinkenshell.org:/home/mynick/

Linux

man scp

Alternative

Use the ftp command from blinkenshell :

  1. start an ftpd on your publicly available machine
    1. on Windows use FileZilla server

    2. on Linux man your-installed-ftpd
    3. open your firewall
    4. forward your port 21 on your router
  2. login on blinkenshell
  3. ftp -p (for passive mode)

  4. cd yourdir

  5. get yourfile

  6. exit

  7. vi yourfile

See also

Notes

Tutorials on installing web software (mainly Howto/Webpage/ and Info/Webhosting) for which wget doesn't work should link back here.


CategoryHowto