When I operate at terminal, if I do something when needs root privilege, I need to prefix my command using 'sudo' and I may be prompted to enter password of root. If I feel it too inconvenient to prefix 'sudo' each time, I can even change myself to root by 'su' command. But when I operate in GUI mode, how can I do in both cases?
Asked
Active
Viewed 1,009 times
0
sudo
may lead to disastrous consequences. Are you looking for how to enable root login (again, highly not recommended)? – pomsky Nov 05 '19 at 09:07sudo
with text mode applications andsudo -H
orpkexec
or some other method with GUI applications). See also this link – sudodus Nov 05 '19 at 09:09