Find the answer to your Linux question:
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 ...
  1. #1
    er&
    er& is offline
    Just 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

  2. #2
    Just Joined! TruthSeeker's Avatar
    Join Date
    May 2005
    Location
    127.0.0.1
    Posts
    58
    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:
    Code:
    $ ftp username@ftp.yourserver.org
    ftp> ls
    ...
    ftp> get file.txt
    ftp> exit
    The file will be fetched to your current directory... so if you need it somewhere else, do (as root)
    Code:
    # chown root:root file.txt
    # mv file.txt /etc/file.txt

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •