The following 124 words could not be found in the dictionary of 1150 words (including 1150 LocalSpellingWords) and are highlighted below:
accessible   account   Alternative   available   avoid   back   based   blinkenshell   Blinkenshell   can   cd   check   chiark   comfortable   command   consider   convenience   dev   dir   disk   Dokan   dokan   download   drag   drive   drop   earlier   Examples   exit   filezilla   firewall   for   forward   from   ftp   ftpd   get   greenend   home   Howto   if   If   implementation   installed   installing   let   line   link   machine   mainly   Management   mode   mount   my   mydir   myfile   mynick   need   networked   Notes   often   on   open   Or   or   order   passive   password   port   prefer   Principle   problems   program   programs   project   pscp   public   publicly   Putty   putty   quota   re   really   Remember   router   rules   scp   Security   send   server   set   sgtatham   should   since   software   ssh   sshfs   Start   start   step   that   there   to   transfer   Tutorials   type   up   usage   use   very   vi   web   Webhosting   Webpage   wget   which   Win   Windows   winscp   with   work   yourdir   yourfile   Zilla  

Clear message
Edit History Actions Discussion

Howto/Upload

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. If you really do file transfer very often, consider DokanSSHFS, a C# implementation of sshfs that let you mount your account as a networked drive.

Examples

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

Linux

scp -P 2222 myfile mynick@ssh.blinkenshell.org:/home/mynick/
scp -P 2222 -r mydir mynick@ssh.blinkenshell.org:/home/mynick/

Or, to your publicly accessible web dir:

scp -P 2222 myfile mynick@ssh.blinkenshell.org:/home/mynick/public_html/
scp -P 2222 -r mydir mynick@ssh.blinkenshell.org:/home/mynick/public_html/

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