Tagged Questions
Screen is a full-screen window manager that multiplexes a physical terminal between several processes, typically interactive shells. Before using this tag, read the "Which site is more adequate?" session of the tag wiki.
49
votes
18answers
9k views
GNU Screen Survival Guide
What do people think are not only the essential things you need to know about the excellent Screen utility but the things that you'd think worthwhile to teach someone, a beginner, from the ground up.
...
33
votes
3answers
9k views
What's a good Java, curses-like, library for terminal applications?
I would like to write a Java terminal application that does screen manipulation. Are there any good libraries out there that allow you to manipulate the screen like curses in the *nix/C world?
...
28
votes
6answers
23k views
Kill detached screen session
I learned from somewhere a detached screen can be killed by
screen -X -S [session # you want to kill] kill
where [session # you want to kill] can be gotten from
screen -ls
.
But this ...
22
votes
5answers
7k views
Using the scrollwheel in GNU screen
How can I setup GNU screen to allow the mouse's scrollwheel to scroll around in the scrollback buffer? I tried to Google about this, but most hits where on how to allow applications inside screen to ...
12
votes
6answers
13k views
How to list running screen sessions?
I have a bunch of servers, on which I run experiments using screen. The procedure is the following :
ssh to server XXX
launch screen
start experiments in a few tabs
detach screen
disconnect from the ...
11
votes
7answers
5k views
Unable to use Screen efficiently in Mac's Terminal
The post summarizes problems in using Screen in Mac's terminal when you have the following in your .zshrc
if [[ $STY = '' ]] then screen -xR; fi
Solution #1 is not working but Solution #2 works: ...
10
votes
6answers
3k views
gnu screen - changing the default escape command key to ALT-X?
In GNU screen, I want to change the default command binding to Alt-s (by tweaking .screenrc) instead of the default C-a, the reason is I use emacs hence GNU screen binds the C-a key, sending "C-a" to ...
9
votes
3answers
3k views
How to clear the scrollback in the screen command?
I use the screen command for command-line multitasking in Linux and I set my scrollback buffer length to a very large value. Is there a key combination to clear the buffer for a certain tab when I ...
8
votes
1answer
571 views
vim screen restore
i use vim in screen for development and if i quit vim, the current screen-content stays there...
outside the screen (xterm), exiting vim will restore the previous buffer
(like:
[ server1 ]~$ cmd
...
8
votes
2answers
2k views
VIM Colorschemes in Screen & PuTTy?
I've been trying to get colourschemes to work properly in VIM when using it over ssh with PuTTy as a client but unfortunately I haven't had much success. I can only get 8bit colours working with PuTTY ...
8
votes
8answers
2k views
Using GNU Screen completely transparently and automatically
Screen is amazing, of course, but I don't want to have to think about it. I often ssh to a machine, start doing a bunch of stuff, and then think "gosh, I wish I had thought to start a screen session ...
8
votes
4answers
3k views
Automatically (or more easily) reconnect to a screen session after network interruption
ADDED: This question is now, I believe, subsumed by this one:
http://stackoverflow.com/questions/1075947/can-i-use-gnu-screen
See also this related question:
...
7
votes
3answers
3k views
Mac os x Terminal.app's buffer and screen command
I use Mac os x Terminal.app to connect to my remote machine and then use screen on that machine.
Is there a way to use the scrollbars on Terminal to scroll back and forth on the screen's buffer. It ...
6
votes
2answers
625 views
Gnu screen in emacs shell mode: how to fix color escape codes
I would like to attach screen or tmux inside emacs, in shell mode. I often find myself running emacs with inferior processes inside screen on remote servers; it would be nice if I could shift the ...
6
votes
5answers
4k views
Cannot detach screen session
I am very new to screen and I have hit C-Something instead of C-a. Now I cannot detach or do any other commands. What can I do to detatch my screen session?
Thank you.
5
votes
1answer
98 views
Run screen from Perl
I have a Jar file that I would like to run through screen, although when I try to open the Perl script everything seems to be working fine, although when I do top I do not see the process in the list, ...
5
votes
2answers
313 views
Is there an easier way to send ENTER key in GNU Screen?
Currently I am using a script to spawn a daemon:
screen -r user -X stuff "spawn daemon"
screen -r user -X eval "stuff \015"
Is there an easier way to send the enter key ("\015"), or in fact a ...
5
votes
4answers
1k views
Set a name for screens with the 'screen' command
I'm using the 'screen' multiplexer tool on the command shell and open a lot of screens. So I forget wich process ID is wich task.
I Would like to set a name for a screen but can't find an option in ...
5
votes
3answers
2k views
How to make GNU Screen start a new window at the CURRENT working directory?
By default, when you create a new window in GNU Screen, it will start in the directory where screen is invoked. I want to start a new window in GNU Screen at the current working directory of the ...
5
votes
5answers
6k views
Gnu-Screen: Run script that sends commands to the screen session it is being run in
Is it possible to write a script to change the name and turn on monitoring for the current tab assuming that it is being run in screen?
Thanks.
5
votes
3answers
1k views
SSH, screen and XDISPLAY
I use screen to persist my work session and connect to the same session from multiple machines. How can I setup SSH and screen such that the XDISPLAY variable inside my persistent screen session is ...
5
votes
2answers
1k views
Screen + vim causes shift-enter to insert 'M' and a newline
When running a vim instance in gnu screen hitting shift enter in insert mode adds an 'M' and then a newline, rather than just a newline.
Does anybody know what the problem might be, or where to look? ...
4
votes
1answer
154 views
Python inside GNU Screen eventually becomes idle if Screen is dettached
I have a python script which uses multiprocessing and subprocess to launch multiple external commands in parallel with different arguments. The code can be found here.
For convenience I launch this ...
4
votes
5answers
595 views
Binding M-<up> / M-<down> in emacs 23.1.1
I'm trying to put in a feature that I miss from eclipse, where Alt+[Up/Down] transposes the lines up or down, but can not for the life of me figure out how to assign to these keys properly. I am using ...
4
votes
2answers
1k views
Writing a script to close screen session
I have a bunch of screen sessions running on my machine, but all of them are detached and unneeded. Is there a good way to just close all of them, so I have nothing when I type "screen -ls"?
4
votes
3answers
1k views
GNU Screen running a bash init script
I'm sure there is an answer to this in the manual to screen, but I can't find it!
I want the bash shell spawned by GNU screen to source in a file in addition to the .bashrc that it already runs.
I ...
4
votes
7answers
430 views
Can you make vi “advance” the screen when opened?
I often work in vi, suspend vi, run something on the cli, and then fg back into vi to work on the results. For instance, fixing errors that showed up when I ran the cli command.
However, when I fg ...
4
votes
4answers
2k views
multi tabbed SSH client using screen
Is there an SSH client that can present a client side GUI interface to the screen* program?
I'm thinking of an SSH program that would hook in with screen's session handling and map client side ...
3
votes
1answer
99 views
Displaying a window's user in GNU screen's hardstatus
I'm looking for a way to display the active user for each window in a GNU screen session in its the hardstatus line.
Example
I have the following windows open
Window 0 - user1@localmachine
Window ...
3
votes
1answer
191 views
How do I get GNU screen to read .bash_profile/.bash_rc changes?
After I make changes in .bash_rc or .bash_profile, when I start GNU screen, it doesn't recognize those changes.
I can
source ~/.bash_profile
and it works for the current screen window I have open, ...
3
votes
1answer
135 views
Emacsclient does not respond to mouse clicks
When I run emacsclient it does not respond to mouse clicks. My main Emacs process runs in a terminal and responds to mouse clicks correctly because I have the following code in my Emacs config file:
...
3
votes
2answers
219 views
How can I tell whether I'm in a screen?
When using screen in linux, how can I tell if I'm in a screen or not?
I could do exit and I'll exit a screen if I was in one, but if I wasn't, then I'll end up closing my terminal.
When doing screen ...
3
votes
3answers
124 views
Program dumps data to stdout fast. Looking for way to write commands without getting flooded
Program is dumping to stdout and while I try to type new commands I can't see what I'm writing because it gets thrown along with the output. Is there a shell that separates commands and outputs? Or ...
3
votes
4answers
897 views
Copying GNU screen scrollback buffer to file (extended hardcopy)?
How do I easily copy the GNU screen scrollback buffer to a file? IE, a
more powerful version of the 'hardcopy' command?
In GNU screen, I can use "ctrl-a ESC" to enter the scrollback
buffer. I ...
3
votes
1answer
282 views
Screen and Cygwin: no tab completion?
I'm having some problems working with my development environment. Specifically, after I invoke the screen utility from within Cygwin I lose the ability to do tab completion. Before I invoke screen ...
3
votes
3answers
1k views
Working with vim on multiple monitors
I have three monitors.
I normally run one maximized xterm on each monitor, attached to the same GNU screen session.
Can a similar model be used for vim? Is it possible to have three vims running, ...
3
votes
1answer
599 views
How to detach screen programmatically in linux?
This question is about the linux utility screen.
I'd like to make a script to launch a program in screen then detatch it automatically after it starts.
I've got the script starting screen, starting ...
3
votes
3answers
1k views
Loading zsh as the default shell in gnu screen [closed]
Im using KUbuntu 10.04 (Lucid Lynx). I have installed zsh and screen. I have set zsh as the default shell, by setting Command to zsh in Settings->Edit Current Profile of the terminal.
But,when i ...
3
votes
2answers
105 views
What is common between environments within a shell terminal session?
I have a custom shell script that runs each time a user logs in or identity is assumed, its been placed in /etc/profile.d and performs some basic env variable operations. Recently I added some code ...
3
votes
2answers
521 views
When using vim or less in gnu screen, quitting vim or less leaves a lingering imprint
On my new Ubuntu system, I start a screen session and edit a file in vim or view it in less. After I quit, the screen doesn't redraw itself, but simply scrolls up to show a command line under all the ...
3
votes
1answer
651 views
GNU Screen: Changing Global Key-binding
I've recently started using screen in remote sessions. One problem is that emacs doesn't recognize its C-a and I don't want to bind emacs C-a to something else, as I'm very used to it.
Google shows ...
3
votes
4answers
2k views
Set screen-title from shellscript
is it possible to set the Screen-Title with an shellscript?
i thought about something like sending the key commands "Strg+A Shift-A Name "
I searched for about an hour only how to emulate keystrokes ...
3
votes
3answers
1k views
Unable set colors according to Terminal's support in .screenrc
I would like to have a if-else loop in .screenrc for the following codes such that it is run if my terminal supports 256 colors. Otherwise, it is not run.
attrcolor b ".I"
# tell screen how to set ...
3
votes
5answers
6k views
How do you start Unix screen command with a command?
According to the docs for the Unix "screen" command, you can configure it in .screenrc to start with a bunch of default screens, each running a command that you specify.
Here's my cofig:
# Default ...
2
votes
2answers
52 views
GNU Screen and Vim: Adjusting the split window buffer size with mouse
When working on GNU screen with Vim, I am not able to adjust the split window sizes with mouse. All the rest mouse actions work fine in Vim (scrolling, selecting text, etc with mouse).I generally have ...
2
votes
1answer
79 views
Serial terminal in emacs
I'm working on and embedded system with a serial (RS232) console. (With a Linux desktop) I would like to connect to the serial port in emacs and be able to navigate the output with my normal emacs ...
2
votes
1answer
70 views
Java error when combined with screen command in ubuntu
I am running a Linux 2.6.38-10-server #46-Ubuntu SMP x86_64 x86_64 x86_64 GNU/Linux and I have the following problem:
1) I log in ssh
2) I start a screen (using the screen command)
3) I start a ...
2
votes
2answers
244 views
in Screen, how do I send a command to all virtual terminal windows within a single screen session?
I know how to create multiple windows within a single screen session, at startup:
But once I have them up and running, is there a way I can have my input be sent to all open windows, not just the one ...
2
votes
3answers
168 views
start gnu screen with existing running program [closed]
Say I forget to run screen at the beginning of login, I've started up a program like emacs, have many files open, now I want to attach this to a session of screen. Is there any way to do this? Or do ...
2
votes
1answer
346 views
Send commands to a GNU screen
I have a GNU screen named demo, I want to send commands to it. How do I do this?
screen -S demo -X /home/aa/scripts/outputs.sh
yeilds No screen session found.
and doing screen -ls shows that it ...