Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I run tmux locally and connect via ssh to remote machine.. and after that any new pane and/or screen to be with the remote-machine-shell... What I'm saying I can't install tmux on the remote machine, but I don't want to do a ssh connection from every pane, but ssh-login just once.

Is such thing possible.. thanks

share|improve this question
Can you install tmux in your home directory on the remote machine? Without tmux, ssh just provides you with a single terminal. – chepner May 10 '12 at 16:40
That is the problem I can't install anything on the remote machine.. policy – user1019129 May 11 '12 at 14:35

3 Answers

I don't think tmux can. One workaround would be to add something like this to tmux.conf.

bind-key X new-window "ssh HOST"

Then new windows would start at the remote host.

share|improve this answer
hmm.. it opens a new-window.. Is there a way to just run the command w/o creating new window, but stay in the pane I executed the bind-key-command. run-shell doesn't do that either. – user1019129 May 10 '12 at 18:30
1  
not sure I understand your question, but does bind-key X send-key "ssh HOST\n" do what you want? – Thor May 10 '12 at 22:26
sort of yeah ... :) thanx. Btw: it did not execute the "\n" .... I found it it is C-m instead of \n – user1019129 May 11 '12 at 14:28

lilydjwg explained something I never really understood before. Knowing about the ControlMaster setting makes the following much more reasonable, as it simplifies making multiple ssh connections. You only need to authenticate once, and the remote host doesn't need to have an sshd process running for each connection.

In your .tmux.conf file:

# What host do you usually log in to?
# We'll ssh there by default each time a new window or pane is opened.
REMOTE_HOST=your.usual.host
set-option -g default-command "ssh $REMOTE_HOST"

# Simple interface to change which host is connected to when you create
# a new window or pane.
bind-key C-h command-prompt -p "Set remote host: " -I $REMOTE_HOST "set-option default-command 'ssh %%'"

# In case you really do want a new window with a local shell.
bind-key C new-window ""
share|improve this answer

If you want to login just once, you can use ControlMaster feature of ssh. Add some config like this to your ~/.ssh/config:

ControlMaster auto
ControlPath /tmp/ssh_mux_%h_%p_%r

If you login to the same server (as the same user) multiple times (either in one tmux or not), ssh will reuse the connection so that you don't need to make connection and login again.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.