1

I am using remotely logged in to my work server through SSH. I have to work on terminal and it will be helpful if I can pull up multiple terminal to access multiple directories and files. How can I do that? I am a beginner. So, any help will be greatly appreciated.

2 Answers 2

4

screen is a great tool for this.

screen -m

will open a daemonized screen window and you can detach it to return to your primary shell with

Ctrl+A , then press D

To resume the screen use

screen -r

You can create multiple screens with names and resume them individually. Checkout the manpages for more info

Sign up to request clarification or add additional context in comments.

1 Comment

This works but scrren pops up a new terminal on top of existing one. So, I can't simultaneously work on both of them. Is there any way to detach it?
1

You can use "screen" on you server to open more shell session in a "dedicated" environment so you can even disconnect from the server without loosing your shells (in case of idle, for example).

see http://www.rackaid.com/resources/linux-screen-tutorial-and-how-to/

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.