Quickly switching between virtual sessions (screen?)
Solution 1:
Just to expand on what Ansgar said in case you aren't very familiar with gnu screen, Having multiple "windows" in a single screen session will likely accomplish what you need.
ctrl+a, c will create a new "window" in your active screen session. You can switch between multiple windows (as Ansgar indicated) with ctrl+a, n for the next window, and ctrl+a,p for the previous window.
ctrl+a," will give you a list of all your open windows.
Using these easy shortcuts will let you switch between different terminals very quickly and easily, accomplishing your goal without using multiple screen sessions.
If you add the following line to ~/.screenrc it will always display your open windows and which one is selected, so you don't need to keep track of which window you're on by remembering.
hardstatus alwayslastline '%{= kg}[ %{G}%H %{g}][%= %{= kB}%?%-Lw%?%{+b r}(%{G}%n*%f %t%?(%u)%?%{r})%{-b B}%?%+Lw%?%?%= %{g}%]'
This is the hardstatus line that I like to use, but it's completely customizable (see man page or search google for "gnu screen hardstatus").
There are a ton of other things you can do with it (naming the different open windows for example), so it's worth reading some tutorials.
Here are a couple I found with a quick search:
http://news.softpedia.com/news/GNU-Screen-Tutorial-44274.shtml
http://www.ibm.com/developerworks/aix/library/au-gnu_screen/
And of course the most useful of all:
# From your terminal:
$ man screen
Hope that helps.
Matthew
Solution 2:
Yes, screen
is most likely the way to go. Ctrl+a,n will take you to the next window, Ctrl+a,p to the previous one. Ctrl+a,0..9 will allow you to switch to a particular screen.
Solution 3:
After so much time I made a Script to work around this completely missing feature. First of all it needs a fifo:
mkdir ~/.screen
mkfifo ~/.screen/pipe
This named pipe is useful for the communication between the detatched session and the "Main-without-screen" session.
File sc ( in $PATH ):
#!/bin/bash
CONFIGFILE=~/.screen/"$1""rc"
if [ ! -r $CONFIGFILE ] ; then
echo "Configurazione per $1 Assente" >&2
exit 1
fi
exec 3<> ~/.screen/pipe
if [ "$STY" != "" ] ; then
screen -d "$STY"
echo "$1" >&3
else
screen -r "$1" 2>/dev/null || screen -S "$1" -c $CONFIGFILE
while true ; do
read line <&3
screen -r "$line" 2>/dev/null || screen -S "$line" -c ~/.screen/"$line""rc"
done
fi
An Example of a "CONFIGFILE" is: ~/.screen/Monitorrc
layout new Monitor
screen -t "bash" bash --login
split -v
focus next
split
focus bottom
screen -t "cv" sh -c "watch /usr/bin/cv -w"
split
focus bottom
screen -t "sys.log" sh -c "tail -F /var/log/sys.log"
focus up
focus up
resize 25
screen -t "top" sh -c "top"
focus left
The result is: when you want to launch screen type:
sc Monitor
or another sessionrc you like to invent, I use the Session Work for various stuff
Ex: ~/.screen/Workrc
layout new Work
screen -t "bash" bash --login
Now we are in the Session Monitor, when we type:
sc Work
the session Monitor detaches itself and write "Work" to the namedpipe. Consequently the first sc script goes forward and attach the session "Work".
The sc invoked from the session Monitor close.
When we detach all Sessions we are in a infinite loop so we have to do Ctrl-c to exit.