helloSystem / ISO

helloSystem Live and installation ISO
https://github.com/helloSystem/
BSD 3-Clause "New" or "Revised" License
806 stars 58 forks source link

Updated README.md #338

Closed antranigv closed 2 years ago

antranigv commented 2 years ago

sudo su would do two nested processes, one for sudo running su and one for su running the root shell. Instead, you can use sudo -i (where -i stands for interactive) and it would pop a root shell directly.

probonopd commented 2 years ago

HI @antranigv. Thanks for the hint.