Just need a folder of my own, that's all!
September 2, 2008 5:04 AM
Subscribe
Would anyone care to comment on the most practical way, given access to a command line Fedora box, I can obtain a copy of a folder and its contents?
The box is connected to the net but I don't know enough Unix to, for example, get a tar of the folder and have the machine email me a copy. Although thinking about it, the folder is probably just a little too big for that. I have SSH and physical access but FTP isn't working, which is the whole problem in a nutshell, really. If anyone is interested in 10 minutes' brainstorming feel free to mefi mail me!
posted by dance to computers & internet (7 comments total)
1 user marked this as a favorite
If you're downloading to a linux machine, then:
scp username@server.com:/path/to/file .
will download the file.
If you want to tar up the folder-contents, rather than downloading directly then:
tar -zcf filename.tar.gz /path/to/folder
will create a compressed archive for you (it will create the tar in whichever directory you run the command from).
posted by gregjones at 5:11 AM on September 2, 2008