home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / doc / screen / README.Debian < prev    next >
Encoding:
Text File  |  2007-03-08  |  2.3 KB  |  66 lines

  1. $Id: README.Debian,v 1.9 2003/10/08 11:39:03 zal Exp $
  2.  
  3. Screen Information
  4. ------------------
  5. See the copyright file for information about where to get screen, licensing,
  6. and other assorted information.
  7.  
  8.  
  9. Debian Modifications
  10. --------------------
  11.   * added Debian package maintenance files
  12.   * Use /var/run/screen instead of /tmp/screens
  13.   * Make it set-gid "utmp" instead of setuid root
  14.  
  15.  
  16. Debian Screen Q&A
  17. -----------------
  18.  
  19. Q: shift+page up in xterm/gnome-terminal/konsole used to let me scroll back a
  20.    bit, but now it doesn't. How can I make it work with scrollback?
  21.  
  22. A: It doesn't scrollback consistently because screen (the program) displays in
  23.    xterm's alternate screen buffer.
  24.  
  25.    To have screen use xterm's normal screen buffer (which includes scrollback),
  26.    you can add the following to your .screenrc:
  27.  
  28.    termcapinfo xterm|xterms|xs|rxvt ti@:te@
  29.  
  30.  
  31. Q: Screen sets my xterm titlebar. I don't like this, how do I make it stop?
  32.  
  33. A: The titlebar setting is set in the /etc/screenrc by telling screen that some
  34.    of the GUI terminals have a hardstatus line and that it can be set by
  35.    sending the xterm escape sequences that set the title/icon.
  36.  
  37.    # Set the hardstatus prop on gui terms to set the titlebar/icon title
  38.    termcapinfo xterm*|rxvt*|kterm*|Eterm* hs:ts=\E]0;:fs=\007:ds=\E]0;\007
  39.  
  40.    You can override this on a system wide basis by commenting out this line in
  41.    the /etc/screenrc or you can override it in your personal screenrc by adding
  42.    the following line:
  43.  
  44.    hardstatus alwaysmessage
  45.  
  46.  
  47. Q: Why do I get #!$@#$@!% trailing spaces when I cut and paste from mutt
  48.    running within screen?
  49. Q: Why does the statusbar in my irc client extend to the end of the screen
  50.    in xterm but not in screen?
  51.  
  52. A: This has to do with handling of the bce terminal attribute, or lack
  53.    thereof by default in screen. You can enable bce on a per-user basis by
  54.    adding the following to your .screenrc:
  55.  
  56.    defbce on
  57.    term screen-bce
  58.  
  59.    NOTE: if you do this your TERM will be screen-bce. When you login to
  60.          other machines they may not have a screen-bce terminal type, so you
  61.          will see errors. To fix this you must put the terminfo for screen-bce
  62.          on that remote machine. The screen terminfo is found in
  63.          /usr/share/doc/screen/terminfo/screeninfo.src and you can compile it
  64.          on the remote machine using tic(1).
  65.  
  66.