Differences between revisions 10 and 12 (spanning 2 versions)
Revision 10 as of 2009-06-18 21:17:37
Size: 1601
Comment:
Revision 12 as of 2012-01-04 20:14:06
Size: 1639
Editor: ?MarkusBrummer
Comment: Added filezilla, removed gwget
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
= Filezilla =

Filezilla is a powerful GUI-based sftp client.

{{{
apt-get update
apt-get install filezilla
}}}
Line 7: Line 16:
LFTP is a simple and powerful text based ftp client which supports FTP, SFTP, HTTP and HTTPS. [[http://lftp.yar.ru/|LFTP]] is a simple and powerful text based ftp client which supports FTP, SFTP, HTTP and HTTPS.
Line 17: Line 26:
== Links ==

 * [[http://lftp.yar.ru/|LFTP Website]]
Line 22: Line 27:
Line 33: Line 37:
comes with scp/sftp SSH comes with scp/sftp.
 * midnight commander ([[DebianPkg:mc]] can browse remote folders over SSH. see {{{menu > Shell Link}}})
Line 47: Line 52:
== 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
}}}

FrontPage > ?... > ?Softwares > Remote files

{*} {o} {o} ?User

Translation(s): any

(!) ?Discussion


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