~ubuntu-branches/ubuntu/trusty/screen/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/README.Debian

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2008-06-12 19:33:30 UTC
  • mfrom: (1.1.13 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080612193330-1tt3qhpxonbgdmq2
Tags: 4.0.3-11
* Unbreak <End> and <^A Bksp> using a patch from Loïc Minier
  (thanks!) - introduced as new 45suppress_remap.dpatch.
  Closes: #484647.
* Bump Standards version to 3.8.0. No changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
$Id: README.Debian,v 1.9 2003/10/08 11:39:03 zal Exp $
2
 
 
3
1
Screen Information
4
2
------------------
5
3
See the copyright file for information about where to get screen, licensing,
9
7
Debian Modifications
10
8
--------------------
11
9
  * added Debian package maintenance files
12
 
  * Use /var/run/screen instead of /tmp/screens
 
10
  * Use /var/run/screen as socket directory
13
11
  * Make it set-gid "utmp" instead of setuid root
14
12
 
15
13
 
63
61
         /usr/share/doc/screen/terminfo/screeninfo.src and you can compile it
64
62
         on the remote machine using tic(1).
65
63
 
 
64
 
 
65
Q: Screen doesn't notice when I resize the term - what's wrong?
 
66
 
 
67
A: Firstly look for the same question in FAQ.gz. If the problem persists:
 
68
   There have been reports of sshd instances blocking SIGWINCH (presumably
 
69
   restarted from aptitude and thus inheriting its signal mask) which therefore
 
70
   also prohibit remote screen sessions from ever seeing the signal. Have a
 
71
   look at the old bugreport <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=392302>
 
72
   for means to determine whether you are affected. (You might have to restart
 
73
   sshd with a crontab entry or similar magic if ssh is your only way to access
 
74
   the box.)
 
75
 
 
76
 
 
77
Q: Multiuser mode is not working - how can I enable it?
 
78
 
 
79
A: Screen has to be setuid root to accomplish this. (Note the security implications
 
80
   this has! Also bear in mind that setuid programs remove some variables from their
 
81
   environment for exactly this reason - see ld.so(1).) If you still want to enable
 
82
   the feature, you may do so with the following commands:
 
83
 
 
84
] dpkg-statoverride --update --add root utmp 4755 /usr/bin/screen
 
85
] chmod 0755 /var/run/screen
 
86
 
 
87
   dpkg-statoverride will make sure that the modified permissions remain in effect
 
88
   even if a new version of the screen package is installed. /var/run/screen will
 
89
   be automatically recreated with the proper permissions if the directory lives
 
90
   on volatile storage (doesn't persist between subsequent reboots).