dadio2002 macrumors regular Original poster Jul 1, 2005 143 0 London, Ontario Feb 11, 2008 #1 Hi, Im trying to access my school ftp server and I would like to know what mac app is out there allowing SFTP using ssh2. I have always been using Transmit before. Thanks
Hi, Im trying to access my school ftp server and I would like to know what mac app is out there allowing SFTP using ssh2. I have always been using Transmit before. Thanks
dvince2 macrumors 6502 Mar 6, 2007 283 1 Canada Feb 11, 2008 #2 For the longest time, I've used Fugu as an FTP client. Now I use MacFUSE and sshfs to mount it as a drive on my desktop (guide: http://lifehacker.com/software/ssh/geek-to-live--mount-a-file-system-on-your-mac-over-ssh-246129.php)
For the longest time, I've used Fugu as an FTP client. Now I use MacFUSE and sshfs to mount it as a drive on my desktop (guide: http://lifehacker.com/software/ssh/geek-to-live--mount-a-file-system-on-your-mac-over-ssh-246129.php)
W wightstraker macrumors regular Dec 18, 2007 162 0 Feb 11, 2008 #3 If you're comfortable with the terminal, the following commands make it pretty easy: sftp [username]@[hostname] put [filename] get [filename] Files will downloaded to and uploaded from whatever directory you run the command from.
If you're comfortable with the terminal, the following commands make it pretty easy: sftp [username]@[hostname] put [filename] get [filename] Files will downloaded to and uploaded from whatever directory you run the command from.
dadio2002 macrumors regular Original poster Jul 1, 2005 143 0 London, Ontario Feb 11, 2008 #4 Alrighty thanks guys.