Edit History Actions Discussion

Diff for "Howto/Upload"

Differences between revisions 12 and 13
Revision 12 as of 2010-01-29 04:00:45
Size: 1487
Editor: billnye
Comment: added winscp
Revision 13 as of 2010-01-29 04:01:11
Size: 1487
Editor: billnye
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
Use pscp from [[http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html|Putty]] if you're comfortable with command line programs, or [[http://winscp.net/|WinSCP]] if you prefer a GUI program with drag and drop convenience) Use pscp from [[http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html|Putty]] if you're comfortable with command line programs, or [[http://winscp.net/|WinSCP]] if you prefer a GUI program with drag and drop convenience.

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 if you're comfortable with command line programs, or WinSCP if you prefer a GUI program with drag and drop convenience.

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. open your_public_IP

    1. the login and password you set up earlier in step 1
  5. cd yourdir

  6. get yourfile

  7. exit

  8. 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