LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Security
User Name
Password
Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here.

Notices


Reply
  Search this Thread
Old 07-03-2006, 12:25 AM   #1
teluguswan
Member
 
Registered: Oct 2005
Posts: 116

Rep: Reputation: 15
(Linux Admin - Want to know how to change the normal user to Administrator )


Hai


. I want to know the user rights - Normal User, Administrator
(user the ability to carry out certain functions on the system?).
. How to change a Normal User to Administrator
. List of users available on the System



waiting for the solutions, thank u all for sharing your knowledge with us.

Turning into Six the linuxquestions.org is not only a good thing but also it made lot of people to come together and to change this world into the world of opensource and linux.

Thank u all


The Command mode helps me very much instead of going into user and groups gui and tick on the appropriate.

Last edited by teluguswan; 07-03-2006 at 10:35 AM.
 
Old 07-03-2006, 12:33 AM   #2
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
Quote:
. I want to know the user rights - Normal User, Administrator.
besides root, normal users (ie non root users) dont really have a set of rights.. they are allocated a set of priveledges for every file. you could also see what priveledged commands they could run, as layed out in the /etc/sudoers file. on the other hand, root can do anything anywhere, as you probably know.

Quote:
. How to change a Normal User to Administrator
generally its not a good idea to give a normal user root priveledges... thats what the root account is for, and only the root account. i think iv read on here that you can make a non root user to have root priveledges though.

Quote:
. List of users available on the System
probably check the /etc/passwd file

Last edited by nadroj; 07-03-2006 at 12:36 AM.
 
Old 07-03-2006, 12:38 AM   #3
musicman_ace
Senior Member
 
Registered: May 2001
Location: Indiana
Distribution: Gentoo, Debian, RHEL, Slack
Posts: 1,555

Rep: Reputation: 46
Listing all the users
cat /etc/passwd

Changing Normal User to "Administator"
you could either allow that user to sudo assuming you have sudo installed, or add him to the root group, useradd -G root username. In that command, the word 'root' is the group's name and you have to substitute your user account for the word 'username'. I'd recommend the sudo idea as I've never given anyone access to the root group

User access rights?
Are you talking file permissions or giving a user the ability to carry out certain functions on the system?

-- Edit--
You beat me to it

Last edited by musicman_ace; 07-03-2006 at 12:40 AM.
 
Old 07-03-2006, 12:50 AM   #4
prozac
Member
 
Registered: Oct 2005
Location: Australia
Distribution: slackware 12.1
Posts: 753

Rep: Reputation: 32
Quote:
Originally Posted by teluguswan
How to change a Normal User to Administrator
The concept of Administrator, Power User and Normal Users etc are not in Linux. Linux is made up of files and the User Power is explained from what amount of system files the user controls. Normally, you have a root user, who is the supreme being of your Linux machine and has all the power. everybody else is a regular user. Now this is enough for most of the cases but yes there are and always will be exceptions. That's what for the sudo was created. The sudo and the file sudoers let you add regular users to execute some files that they normally can not or should not. for example only root can execute the 'useradd' script but if you add a regular user in the sudoers file and give him the permissions for the 'useradd' script, that regular user can now create users as root will. basically, this user will execute the 'useradd' script with root privileges but without needing the root password or login in as root. However this is not a safe practice. The user 'root' must and should handle all administrative tasks.
 
Old 07-03-2006, 01:27 AM   #5
Capt_Caveman
Senior Member
 
Registered: Mar 2003
Distribution: Fedora
Posts: 3,658

Rep: Reputation: 69
Moved: This thread is more suitable in the Linux - Security forum and has been moved accordingly to help your thread/question get the exposure it deserves.
 
Old 07-03-2006, 10:40 AM   #6
teluguswan
Member
 
Registered: Oct 2005
Posts: 116

Original Poster
Rep: Reputation: 15
Thanks for the solutions it helped me very much to make some of our users to do the root functions.

But i have a doubt, that how to know what users are having the previleges of root (if i forgot)
 
Old 07-03-2006, 11:08 AM   #7
prozac
Member
 
Registered: Oct 2005
Location: Australia
Distribution: slackware 12.1
Posts: 753

Rep: Reputation: 32
Quote:
Originally Posted by teluguswan
Thanks for the solutions it helped me very much to make some of our users to do the root functions.

But i have a doubt, that how to know what users are having the previleges of root (if i forgot)
how are you distributing root privileges? through the passwd file method or through the sudoers file? you can check the /etc/passwd file to see who has root groups or the sudoers file to check who are in the list.
 
Old 07-04-2006, 08:07 AM   #8
teluguswan
Member
 
Registered: Oct 2005
Posts: 116

Original Poster
Rep: Reputation: 15
I want to give rights to one user to shutdown the system, and to run some of the root utilities . Because of this i need the info and iam not using the sudo

i dont understand the /etc/passwd just ..............

thank u all for the support

Last edited by teluguswan; 07-05-2006 at 09:34 AM.
 
Old 07-04-2006, 10:20 AM   #9
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
iam not using the sudoers

I want to make sure you understand that, as others said before, you should be using Sudo and nothing else. If you can't make things work with sudo please post detailed information so we can help you. Only add users to wheel or root group if you have exhausted all options sudo (maybe in combination with wrapperscripts) gives you. If you remain adamant you should go down the wheel/root group path you haven't explored Sudo options to its fullest or even could be in the wrong line of work. Anyway. That path leads to anger and hate, and we all know what hate leads to*.



* Meaning a chronic case of bad temper, asthma, wearing black all year round and a hostile workplace with lots of "incidents". If you think this sounds cool you're forgetting it will cost you a limb, the oneliners you use won't make for good pickup lines and the only way to switch emperors is to die.

Last edited by unSpawn; 07-04-2006 at 10:36 AM.
 
Old 07-05-2006, 09:38 AM   #10
teluguswan
Member
 
Registered: Oct 2005
Posts: 116

Original Poster
Rep: Reputation: 15
Hey

The thing is like this that i want to know how the normal user can work as root user.

i want to know these solutions in Command line mode not gui.

i.e the reason iam more specific to this thank u
 
Old 07-05-2006, 12:40 PM   #11
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
The thing is like this that i want to know how the normal user can work as root user.
He can not, he should not and he must not. I thought we'd made that clear.
We are here to help, so if you don't understand any of this just say so.


i.e the reason iam more specific to this thank u
No you're not. In the last post you where *more* specific saying: "one user to shutdown the system, and to run some of the root utilities". So please post which user should be allowed to run what commands (+arguments) and we'll whip up some examples, OK?
 
Old 07-05-2006, 12:44 PM   #12
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
having your 'normal user' working as root for long periods of time, and in GUI mode possibly, is a huge security risk.
the first question is why do you NEED this? root is for system administration ONLY. all other times (listening to music, web surfing, writing documents, etc) is to be done from the safety and the lack of permission of the normal user.
 
Old 07-06-2006, 12:55 AM   #13
teluguswan
Member
 
Registered: Oct 2005
Posts: 116

Original Poster
Rep: Reputation: 15
Yes I will give u the reason why iam more specific to this.

We have large network of Linux systems and servers starting from morning 8:00am to 9:00pm Iam coming in the morning at 8:00am but i have to leave some days on 6:00 pm so i want to give one user who is trusted to me this shutdown option for that i dont want to give our root user to him. To stop the Service squid after the 6:00 for our official restrictions.

thank u all, and at the same time i hate the GUI mode where just we have to click next and when the problems comes we dont find any proper error messages. When we are using the command mode atleast we can know the internal process and the solution can get when the error message.
 
Old 07-06-2006, 12:58 AM   #14
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
so your going to use sudo, and edit the /etc/sudoers file to allow this person to issue the specific commands? if so then, as mentioned, thats the best and proper way to do it.
 
Old 07-06-2006, 01:08 AM   #15
prozac
Member
 
Registered: Oct 2005
Location: Australia
Distribution: slackware 12.1
Posts: 753

Rep: Reputation: 32
'visudo' is the way to go for such situations.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't long into linux as a normal user, help! m0rt3r Linux - Software 13 07-06-2006 10:23 AM
User admin and N/w admin on Gnome hangs ssrini *BSD 2 07-28-2005 08:55 AM
administrator not able to change permission cchanana Linux - Newbie 5 12-02-2004 12:04 PM
Letting normal user change apache directory nivek7 Linux - General 9 05-04-2004 07:58 PM
User admin. How to change a user... Pug405 Linux - General 3 04-09-2004 02:33 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Security

All times are GMT -5. The time now is 09:22 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration