aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2010-01-17 13:15:25 +0100
committerMichael Albinus2010-01-17 13:15:25 +0100
commit3d1bfa99c9228d7e238c954e6ec2478c41ec58ff (patch)
treeac2fec772acca04be6b27151310f67d7dde77b89
parent05287c4978d17118e941d034779eadababafed7f (diff)
downloademacs-3d1bfa99c9228d7e238c954e6ec2478c41ec58ff.tar.gz
emacs-3d1bfa99c9228d7e238c954e6ec2478c41ec58ff.zip
* tramp.texi (Frequently Asked Questions): Add GNU Emacs 23 and
SXEmacs 22 to the supported systems. New item for hung ssh sessions.
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/tramp.texi31
2 files changed, 26 insertions, 10 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index c179fefa2bb..3226b1cc3cd 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12010-01-17 Michael Albinus <michael.albinus@gmx.de>
2
3 * tramp.texi (Frequently Asked Questions): Add GNU Emacs 23 and
4 SXEmacs 22 to the supported systems. New item for hung ssh sessions.
5
12010-01-17 Glenn Morris <rgm@gnu.org> 62010-01-17 Glenn Morris <rgm@gnu.org>
2 7
3 * calc.texi (Reporting Bugs): Don't mention format of repository. 8 * calc.texi (Reporting Bugs): Don't mention format of repository.
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index ff686ee03d4..a01eda22c12 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -2749,9 +2749,8 @@ There is also a Savannah project page.
2749@item 2749@item
2750Which systems does it work on? 2750Which systems does it work on?
2751 2751
2752The package has been used successfully on GNU Emacs 21, GNU Emacs 22 2752The package has been used successfully on GNU Emacs 21, GNU Emacs 22,
2753and XEmacs 21 (starting with 21.4). Gateway methods are supported for 2753GNU Emacs 23, XEmacs 21 (starting with 21.4), and SXEmacs 22.
2754GNU Emacs 22 only.
2755 2754
2756The package was intended to work on Unix, and it really expects a 2755The package was intended to work on Unix, and it really expects a
2757Unix-like system on the remote end (except the @option{smb} method), 2756Unix-like system on the remote end (except the @option{smb} method),
@@ -2762,12 +2761,6 @@ There is some informations on @value{tramp} on NT at the following URL;
2762many thanks to Joe Stoy for providing the information: 2761many thanks to Joe Stoy for providing the information:
2763@uref{ftp://ftp.comlab.ox.ac.uk/tmp/Joe.Stoy/} 2762@uref{ftp://ftp.comlab.ox.ac.uk/tmp/Joe.Stoy/}
2764 2763
2765@c The link is broken. I've contacted Tom for clarification. Michael.
2766@ignore
2767The above mostly contains patches to old ssh versions; Tom Roche has a
2768Web page with instructions:
2769@uref{http://www4.ncsu.edu/~tlroche/plinkTramp.html}
2770@end ignore
2771 2764
2772@item 2765@item
2773How could I speed up @value{tramp}? 2766How could I speed up @value{tramp}?
@@ -2838,7 +2831,6 @@ the following command:
2838[ $TERM = "dumb" ] && unsetopt zle && PS1='$ ' 2831[ $TERM = "dumb" ] && unsetopt zle && PS1='$ '
2839@end example 2832@end example
2840 2833
2841
2842@item 2834@item
2843@value{tramp} doesn't transfer strings with more than 500 characters 2835@value{tramp} doesn't transfer strings with more than 500 characters
2844correctly 2836correctly
@@ -2870,6 +2862,25 @@ checksum.
2870 2862
2871 2863
2872@item 2864@item
2865@value{tramp} does not recognize hung @command{ssh} sessions
2866
2867When your network connection is down, @command{ssh} sessions might
2868hang. @value{tramp} cannot detect it safely, because it still sees a
2869running @command{ssh} process. Timeouts cannot be used as well,
2870because it cannot be predicted, how long a remote command will last,
2871for example when copying very large files.
2872
2873Therefore, you must configure the @command{ssh} process to die
2874in such a case. The following entry in @file{~/.ssh/config} would do
2875the job:
2876
2877@example
2878Host *
2879 ServerAliveInterval 5
2880@end example
2881
2882
2883@item
2873File name completion does not work with @value{tramp} 2884File name completion does not work with @value{tramp}
2874 2885
2875When you log in to the remote machine, do you see the output of 2886When you log in to the remote machine, do you see the output of