E2 - FTP client

arken

Registered
Messages
293
FTP client for Cuberevo (command line interface)

I needed ftp client for cuberevo in order to automate uploading of my settings and cams to remote ftp site, but it can be used for downloading and uploading via FTP protocol (when wget is not enough).
The FTP client is missing in enigma2, so I made a package to install for everyone who will find it useful.

Installation: Unrar, copy to enigma2 file system, install with ipkg install ftp-client_0.1_sh4.ipk
 

arken

Registered
Messages
293
Here is the simple script to auto archive and upload selected directories:
Code:
DATA="/var/emu
/var/keys
/var/etc/rcS_user"
#
echo PLEASE WAIT....
rm -fr /var/backup
mkdir -p /var/backup
#
tar zcvf /var/backup/backup_cams.tar.gz $DATA
#
SERVER=ftp.yourserver.com
USER=username
PASSW=password
	ftp -v -n $SERVER <<END_OF_SESSION
	user $USER $PASSW
		lcd /var/backup
		mdelete *.tar.gz
		binary
		mput backup_*.tar.gz
		close
		bye
	END_OF_SESSION
 

romcard

Registered
Messages
1
I have just tried to install it and it reported an installation error 4, ftp-client not found
 

arken

Registered
Messages
293
FTP client AAF Enigma 2 compatible

FTP client (command line interface), updated compatible with latest AAF enigma 2 (USB version)

The FTP client is missing in enigma2, so I made a package to install for everyone who will find it useful.

Installation: Unrar, copy to enigma2 file system, install with ipkg or from AAF panel
 
Top