Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I have a meeting with a professor coming up shortly, but he won't be at school for a face-to-face meeting, but instead will meet with me via Skype and a SSH login. I'm a heavy user of GNU Screen, but I've never used its multiuser functionality before. How would I go about setting up multiuser capabilities, and what would be good permissions to give him (i.e. r/w/x).

share|improve this question
AFAIK, for multi user, screen has be installed setuid root, which now a days no administrators like. my information may be dated, since I don't see an essential need for it to be setuid. – Vardhan Feb 2 '09 at 1:55

migrated from stackoverflow.com Sep 28 '11 at 10:37

2 Answers

up vote 8 down vote accepted

Good tutorial here. See this part of the GNU screen manual on how to set ACL permissions. Give him whatever permission you think he needs, though I don't think you'd need to change it from the default that's given by acladd.

If the first link is broken, please, it is here.

share|improve this answer
fixed it for you – Kip Aug 24 '09 at 21:10
Looks like both first link and alternate link is broken. – Hemant Kumar Jun 15 '11 at 17:23
Fixed the archive.org link – Kamil Kisiel Jun 15 '11 at 22:44

Inside your own screen session do the following (I am bob and want to share my screen with fred)

^A :multiuser on
^A :acladd fred

then tell fred to type:

$ screen -x bob/

screen has to be installed as suid root for this to work. (sudo chmod +s /usr/bin/screen, this could be a security risk)

there is more information about the acl-syntax on the screen man page - it is possible to share a screen session read only, for example

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.