desktop user password issues. can't do squat in desktop.
NateNate60 @ NateNate60 @lemmy.world Posts 25Comments 1,511Joined 2 yr. ago

NateNate60 @ NateNate60 @lemmy.world
Posts
25
Comments
1,511
Joined
2 yr. ago
I tried to bribe voters and all I got was this lousy hat
What is the smallest city in your country that everyone can still instantly recognise the name of? What is it famous for?
Oh boy what a beautiful regex. I'm sure it does something logical and easy to understand.
What is one relatively unknown thing that your country does much better than elsewhere, but that most people don't know about?
The number 1 easiest way to convince carbrains to support non-car-centric transportation infrastructure (in my experience)
If you know the root password, then you can switch to the account called
root
using thesu root
command.In Linux there is always a user called
root
, which is the only account allowed to perform most system management tasks. Thesudo
command just executes a commend asroot
. Most of the time you don't need to actually sign into theroot
account, just usesudo
, but you can actually sign into it in the terminal as it is a real bona fide user account.The sudoers file is located at
/etc/sudoers
. Do keep in mind that this file should not be edited directly. You can use thecat
command which will print the content of a file to the terminal. So trycat /etc/sudoers
.