LinuxQuestions.org
Register a domain and help support LQ
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices

Reply
 
LinkBack Search this Thread
Old 11-18-2009, 03:14 PM   #16
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: currently under revision
Posts: 1,175

Rep: Reputation: 104Reputation: 104

Quote:
But isn't this in contradiction to the advice of Ubuntu community/developers/etc....
Yes, and if you mention it or post about it on the ubuntu forum they'll censure you.
 
Old 11-18-2009, 03:16 PM   #17
EricTRA
Guru
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: LMDE + Linux 3.2.0-1.dmz.6-amd64, RHEL5+6, Mulltiple testing
Posts: 6,193
Blog Entries: 1

Rep: Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149
So much for 'freedom'
 
Old 11-18-2009, 03:24 PM   #18
tuxdev
Senior Member
 
Registered: Jul 2005
Distribution: Slackware
Posts: 1,985

Rep: Reputation: 102Reputation: 102
Logging in as root to do anything but sysadmin stuff is a contradiction to the entire *nix world.
 
Old 11-18-2009, 03:30 PM   #19
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Slackware current
Posts: 8,325

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Quote:
Originally Posted by EricTRA View Post
That's right, reading the original post, one can assume that he's logged in as root, and thus the system will not ask for a password when executing system utilities.
Eric
The OP post this kind of discussion every 3 or 4 weeks :-)
 
Old 11-18-2009, 03:31 PM   #20
linus72
Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: PocketWriter/MinimalX
Posts: 5,057

Rep: Reputation: 326Reputation: 326Reputation: 326Reputation: 326
I make everyone of my remixes so that the user can both login as root or login as user with access to root stuff; file manager,etc

Running as root (responsibly) is a absolute necessity in order to really learn Linux
as far as I am concerned.

I still haven't made a normal user in my slack 12.2 setup
I just run as root and use that system to do whatever maintenance,etc
 
Old 11-18-2009, 03:35 PM   #21
EricTRA
Guru
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: LMDE + Linux 3.2.0-1.dmz.6-amd64, RHEL5+6, Mulltiple testing
Posts: 6,193
Blog Entries: 1

Rep: Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149Reputation: 1149
Quote:
Originally Posted by linus72 View Post
I make everyone of my remixes so that the user can both login as root or login as user with access to root stuff; file manager,etc
That's the spirit, freedom of choice!

I guess I'm just a power junkie, don't have any user except root on my personal systems. My wife's laptop with Ubuntu has a 'normal' user, otherwise I'd have to spend to much time fixing broken things.
 
Old 11-18-2009, 03:36 PM   #22
phil.d.g
Senior Member
 
Registered: Oct 2004
Posts: 1,182

Rep: Reputation: 98
By default only users that are members of the admin group can use sudo.

If you want to give someone else access to your machine then they should use an account that isn't a member of admin so they can't sudo anything.

Accounts that are members of the admin group should be considered privileged accounts and only very trusted people should have one of these. sudo can give fine grain control for less trusted people that require some root access.

My root password is still locked, so I can't login as root directly. However, all my needs are met using sudo cmd or sudo -i. I don't have a problem with this setup, and I've never felt the need to have a complete root environment.

Just my 2 cents, do what you want it's your computer and data.
 
Old 11-18-2009, 03:39 PM   #23
linus72
Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: PocketWriter/MinimalX
Posts: 5,057

Rep: Reputation: 326Reputation: 326Reputation: 326Reputation: 326
One can make the "panel" so it launches root apps also
lxpanel, gnome panel, etc

heres part of my fluxbox menu for user, opening root apps

Code:
[begin]
  [submenu] (Root programs)
        [exec] (Root Eterm) {su-to-root -X -c /usr/bin/Eterm} <>
        [exec] (Synaptic Package Manager) {su-to-root -X -c /usr/sbin/synaptic} </usr/share/synaptic/pixmaps/synaptic_32x32.xpm>
        [exec] (PCMANFM) {su-to-root -X -c /usr/bin/pcmanfm} <>
        [exec] (Gimp) {su-to-root -X -c /usr/bin/gimp} </usr/share/pixmaps/gimp.xpm>
        [exec] (Gparted) {su-to-root -X -c /usr/sbin/gparted} <>
    [end]
  [end]
[end]
in order to add root-apps to panels, you gotta have gksu installed right?
 
Old 11-18-2009, 04:10 PM   #24
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: washington U.S.
Distribution: Damn Small Linux, KateOs, M$ Ickdows Vista, My own OS
Posts: 2,094

Original Poster
Rep: Reputation: 104Reputation: 104
oh and you can open a root terminal and type rm -rf / and all it will do is say cannot remove root directory!
 
Old 11-18-2009, 04:11 PM   #25
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: washington U.S.
Distribution: Damn Small Linux, KateOs, M$ Ickdows Vista, My own OS
Posts: 2,094

Original Poster
Rep: Reputation: 104Reputation: 104
Quote:
Originally Posted by smeezekitty View Post
oh and you can open a root terminal and type rm -rf / and all it will do is say cannot remove root directory!
but i wouldnt try it
 
Old 11-18-2009, 07:20 PM   #26
Bratmon
Member
 
Registered: Jul 2009
Location: 75.126.162.205:80
Distribution: ubuntu 10.04 / Arch
Posts: 294
Blog Entries: 3

Rep: Reputation: 49
rm --no-preserve-root -rf /
 
Old 11-18-2009, 07:30 PM   #27
smeezekitty
Senior Member
 
Registered: Sep 2009
Location: washington U.S.
Distribution: Damn Small Linux, KateOs, M$ Ickdows Vista, My own OS
Posts: 2,094

Original Poster
Rep: Reputation: 104Reputation: 104
Quote:
Originally Posted by Bratmon View Post
rm --no-preserve-root -rf /
but you cannot do that my accedent
 
Old 11-19-2009, 06:03 PM   #28
Bratmon
Member
 
Registered: Jul 2009
Location: 75.126.162.205:80
Distribution: ubuntu 10.04 / Arch
Posts: 294
Blog Entries: 3

Rep: Reputation: 49
Quote:
Originally Posted by smeezekitty View Post
but you cannot do that my accedent
If you try hard enough, you can do anything by accident.
 
Old 11-19-2009, 11:05 PM   #29
jmite
Member
 
Registered: Jun 2008
Distribution: Ubuntu
Posts: 252

Rep: Reputation: 36
I occasionally run things as root just to that when I run apps with gksu or gksudo, I can modify the theme so they're not ugly.
 
Old 11-20-2009, 05:56 AM   #30
easuter
Member
 
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 534

Rep: Reputation: 61
Quote:
Originally Posted by smeezekitty View Post
Now that i enabled root login and routinely login as root, ubuntu is easy to use - and you should always have root login in case of need of system recovery.
Holy crap!

Quote:
Originally Posted by linus72
I still haven't made a normal user in my slack 12.2 setup
I just run as root and use that system to do whatever maintenance,etc
Oh dear god!!

You may as well be using windows then....

Last edited by easuter; 11-20-2009 at 06:01 AM.
 
  


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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to enable GUI root login in Mandriva? zebra90210 Mandriva 4 03-13-2008 07:20 AM
How to enable auto login for root in Redhat alix123 Programming 5 06-27-2007 01:43 AM
How to enable root login on 6.06 dapper? Sjonnie48 Ubuntu 6 06-11-2007 09:36 AM
Enable root login in wu-ftpd? Sevoma Linux - Software 5 02-04-2005 07:49 PM
Disable/Enable Root Login @ Console ryanstrayer Linux - Security 4 01-18-2002 05:49 PM


All times are GMT -5. The time now is 03:29 PM.

Main Menu
 
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
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration