I am trying to change the priority of a process in my system via Xubuntu's Task Manager by typing sudo taskmgr
, but taskmgr isn't the name of the executable. What is the name of the executable program and if I change the priority of a process and restart my computer, will the process have the same priority?
Asked
Active
Viewed 1.4k times
3

John Scott
- 1,462
- 7
- 24
- 48
1 Answers
4
Never use sudo
to start graphical applications. (More infos)
This should work:
sudo xfce4-taskmanager
Then go to settings on top left and then click on "Show all processes".
But the root xfce4-taskmanager shows only the root processes... Perhaps this is a better solution to set your priorities:
Change niceness (priority) of a running process
The priority of a process will be lost if you close the process. But you can start any process with a certain priority: Do all apps start with a normal priority on the system monitor?

Artur Meinild
- 26,018

TuKsn
- 4,370
- 2
- 26
- 43
sudo -i ...
is acceptable AFAIK. – Oli Jun 18 '14 at 16:36