yabz Jan 6, 2023 #1 When closing TWS it frequently hangs. The only way I can close it is restarting my system. I am using Linux Mint. I have tried to find the process to kill using ps to no avail. Does anyone know what the process name is that is running TWS?
When closing TWS it frequently hangs. The only way I can close it is restarting my system. I am using Linux Mint. I have tried to find the process to kill using ps to no avail. Does anyone know what the process name is that is running TWS?
spy Jan 6, 2023 #2 yabz said: When closing TWS it frequently hangs. The only way I can close it is restarting my system. I am using Linux Mint. I have tried to find the process to kill using ps to no avail. Does anyone know what the process name is that is running TWS? More... It's a java program, generally with a huge command-line. To find it I use... Code: pgrep -fla tws but other things will match too, e.g.: Code: pgrep -fla java The lesson, of course, is that pgrep can very handy in these situations.
yabz said: When closing TWS it frequently hangs. The only way I can close it is restarting my system. I am using Linux Mint. I have tried to find the process to kill using ps to no avail. Does anyone know what the process name is that is running TWS? More... It's a java program, generally with a huge command-line. To find it I use... Code: pgrep -fla tws but other things will match too, e.g.: Code: pgrep -fla java The lesson, of course, is that pgrep can very handy in these situations.