Results 1 to 2 of 2
Is there a package which will enable an apt-get install <pkg> to transfer a ftp site to a file /etc/file.txt.
Second question is there a way in Linux(Debian 3.1r3) to ...
- 10-29-2006 #1Just Joined!
- Join Date
- Oct 2006
- Posts
- 26
MIT-COOKIE-1 X Server Error
Is there a package which will enable an apt-get install <pkg> to transfer a ftp site to a file /etc/file.txt.
Second question is there a way in Linux(Debian 3.1r3) to transfer an ftp site to a file.Last edited by er&; 10-29-2006 at 05:49 AM. Reason: synapic also had the same problem
- 10-30-2006 #2
I can't quite tell what your question is, but it sounds like you need "ftp":
# apt-get install ftp
then you can use it like so:
The file will be fetched to your current directory... so if you need it somewhere else, do (as root)Code:$ ftp username@ftp.yourserver.org ftp> ls ... ftp> get file.txt ftp> exit
Code:# chown root:root file.txt # mv file.txt /etc/file.txt


Reply With Quote
