Questions tagged [ftp]
12 questions
11
votes
2 answers
Dired as an FTP client
I don't know whether this is possible or not.
I know I can edit remote files, but what I am looking for is a setup like this:
one buffer with dired on my local directory
one buffer with dired on the remote directory
Sort of a visual aid when…

Boccaperta-IT
- 1,556
- 11
- 24
9
votes
2 answers
Password/Key Management for multiple machines in emacs
I log into numerous machines as part of my job (+- 20 per day). I only spend a few days/weeks with each machine. Many run ftp only.
For seamless access Tramp is amazing, but it is the managing of these server's access by hand that has become…

Gambo
- 929
- 5
- 14
6
votes
1 answer
Making Dired work with FTP on OS X 10.13
So apparently Apple has (stupidly) dropped support for "insecure" Unix commands such as telnet, ftp, etc. in 10.13, or "High Sierra" (see these threads for more info). Unfortunately, I use Dired as an ftp client to lists.gnu.org. So, to compensate…

GDP2
- 1,340
- 9
- 25
2
votes
1 answer
Preventing shell mode from treating ! as a history reference
Various command-line tools, such as gdb, ftp, sftp, etc, use ! to prefix a command to be run in a shell. So (for instance) !mkdir foo will make a directory called foo. When using these tools inside emacs shell-mode, the shell-mode treats the ! as a…

Nick Barnes
- 141
- 3
1
vote
1 answer
Link to password-protected FTP server in org-mode
I can't figure out the correct syntax for a link to a password-protected FTP site. I want to insert a link in org-mode, which opens a remote FTP server at a given directory in dired.
When I try
/user:pass@host:/dir
I get the error unknown method…

andreas-h
- 1,559
- 13
- 22
1
vote
0 answers
How can I get an ftp connection to stop timing out in emacs?
I'm using M-x shell in Emacs and just connecting through vanilla ftp from the command line (bash).
I remember (many moons ago) I came across a script for Emacs that'd keep a persistent ftp connection going for shell/bash/ftp, pinging the remote…

dara
- 11
- 1
1
vote
1 answer
How to set FTP TRAMP/ANGE connection configuration
With SSH I can add connections to my SSH config file at /.ssh/config Once added to the config file emacs will auto-complete these connections when using tramp integrations like find-file /ssh:
I would like emacs to auto-complete FTP connection…

kevzettler
- 327
- 2
- 13
1
vote
1 answer
Tramp FTP cant connect. tramp-file-name-handler: Host name must not match method "ftp"
I am trying to connect ftp using tramp I am using
C-x C-f
/ftp:username@subdomain.hostname.com
I get an error message in the mini buffer:
tramp-file-name-handler: Host name must not match method "ftp"

kevzettler
- 327
- 2
- 13
1
vote
1 answer
Problem with FTP connections under Windows
Say I have an org-link like [[file:/ftp:anonymous@ftp.gnu.org:]] to an FTP site that I would like to open in dired. Unfortunately, when opening the link, the following is prompted:
Opening FTP connection to ftp.gnu.org...
tramp-file-name-handler:…

Timm
- 1,549
- 12
- 23
1
vote
1 answer
ange-ftp problem on cygwin emacs
I've hit a brick wall with this. I'm running cygwin on a Windows 7 machine. I can't connect vai ange-ftp to an ftp server, hosted by godaddy.com. I do C-x C-f /username@ftp.foo.com: (to get a dir listing) or :index.html (file exists), and in both…

D Strozzi
- 101
- 1
- 5
0
votes
1 answer
Problems with FTP connection via Tramp
I try to create FTP connection via Tramp, but the output I get on AngeFTP is:
ftp> open android.local
ftp: Can't connect to `192.168.0.21:21': Connection refused
ftp: Can't connect to `android.local:ftp'
ftp>
I have tried many different options,…

Navidot
- 732
- 5
- 12
0
votes
2 answers
auth-password-store for ftp over tramp
When accessing remote ftp server with tramp
C-x C-f /ftp:user@host#port/
tramp asks me for password. I also use auth-password-store to store passwords in a pass-compatibale fashion, that is, host is specified in a filename of a gpg-encrypted file…
user12111