Quote |
If the root password had not been set, then the script would have to open a terminal window for the user to be able to enter a password, no? |
Code Sample |
$ sudo cat /etc/shadow | grep root: root:$1$$I.X7vmLDEcVMmpJ9bU4Ar1:11456:0:99999:7::: $ sudo cat /etc/shadow | grep root:$1$$ [nothing] $ sudo grep 'root:' /etc/shadow root:$1$$I.X7vmLDEcVMmpJ9bU4Ar1:11456:0:99999:7::: $ sudo grep 'root:$' /etc/shadow [nothing] |