sudo and the world of Linux Authentication, Part 1.
Let’s take a look at what happens when you use sudo.
1
2
3
4
5$ sudo mysql
[sudo] password for <this user>:
Welcome to the MySQL monitor. Commands end with ; or \g.
...
mysql>
The re…