Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key 3 in
/home/public/screen/inc/changelog.php on line
25
Warning: Undefined array key 4 in
/home/public/screen/inc/changelog.php on line
26
Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key 3 in
/home/public/screen/inc/changelog.php on line
25
Warning: Undefined array key 4 in
/home/public/screen/inc/changelog.php on line
26
Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key 3 in
/home/public/screen/inc/changelog.php on line
25
Warning: Undefined array key 4 in
/home/public/screen/inc/changelog.php on line
26
Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key 3 in
/home/public/screen/inc/changelog.php on line
25
Warning: Undefined array key 4 in
/home/public/screen/inc/changelog.php on line
26
Warning: Undefined array key 5 in
/home/public/screen/inc/changelog.php on line
27
Warning: Undefined array key 6 in
/home/public/screen/inc/changelog.php on line
28
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Warning: Undefined array key "userinfo" in
/home/public/screen/inc/common.php on line
1795
Warning: Trying to access array offset on value of type null in
/home/public/screen/inc/common.php on line
1795
Differences
This shows you the differences between two versions of the page.
| Both sides previous revision
Previous revision
Next revision
|
Previous revision
|
suggestions [2008-05-20 21:49] 70.112.111.214 autocomplete sessionnames? |
suggestions [2021-02-19 20:39] (current) asciiphil Remove old comment. |
| |
| This page is for suggestions. If you have an idea for the site, please add it to the list below. | This page is for suggestions. If you have an idea for the site, please add it to the list below. |
| |
| Please fix the wiki so spammers don't overwrite it with levitra/viagra ads ;) | |
| |
| Yeah. I rolled it back, but it'm not sure if I rolled it back further than I had to; disabling anonymous edits and allowing us to create users ought to do the trick. | |
| |
| A code walkthrough would be cool. | A code walkthrough would be cool. |
| | |
| | Some tutorial/discussion on screen v.s. ssh (more specifically, ssh-key-ring/agent) interaction. |
| |
| ==== Finish documentation ==== | ==== Finish documentation ==== |
| where hitting the TAB key at <TAB> above would complete "b" to "bar". But it doesn't work on my system. A code snippet for the .bashrc and/or .tcshrc files would be great! | where hitting the TAB key at <TAB> above would complete "b" to "bar". But it doesn't work on my system. A code snippet for the .bashrc and/or .tcshrc files would be great! |
| |
| | ==== Launch processes in a screen session on system startup ==== |
| | I've almost got this working on a FreeBSD system except for the terminal type. Everything gets started, but only in B&W. |
| | |
| | The screen is for user bongo. First I wrote a script to start screen on system startup. |
| | <file - /usr/local/etc/rc.d/bongo_screen.sh> |
| | if [ "$1" = "start" ]; then |
| | su -l bongo -c "/usr/local/bin/screen -c /usr/local/etc/bongo_screen.conf -d -m" |
| | echo -n "bongo_screen " |
| | fi |
| | </file> |
| |
| | Then I wrote the screen configuration file to launch the applications necessary. |
| | <file - /usr/local/etc/bongo_screen.conf> |
| | term xterm |
| | screen -t app_1 /usr/local/bin/app_1 app_1_options |
| | screen /usr/local/bin/app_2 |
| | screen |
| | </file> |
| |
| | The first line got me closest to the proper terminal type. |
| | The second line starts app_1 and names the screen "app_1". |
| | The third line starts app_2. |
| | The fourth line just starts a shell. |