Jump to content

Ubuntu server screens.

I'm learn how to use screens and how  many screens can you run at a time and How do you name them? I'm trying to do screen -t Name but it seems like that does nothing. 

Link to comment
Share on other sites

Link to post
Share on other sites

I don't use screens but would suggest using tmux instead, it has the same functionality but some extra goodies. check out this link for a comparison http://superuser.com/questions/236158/tmux-vs-screen

 

in tmux you only do:

 

tmux new -s name_of_session

 

to get a named session and then

 

tmux ls

 

to list your sessions and

 

tmux attach -t name_of_session

 

to attach to the target session

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×