Differences between revisions 2 and 13 (spanning 11 versions)
Revision 2 as of 2005-10-08 08:51:28
Size: 1037
Editor: ?JakubSuchy
Comment:
Revision 13 as of 2012-01-04 20:43:44
Size: 1397
Comment: added link to it translation + minor fixes to header; since gwget got removed, also removed link
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== LFTP == #language en
~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: English - [[it/RemoteFiles|Italiano]] -~
Line 3: Line 4:
LFTP is a simple and powerful command line ftp client which supports FTP, SFTP, HTTP and HTTPS. ----
[[FrontPage|Front Page]] > [[Software]] > Remote files
----
= Filezilla =

Filezilla is a powerful GUI-based sftp client.

{{{
apt-get update
apt-get install filezilla
}}}

= LFTP =

[[http://lftp.yar.ru/|LFTP]] is a simple and powerful text based ftp client which supports FTP, SFTP, HTTP and HTTPS.
Line 13: Line 28:
== Links ==  * [[http://www.logios.cz/~jakub/editing-remote-files-with-vim-and-scp.html|Howto on editing remote files via SCP or FTP]]
Line 15: Line 30:
* [http://lftp.yar.ru/ LFTP LFTP Website] = rsync =
Line 17: Line 32:
* [http://www.logios.cz/~jakub/editing-remote-files-with-vim-and-scp.html Howto on editing remote files via SCP or FTP] {{{
rsync -av --delete /here/ user@host:/there/
rsync -av --delete user@host:/there/ /here/
}}}
Line 19: Line 37:
= ssh =
Line 20: Line 39:
SSH comes with scp/sftp.
 * midnight commander ([[DebianPkg:mc]] can browse remote folders over SSH. See {{{menu > Shell Link}}})
Line 21: Line 42:
== Wget == = Wget =
Line 33: Line 54:
== Gwget, a GUI frontend to Wget ==

The Gwget package in Debian is called gwget and is installed with
{{{
apt-get update
apt-get install gwget
}}}

Line 44: Line 56:
* [http://www.gnu.org/software/wget/ Wget Wget Website]
* [http://gnome.org/projects/gwget/index.html Gwget Gwget Website]
 * [[http://www.gnu.org/software/wget/|Wget Website]]
## * [[http://gnome.org/projects/gwget/index.html|Gwget Website]]

Translation(s): English - Italiano


Front Page > Software > Remote files


Filezilla

Filezilla is a powerful GUI-based sftp client.

apt-get update
apt-get install filezilla

LFTP

LFTP is a simple and powerful text based ftp client which supports FTP, SFTP, HTTP and HTTPS.

Installing LFTP

The LFTP package in Debian is called lftp and is installed with

apt-get update
apt-get install lftp

rsync

rsync -av --delete /here/ user@host:/there/
rsync -av --delete user@host:/there/ /here/

ssh

SSH comes with scp/sftp.

  • midnight commander (mc can browse remote folders over SSH. See menu > Shell Link)

Wget

Wget is a simple and powerful command line download tool which can be used to retrieve web pages, whole websites and files from FTP servers.

Installing Wget

The Wget package in Debian is called wget and is installed with

apt-get update
apt-get install wget