diff options
| author | Michael Albinus | 2010-12-14 21:37:49 +0100 |
|---|---|---|
| committer | Michael Albinus | 2010-12-14 21:37:49 +0100 |
| commit | 305bdd223aec2eaaeb9f6b6ad234ee0ab5e9103d (patch) | |
| tree | 57e6eb3cece4ccdba7a448e564ac5496cc5e5849 | |
| parent | d68b02203ee499f51f3dcb7703e426d971cda664 (diff) | |
| download | emacs-305bdd223aec2eaaeb9f6b6ad234ee0ab5e9103d.tar.gz emacs-305bdd223aec2eaaeb9f6b6ad234ee0ab5e9103d.zip | |
* tramp.texi (Inline methods): Add "ksu" method.
(Remote processes): Add example with remote `default-directory'.
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/tramp.texi | 21 |
2 files changed, 22 insertions, 4 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 1ddabaaa707..65f9dbb67df 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-12-14 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * tramp.texi (Inline methods): Add "ksu" method. | ||
| 4 | (Remote processes): Add example with remote `default-directory'. | ||
| 5 | |||
| 1 | 2010-12-14 Glenn Morris <rgm@gnu.org> | 6 | 2010-12-14 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * faq.texi (Expanding aliases when sending mail): | 8 | * faq.texi (Expanding aliases when sending mail): |
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index 6a77c138404..dd9fd32cb44 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi | |||
| @@ -696,6 +696,14 @@ This method is also similar to @option{ssh}. It only uses the | |||
| 696 | @command{krlogin -x} command to log in to the remote host. | 696 | @command{krlogin -x} command to log in to the remote host. |
| 697 | 697 | ||
| 698 | 698 | ||
| 699 | @item @option{ksu} | ||
| 700 | @cindex method ksu | ||
| 701 | @cindex ksu method | ||
| 702 | @cindex Kerberos (with ksu method) | ||
| 703 | |||
| 704 | This is another method from the Kerberos suite. It behaves like @option{su}. | ||
| 705 | |||
| 706 | |||
| 699 | @item @option{plink} | 707 | @item @option{plink} |
| 700 | @cindex method plink | 708 | @cindex method plink |
| 701 | @cindex plink method | 709 | @cindex plink method |
| @@ -2483,6 +2491,15 @@ remote file names. It does not work for the @option{ftp} and | |||
| 2483 | @option{smb} methods. Association of a pty, as specified in | 2491 | @option{smb} methods. Association of a pty, as specified in |
| 2484 | @code{start-file-process}, is not supported. | 2492 | @code{start-file-process}, is not supported. |
| 2485 | 2493 | ||
| 2494 | @code{process-file} and @code{start-file-process} work on the remote | ||
| 2495 | host, when the variable @code{default-directory} is remote: | ||
| 2496 | |||
| 2497 | @lisp | ||
| 2498 | (let ((default-directory "/ssh:remote.host:")) | ||
| 2499 | (start-file-process "grep" (get-buffer-create "*grep*") | ||
| 2500 | "/bin/sh" "-c" "grep -e tramp *")) | ||
| 2501 | @end lisp | ||
| 2502 | |||
| 2486 | @ifset emacsgvfs | 2503 | @ifset emacsgvfs |
| 2487 | If the remote host is mounted via GVFS (see @ref{GVFS based methods}), | 2504 | If the remote host is mounted via GVFS (see @ref{GVFS based methods}), |
| 2488 | the remote filesystem is mounted locally. Therefore, there are no | 2505 | the remote filesystem is mounted locally. Therefore, there are no |
| @@ -3665,7 +3682,3 @@ for @value{emacsothername}. | |||
| 3665 | @c * Use `filename' resp. `file name' consistently. | 3682 | @c * Use `filename' resp. `file name' consistently. |
| 3666 | @c * Use `host' resp. `machine' consistently. | 3683 | @c * Use `host' resp. `machine' consistently. |
| 3667 | @c * Consistent small or capitalized words especially in menues. | 3684 | @c * Consistent small or capitalized words especially in menues. |
| 3668 | |||
| 3669 | @ignore | ||
| 3670 | arch-tag: f96dd66e-6dd3-4c92-8d77-9c56205ba808 | ||
| 3671 | @end ignore | ||