Mario Palumbo Asked: 2020-12-03 09:14:28 +0800 CST2020-12-03 09:14:28 +0800 CST 2020-12-03 09:14:28 +0800 CST bash: screen command: detach process renaming it and showing the changes in the gnome-system-monitor 772 screen -S myname -dm /processpath or screen -t myname -dm /processpath does not affect the name displayed by gnome-system-monitor which is always "screen". How can I change it? bash process screen 1 Answers Voted Best Answer Dagelf 2020-12-09T07:39:31+08:002020-12-09T07:39:31+08:00 You can make a symlink to the screen binary like this: ln -s `which screen` my_special_screen And then run it: ./my_special_screen -dm /processpath The -t name option is only useful when selecting a screen process to attach to with screen -x if you have multiple screen instances running.
You can make a symlink to the screen binary like this:
And then run it:
The
-t name
option is only useful when selecting a screen process to attach to withscreen -x
if you have multiple screen instances running.