Any latest linux distro which gives full root access ( NO SUDO )?

2

2

Is there Any latest linux distro which gives full root access ( NO SUDO ) ? I want to use it for programming in which I have to use / file system very frequently.

What I need is any good linux distro with Nice Installer like Synaptic and Fast Bootup speed like ubuntu 9.04.

Does Fedora 11 gives full root access?

Thanks, Sunny.

SunnyShah

Posted 2009-10-27T19:47:11.160

Reputation: 247

Question was closed 2016-05-16T15:53:08.257

@DavidThornley: screwing up in root is only a sign of lacking experience. – XXL – 2011-11-04T11:54:16.727

@XXL: I can screw up lots of things I've got experience in. If I'm running as root, I can screw things up real good. All it takes is typing something normal not quite in the right context. I took to typing the command, sitting on my hands, and looking at the command carefully before hitting enter while in root. – David Thornley – 2011-11-04T15:57:29.430

@DavidThornley: I've been running only root for multiple years and I am yet to screw up anything. Guess it's a "person" thing. – XXL – 2011-11-04T19:53:42.347

Good luck on not trashing things by mistake. It's real easy to screw up in root, which is why most of us use user accounts and sudo. – David Thornley – 2009-12-11T19:36:10.823

Answers

15

Becoming root for one session:

In Ubuntu you can become root for the remainder of the session by typing:

# old-school method
sudo su

# new hotness, comes highly recommended
sudo -i

More information and related reading.


Permanently enabling the root account:

Further, you may permanently enable the root account by typing:

sudo passwd root

and providing a root password. You can then log in as root at your leisure without needing to use sudo.

eleven81

Posted 2009-10-27T19:47:11.160

Reputation: 12 423

Is this possible to do with Ubuntu? – SunnyShah – 2009-10-27T20:05:02.060

1It is indeed possible with Ubuntu – John T – 2009-10-27T20:05:36.787

2According to the #ubuntu IRC channel, the forums, and mailing lists, sudo -i is the recommended way to get a root shell. Please update your answer. – Broam – 2009-12-01T17:16:43.570

2

Puppy Linux boots and will auto-login with root user by default.

Anony Moose

Posted 2009-10-27T19:47:11.160

Reputation:

1

Why not just log in as root when you start up? You provide the root password in the install process of most distributions (Fedora as you mentioned, is an example). If you forgot this you can reset it from a user account:

sudo passwd root

it will then ask you for your new UNIX password.

If you'd like to become root temporarily AND use root's environment settings:

sudo su -

John T

Posted 2009-10-27T19:47:11.160

Reputation: 149 037

1sudo and su are overlapping programs, so using them together is a bit wasteful. If you want root's login environment (except for using your current DISPLAY etc.), use sudo -i. – Lee B – 2009-10-27T20:42:47.040

1@Lee B: True, but...to su - you need to recall the root password (and have a valid one set), while the sudo lets you in with only your user password. – dmckee --- ex-moderator kitten – 2009-12-11T19:06:44.003

1

fedora offer full root access by typing

su

Or you can use your debian based distro (ubuntu) and type

sudo bash

to get semi-permanent root shell.

andrej

Posted 2009-10-27T19:47:11.160

Reputation: 422

0

I know this is an old post but I'll share an answer for anyone else that Google may lead here. There are a number of Puppy Linux varients available from a list on their website: http://puppylinux.org/wikka/PuppyVersion

Puppy is designed to be a single user system and therefore does away with a lot of Linux's usual over the top security measures, but be aware that this will offend a great many people (insufferable A-holes) in the Linux community who are seemingly obsessed with the idea that Linux's greatest feature is security.

While this may be true for them, it's not what everyone wants and as an open-source platform all people should be entitled to a distro or work-around that suits their needs. (ie. if you don't have an answer for him just stfu and keep your ideas about root/sudo to yourself).

YOURMOM

Posted 2009-10-27T19:47:11.160

Reputation: 47

2This duplicates Anony Moose's answer (and adds commentary that isn't really appropriate in an answer). As such, it's likely to attract downvotes, which will detract from your accumulating enough rep to comment. You might want to consider deleting this post. – fixer1234 – 2016-05-15T01:05:42.603

how stringent... – YOURMOM – 2018-01-11T05:15:58.660