Linux : How to set root password in Linux Mint
Alright, just a minor note for my own future reference. Just received my Dual Band USB Adapter today and encounter a minor program while trying to install the driver for Linux Mint. Apparently, by default in Linux Mint, you cannot su
or sudo
because the root
password is not set!
I understand that this is for security reason, but there are times when ability to sudo
a command can be very useful.
Therefore, in order to set the password for root
in Linux Mint, please execute
$sudo -i
and you will be prompted to set a password. This will be your root
password, so remember it!
after this you should be able to su
and sudo
in Linux Mint again.
Hope this helps!
See also : Linux/Unix : Commands that you need to be careful about
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.5k Golang : interface - when and where to use examples
+42.9k Golang : Get hardware information such as disk, memory and CPU usage
+5.9k Golang : Get missing location after unmarshal binary and gob decode time.
+26.5k Golang : Convert file content into array of bytes
+7.2k Golang : Individual and total number of words counter example
+11.8k Golang : Save webcamera frames to video file
+17.3k Golang : Find smallest number in array
+9k Golang : Create and shuffle deck of cards example
+29.1k Golang : Save map/struct to JSON or XML file
+20.5k PHP : Convert(cast) int to double/float
+8.9k Golang : Gonum standard normal random numbers example