Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by dwcronin
at 2024-11-30 13:05:03
Point:500 Replies:4 POST_ID:828850USER_ID:11763
Topic:
Linux;;Linux Distributions
I gave my three sisters accounts on my Ubuntu 13.10 machine with "adduser sistername". How can I see if they are superusers or standard users and change this if necessary?
Author: dwcronin replied at 2024-12-04 08:02:14
Sorry. That is MY mistake. I have a touch sensitive pad that I use rather than a regular mouse on my laptop. I probably accidentally made it think I was clicking rather than moving. You people always get A's from me. The only thing I EVER had difficulty with with you was a 3D question from 2 or 3 years ago. Please change the grade to an A if you can. Again.that's MY mistake.
Expert: SouthMod replied at 2024-12-04 03:49:34
In reviewing your question, it would seem your awarding of a C grade is not appropriate. A "C" grade is the lowest grade you can give here on Experts Exchange, and is generally reserved for those times when your question is only partially answered by the Experts, and the Experts did not respond to additional postings asking for more help. That was not the case here, since you failed to respond to several Expert comments, and therefore a "C" is inappropriate.
If you did not arrive at a solution then the proper course of action is to Delete the question.
If you did arrive at a solution, then you should post the details of that solution and accept that as your answer.
If you would like to continue searching for a solution, then you should respond to the Experts and see where that leads.
SouthMod
EE Moderator
If you did not arrive at a solution then the proper course of action is to Delete the question.
If you did arrive at a solution, then you should post the details of that solution and accept that as your answer.
If you would like to continue searching for a solution, then you should respond to the Experts and see where that leads.
SouthMod
EE Moderator
Expert: Mazdajai replied at 2024-11-30 17:12:46
If you need to change it you can add them to /etc/sudoers
Accepted Solution
Expert: duncanb7 replied at 2024-11-30 16:27:58
500 points EXCELLENT
list all super user account :
grep -v -E "^#" /etc/passwd | awk -F: '$3 == 0 { print $1}'
If have time take a look this article about user ID and group ID
http://www.cyberciti.biz/faq/understanding-etcpasswd-file-format/
Hope understand your question completely, If not, lease point it out
Duncan
grep -v -E "^#" /etc/passwd | awk -F: '$3 == 0 { print $1}'
If have time take a look this article about user ID and group ID
http://www.cyberciti.biz/faq/understanding-etcpasswd-file-format/
Hope understand your question completely, If not, lease point it out
Duncan