Skip to content

Frequently Asked Questions

  • What is the official name - “Tramp” or “TRAMP”?

    The official name is “Tramp”. This is used in comments, docstrings, and everywhere speaking about TRAMP.

    However, for historical reasons this is formatted as “@sc{Tramp}” in the TRAMP manual. So it looks different there.

  • Where is the latest TRAMP?

    TRAMP is available at the GNU URL:

    https://ftp.gnu.org/gnu/tramp/

    TRAMP’s GNU project page is located here:

    https://savannah.gnu.org/projects/tramp/

  • Which systems does it work on?

    The package works successfully on Emacs 27, Emacs 28, Emacs 29, and Emacs 30.

    While Unix and Unix-like systems are the primary remote targets, TRAMP has equal success connecting to other platforms, such as MS Windows 7/8/10.

  • How to speed up TRAMP?

    TRAMP does many things in the background, some of which depends on network speeds, response speeds of remote hosts, and authentication delays. During these operations, TRAMP’s responsiveness slows down. Some suggestions within the scope of TRAMP’s settings include:

    • Use an external method, such as scp, which are faster than internal methods for large files.

    • Keep the file tramp-persistency-file-name, which is where TRAMP caches remote information about hosts and files. Caching is enabled by default. Don’t disable it.

      Set remote-file-name-inhibit-cache to nil if remote files are not independently updated outside TRAMP’s control. That cache cleanup will be necessary if the remote directories or files are updated independent of TRAMP.

    • Disable version control to avoid delays:

      emacs-lisp
      (setq vc-ignore-dir-regexp
            (format "\\(%s\\)\\|\\(%s\\)"
                    vc-ignore-dir-regexp
                    tramp-file-name-regexp))

      If this is too radical, because you want to use version control remotely, trim vc-handled-backends to just those you care about, for example:

      emacs-lisp
      (setq vc-handled-backends '(SVN Git))
    • Disable file locks. Set remote-file-name-inhibit-locks to t if you know that different Emacs sessions are not modifying the same remote file.

    • Keep auto-save files local. This is already the default configuration in Emacs, don’t change it. If you want to disable auto-saving for remote files at all, set remote-file-name-inhibit-auto-save to t, but think about the consequences!

      If you want to disable auto-saving just for selected connections, for example due to security considerations, use connection-local variables in order to set buffer-auto-save-file-name. If you, for example, want to disable auto-saving for all sudo connections, apply the following code.

      emacs-lisp
      (connection-local-set-profile-variables
       'my-auto-save-profile
       '((buffer-auto-save-file-name . nil)))
      emacs-lisp
      (connection-local-set-profiles
       '(:application tramp :protocol "sudo")
       'my-auto-save-profile)
    • Use direct asynchronous processes if possible.

    • Suppress reading the remote history file in shell. Set shell-history-file-name to t.

    • Disable excessive traces. Set tramp-verbose to 3 or lower, default being 3. Increase trace levels temporarily when hunting for bugs.

  • TRAMP does not connect to the remote host

    Three main reasons for why TRAMP does not connect to the remote host:

    • Unknown characters in the prompt

      TRAMP needs a clean recognizable prompt on the remote host for accurate parsing. Shell prompts that contain escape sequences for coloring cause parsing problems. Remote shell setup hints for customizing prompt detection using regular expressions.

      To check if the remote host’s prompt is being recognized, use this test: switch to TRAMP connection buffer *tramp/foo*, put the cursor at the top of the buffer, and then apply the following expression:

      kbd
      M-: (re-search-forward (concat tramp-shell-prompt-pattern "$")) RET

      If the cursor has not moved to the prompt at the bottom of the buffer, then TRAMP has failed to recognize the prompt.

      When using zsh on remote hosts, disable zsh line editor because zsh uses left-hand side and right-hand side prompts in parallel. Add the following line to ~/.zshrc:

      bash
      [[ $TERM == "dumb" ]] && unsetopt zle && PS1='$ ' && return

      This uses the default value of tramp-terminal-type, "dumb", as value of the TERM environment variable. If you want to use another value for TERM, change tramp-terminal-type and this line accordingly.

      Alternatively, you can set the remote login shell explicitly. See Remote shell setup hints for discussion of this technique,

      When using fish shell on remote hosts, disable fancy formatting by adding the following to ~/.config/fish/config.fish:

      bash
      function fish_prompt
        if test $TERM = "dumb"
           echo "\$ "
        else
           ...
        end
      end

      When using WinSSHD on remote hosts, TRAMP does not recognize the strange prompt settings.

      A similar problem exist with the iTerm2 shell integration, which sends proprietary escape codes when starting a shell. This can be suppressed by changing the respective integration snippet in your ~/.profile like this:

      bash
      [ $TERM = "dumb" ] || \
      test -e "${HOME}/.iterm2_shell_integration.bash" && \
      source "${HOME}/.iterm2_shell_integration.bash"

      And finally, bash’s readline should not use key bindings like ‘C-j’ to commands. Disable this in your ~/.inputrc:

      bash
      $if term=dumb
      # Don't bind Control-J or it messes up TRAMP.
      $else
      "\C-j": next-history
      $endif
    • Echoed characters after login

      TRAMP suppresses echos from remote hosts with the stty -echo command. But sometimes it is too late to suppress welcome messages from the remote host containing harmful control characters. Using sshx or scpx methods can avoid this problem because they allocate a pseudo tty. See Inline methods.

    • TRAMP stops transferring strings longer than 500 characters

      Set tramp-chunksize to 500 to get around this problem, which is related to faulty implementation of process-send-string on HP-UX, FreeBSD and Tru64 Unix systems. Consult the documentation for tramp-chunksize to see when this is necessary.

      Set file-precious-flag to t for files accessed by TRAMP so the file contents are checked using checksum by first saving to a temporary file.

      emacs-lisp
      (add-hook
       'find-file-hook
       (lambda ()
         (when (file-remote-p default-directory)
           (set (make-local-variable 'file-precious-flag) t))))
  • TRAMP fails in a chrooted environment

    When connecting to a local host, TRAMP uses some internal optimizations. They fail when Emacs runs in a chrooted environment. In order to disable those optimizations, set user option tramp-local-host-regexp to nil.

  • TRAMP blocks Emacs at startup

    Some packages, like desktop.el or recentf.el, access remote files when loaded. If the requested file is not accessible, TRAMP could block. In order to check whether this could happen, add a test via access-file with a proper timeout prior to loading these packages:

    emacs-lisp
    (let ((remote-file-name-access-timeout 10))
      (access-file "/method:user@host:/path/to/file" "error"))
    nil

    The result nil means success. If the file is not accessible, or if the underlying operations last too long, access-file returns with an error.

    The value of the timeout (10 seconds in the example) depends on your preference and on the quality of the connection to the remote host. If the connection to the remote host isn’t established yet, and if this requires an interactive password, the timeout check doesn’t work properly.

    Note: In recent versions of Emacs, both packages already apply this check. You just need to customize remote-file-name-access-timeout to the desired timeout (in seconds).

  • Does TRAMP support SSH security keys?

    Yes. OpenSSH has added support for FIDO hardware devices via special key types *-sk. TRAMP supports the additional handshaking messages for them. This requires at least OpenSSH 8.2, and a FIDO U2F or FIDO2 compatible security key, like yubikey, solokey, nitrokey, or titankey.

    Note that there are reports on problems of handling FIDO2 (residential) keys by ssh-agent. As workaround, you might disable ssh-agent for such keys.

  • Does TRAMP support fingerprint readers?

    Yes. A fingerprint reader can be used as an additional authentication method for sudo-based logins. TRAMP supports the required additional handshaking messages[1]. If the fingerprint isn’t recognized by the fingerprint reader in time, authentication falls back to requesting a password.

    If the user option tramp-use-fingerprint is nil, TRAMP interrupts the fingerprint request, falling back to password authentication immediately.

  • TRAMP does not connect to Samba or MS Windows hosts running SMB1 connection protocol

    Recent versions of smbclient do not support old connection protocols by default. In order to connect to such a host, add a respective option:

    emacs-lisp
    (add-to-list 'tramp-smb-options "client min protocol=NT1")

    Note that using a deprecated connection protocol raises security problems, you should do it only if absolutely necessary.

  • File name completion does not work with TRAMP

    ANSI escape sequences from the remote shell may cause errors in TRAMP’s parsing of remote buffers.

    To test if this is the case, open a remote shell and check if the output of ls is in color.

    To disable ANSI escape sequences from the remote hosts, disable ‘--color=yes’ or ‘--color=auto’ in the remote host’s .bashrc or .profile. Turn this alias on and off to see if file name completion works.

  • File name completion does not work in directories with large number of files

    This may be related to globbing, which is the use of shell’s ability to expand wild card specifications, such as ‘*.c’. For directories with large number of files, globbing might exceed the shell’s limit on length of command lines and hang. TRAMP uses globbing.

    To test if globbing hangs, open a shell on the remote host and then run ls -d * ..?* > /dev/null.

    When testing, ensure the remote shell is the same shell (/bin/sh, ksh or bash), that TRAMP uses when connecting to that host.

  • How to get notified after TRAMP completes file transfers?

    Make Emacs beep after reading from or writing to the remote host with the following code in ~/.emacs.

    emacs-lisp
    (add-hook 'tramp-handle-write-region-hook 'beep)
    (add-hook 'tramp-handle-file-local-copy-hook 'beep)
  • How to get a Visual Warning when working with ‘root’ privileges? Host indication in the mode line?

    Install tramp-theme from GNU ELPA via Emacs’s Package Manager. Enable it via M-x load-theme RET tramp RET. Further customization is explained in user option tramp-theme-face-remapping-alist.

  • Remote host does not understand default options for directory listing

    Emacs computes the dired options based on the local host. Since Emacs 30, these options can be set connection-local.

    emacs-lisp
    (connection-local-set-profile-variables
     'my-dired-profile
     '((dired-listing-switches . "-ahl")))
    emacs-lisp
    (connection-local-set-profiles
     '(:application tramp :machine "remotehost")
     'my-dired-profile)

    In older Emacsen, you can set the dired options with a hook as follows:

    emacs-lisp
    (add-hook
     'dired-before-readin-hook
     (lambda ()
       (when (string-equal
               (file-remote-p default-directory 'host) "remotehost")
         (setq dired-actual-switches "-ahl"))))
  • TRAMP does not show directories or files although they are readable

    Internally, TRAMP uses commands like ls or stat in order to determine file permissions. When NFS4_ACL is enabled on the remote host, more fine-grained information is used which cannot be reflected by the permission string returned from those commands. Set the user option tramp-use-file-attributes to nil in such a case. This can also be set host-wise, like in:

    emacs-lisp
    (connection-local-set-profile-variables
     'my-file-attributes-profile
     '((tramp-use-file-attributes . nil)))
    emacs-lisp
    (connection-local-set-profiles
     '(:application tramp :machine "remotehost")
     'my-file-attributes-profile)
  • Where are remote files trashed to?

    Emacs can trash files instead of deleting them. Remote files are always trashed to the local trash, except the user option remote-file-name-inhibit-delete-by-moving-to-trash is non-nil, or it is a remote encrypted file (see Protect remote files by encryption), which are deleted anyway.

    If you want to trash a remote file into a remote trash directory, you can configure the user option trash-directory to a connection-local value.

    emacs-lisp
    (connection-local-set-profile-variables
     'remote-trash-directory
     '((trash-directory . "/sudo::~/.local/share/Trash")))
    emacs-lisp
    (connection-local-set-profiles
     `(:application tramp :protocol "sudo" :machine ,system-name)
     'remote-trash-directory)

    If Emacs is configured to use the XDG conventions for the trash directory, remote files cannot be restored with the respective tools, because those conventions don’t specify remote paths. Such files must be restored by moving them manually from ${XDG_DATA_HOME}/Trash/files/, if needed.

  • How to shorten long file names when typing in TRAMP?

    Adapt several of these approaches to reduce typing. If the full name is /ssh:news@news.my.domain:/opt/news/etc, then:

    1. Use simplified syntax:

      If you always apply the default method (see Selecting a default method), you can use the simplified TRAMP syntax (see Alternative file name syntax):

      emacs-lisp
      (customize-set-variable 'tramp-default-method "ssh")
      (tramp-change-syntax 'simplified)

      The reduced typing: C-x C-f /news@news.my.domain:/opt/news/etc RET.

    2. Use default values for method name and user name:

      You can define default methods and user names for hosts, (see Selecting a default method, see Selecting a default user):

      emacs-lisp
      (custom-set-variables
       '(tramp-default-method "ssh")
       '(tramp-default-user "news"))

      The reduced typing: C-x C-f /-:news.my.domain:/opt/news/etc RET.

      Note that there are some useful shortcuts already. Accessing your local host as ‘root’ user, is possible just by C-x C-f /su:: RET.

    3. Use configuration options of the access method:

      Programs used for access methods already offer powerful configurations (see Selecting config files for user/host name completion). For ssh, configure the file ~/.ssh/config:

      Host xy
           HostName news.my.domain
           User news

      The reduced typing: C-x C-f /ssh:xy:/opt/news/etc RET.

      Depending on the number of files in the directories, host names completion can further reduce key strokes: C-x C-f /ssh:x TAB.

    4. Use environment variables to expand long strings:

      For long file names, set up environment variables that are expanded in the minibuffer. Environment variables are set either outside Emacs or inside Emacs with Lisp:

      emacs-lisp
      (setenv "xy" "/ssh:news@news.my.domain:/opt/news/etc/")

      The reduced typing: C-x C-f $xy RET.

      Note that file name cannot be edited here because the environment variables are not expanded during editing in the minibuffer.

    5. Define own keys:

      Redefine another key sequence in Emacs for C-x C-f:

      emacs-lisp
      (global-set-key
       [(control x) (control y)]
       (lambda ()
         (interactive)
         (find-file
          (read-file-name
           "Find TRAMP file: "
           "/ssh:news@news.my.domain:/opt/news/etc/"))))

      Simply typing C-x C-y would prepare minibuffer editing of file name.

      See the Emacs Wiki for a more comprehensive example.

    6. Define own abbreviation (1):

      Abbreviation list expansion can be used to reduce typing long file names:

      emacs-lisp
      (add-to-list 'directory-abbrev-alist
                   '("^/xy" . "/ssh:news@news.my.domain:/opt/news/etc/"))

      The reduced typing: C-x C-f /xy RET.

      Note that file name cannot be edited here because the abbreviations are not expanded during editing in the minibuffer. Furthermore, the abbreviation is not expanded during TAB completion.

    7. Define own abbreviation (2):

      The abbrev-mode gives additional flexibility for editing in the minibuffer:

      emacs-lisp
      (define-abbrev-table 'my-tramp-abbrev-table
        '(("xy" "/ssh:news@news.my.domain:/opt/news/etc/")))
      emacs-lisp
      (add-hook
       'minibuffer-setup-hook
       (lambda ()
         (abbrev-mode 1)
         (setq local-abbrev-table my-tramp-abbrev-table)))
      emacs-lisp
      (advice-add 'minibuffer-complete
       :before 'expand-abbrev)

      The reduced typing: C-x C-f xy TAB.

      The minibuffer expands for further editing.

    8. Use bookmarks:

      Use bookmarks to save TRAMP file names.

      Upon visiting a location with TRAMP, save it as a bookmark with menu-bar edit bookmarks set.

      To revisit that bookmark: menu-bar edit bookmarks jump.

    9. Use recent files:

      recentf remembers visited places.

      Keep remote file names in the recent list without have to check for their accessibility through remote access:

      emacs-lisp
      (recentf-mode 1)

      Reaching recently opened files: menu-bar file Open Recent.

    10. Use filecache:

      Since filecache remembers visited places, add the remote directory to the cache:

      emacs-lisp
      (with-eval-after-load 'filecache
        (file-cache-add-directory
          "/ssh:news@news.my.domain:/opt/news/etc/"))

      Then use directory completion in the minibuffer with C-x C-f C-TAB.

    11. Use bbdb:

      bbdb has a built-in feature for Ange FTP files, which also works for TRAMP file names.

      Load bbdb in Emacs:

      emacs-lisp
      (require 'bbdb)
      (bbdb-initialize)

      Create a BBDB entry with M-x bbdb-create-ftp-site RET. Then specify a method and user name where needed. Examples:

      kbd
      M-x bbdb-create-ftp-site RET
      Ftp Site: news.my.domain RET
      Ftp Directory: /opt/news/etc/ RET
      Ftp Username: ssh:news RET
      Company: RET
      Additional Comments: RET

      In BBDB buffer, access an entry by pressing the key F.

    Thanks to TRAMP users for contributing to these recipes.

  • Why don’t saved ad-hoc multi-hop file names work in a new Emacs session?

    By default, ad-hoc multi-hop file names are abbreviated after completing the initial connection. These abbreviated forms retain only the final hop, and so only the Emacs session that generated the abbreviated form can understand it. See Declaring multiple hops in the file name.

    For example, after connecting to /ssh:bird@bastion|ssh:news@news.my.domain:/opt/news/etc, the file name becomes /ssh:news@news.my.domain:/opt/news/etc. If the abbreviated form is saved in a bookmark, the recent files list, bbdb, or similar, a new Emacs session has no way to know that the connection must go through ‘bird@bastion’ first.

    There are two mechanisms to deal with this. The first is to customize tramp-show-ad-hoc-proxies to a non-nil value, which disables abbreviation. Then the fully-qualified ad-hoc multi-hop file name is the one that will be both displayed and saved. See tramp-show-ad-hoc-proxies.

    Alternatively, you can customize tramp-save-ad-hoc-proxies to a non-nil value which means to save the information how an abbreviated multi-hop file name can be expanded. See tramp-save-ad-hoc-proxies.

  • How to connect to a remote Emacs session using TRAMP?

    Configure Emacs Client

    Then on the remote host, start the Emacs Server:

    emacs-lisp
    (require 'server)
    (setq server-host (system-name)
          server-use-tcp t)
    (server-start)

    If (system-name) of the remote host cannot be resolved on the local host, use IP address instead.

    Copy from the remote host the resulting file ~/.emacs.d/server/server to the local host, to the same location.

    Then start Emacs Client from the command line:

    bash
    $ emacsclient /ssh:user@host:/file/to/edit

    user and host refer to the local host.

    To make Emacs Client an editor for other programs, use a wrapper script emacsclient.sh:

    bash
    #!/bin/sh
    emacsclient /ssh:$(whoami)@$(hostname --fqdn):$1

    Then change the environment variable EDITOR to point to the wrapper script:

    bash
    $ export EDITOR=/path/to/emacsclient.sh
  • How to determine whether a buffer is remote?

    The buffer-local variable default-directory tells this. If the form (file-remote-p default-directory) returns non-nil, the buffer is remote. See the optional arguments of file-remote-p for determining details of the remote connection.

  • How to save files when a remote host isn’t reachable anymore?

    If the local machine Emacs is running on changes its network integration, remote hosts could become unreachable. This happens, for example, if the local machine is moved between your office and your home without restarting Emacs.

    In such cases, the command tramp-rename-files can be used to alter remote buffers’ method, host, and/or directory names. This permits saving their contents in the same location via another network path, or somewhere else entirely (including locally). see Renaming remote files.

  • How to prevent TRAMP from clearing the recentf-list?

    When TRAMP cleans a connection, it removes the respective remote file name(s) from recentf-list. This is needed, because an unresponsive remote host could trigger recentf to connect that host again and again.

    If you find the cleanup disturbing, because the file names in recentf-list are precious to you, you can add the following two forms in your ~/.emacs (after loading the tramp and recentf packages):

    emacs-lisp
    (remove-hook
     'tramp-cleanup-connection-hook
     #'tramp-recentf-cleanup)
    emacs-lisp
    (remove-hook
     'tramp-cleanup-all-connections-hook
     #'tramp-recentf-cleanup-all)
  • I get a warning ‘Tramp has been compiled with Emacs a.b, this is Emacs c.d

  • I get an error ‘tramp-file-name-handler: Invalid function: tramp-compat-with-mutex

    TRAMP comes with compatibility code for different Emacs versions. When you see such a message (the text might differ), you don’t use the Emacs built-in version of TRAMP, and you must recompile it. In case you have installed TRAMP from GNU ELPA, see https://www.gnu.org/software/tramp/#ELPA-Installation. Otherwise, see https://www.gnu.org/software/tramp/#Recompilation.

  • I get an error ‘Remote file error: Forbidden reentrant call of Tramp

    Timers, process filters and sentinels, and other event based functions can run at any time, when a remote file operation is still running. This can cause TRAMP to block. When such a situation is detected, this error is triggered. It should be fixed in the respective function (sending an error report will help), but for the time being you can suppress this error by the following code in your ~/.emacs:

    emacs-lisp
    (setq debug-ignored-errors
          (cons 'remote-file-error debug-ignored-errors))
  • I get an error ‘Remote file error: Not a valid Tramp file name function `tramp-FOO-file-name-p'

    TRAMP has changed the signature of an internal function. External packages implementing an own TRAMP backend must follow this change. Please report this problem to the author of that package.

    For the running session, TRAMP disables the external package, and you can continue to work. If you don’t want to see this error while activating TRAMP, you can suppress it by the same code as above in your ~/.emacs:

    emacs-lisp
    (setq debug-ignored-errors
          (cons 'remote-file-error debug-ignored-errors))
  • I get an error ‘unix_listener: path "/very/long/path/.cache/emacs/tramp.XXX" too long for Unix domain socket’ when connecting via ssh to a remote host.

    By default, TRAMP uses the directory ~/.cache/emacs/ for creation of OpenSSH Unix domain sockets. On GNU/Linux, domain sockets have a much lower maximum path length (currently 107 characters) than normal files.

    You can change this directory by setting the user option small-temporary-file-directory to another name, like

    emacs-lisp
    (unless small-temporary-file-directory
      (customize-set-variable
       'small-temporary-file-directory
       (format "/run/user/%d/emacs/" (user-uid)))
      (make-directory small-temporary-file-directory t))

    "/run/user/UID" is the value of the environment variable XDG_RUNTIME_DIR, which you can use instead via (getenv "XDG_RUNTIME_DIR").

  • How to ignore errors when changing file attributes?

    Sometimes, for example while saving remote files, errors appear when changing file attributes like permissions, time stamps, or ownership. If these errors can be ignored, set user option tramp-inhibit-errors-if-setting-file-attributes-fail to a non-nil value. This transforms the error into a warning.

  • How to disable other packages from calling TRAMP?

    There are packages that call TRAMP without the user ever entering a remote file name. Even without applying a remote file syntax, some packages enable TRAMP on their own. How can users disable such features.

    • ido.el

      Disable TRAMP file name completion:

      emacs-lisp
      (customize-set-variable 'ido-enable-tramp-completion nil)
    • rlogin.el

      Disable remote directory tracking mode:

      emacs-lisp
      (rlogin-directory-tracking-mode -1)
  • How to disable TRAMP?

    • To keep Ange FTP as default the remote files access package, set this in .emacs:

      emacs-lisp
      (customize-set-variable 'tramp-default-method "ftp")

      If you want to enable Ange FTP’s syntax, add the following form:

      emacs-lisp
      (tramp-change-syntax 'simplified)
    • To deactivate TRAMP for some look-alike remote file names, set tramp-ignored-file-name-regexp to a proper regexp in .emacs. Note, that we don’t use customize-set-variable, in order to avoid loading TRAMP.

      emacs-lisp
      (setq tramp-ignored-file-name-regexp "\\`/ssh:example\\.com:")

      This is needed, if you mount for example a virtual file system on your local host’s root directory as /ssh:example.com:.

    • To disable both TRAMP (and Ange FTP), type M-x inhibit-remote-files RET. You can also add this to your .emacs.

      emacs-lisp
      (inhibit-remote-files)
    • If you write code, which is intended to run only for local files, you can use the without-remote-files macro.

      emacs-lisp
      (without-remote-files ...)

      This improves performance, because many primitive file name operations don’t check any longer for TRAMP file name regexps then.

    • To unload TRAMP, type M-x tramp-unload-tramp RET. Unloading TRAMP resets Ange FTP plugins also.

  • What is the difference between Ange FTP and TRAMP?

    The difference is that Ange FTP uses ftp to transfer files between the local and the remote host, whereas TRAMP uses a combination of ssh and scp or other work-alike programs.


  1. It supports fingerprint readers driven by fprintd. ↩︎