Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
07-31-2003, 12:49 PM
|
#16
|
Member
Registered: Jan 2003
Location: Canada
Distribution: Ubuntu, Mepis, Debian
Posts: 158
Rep:
|
Quote:
Originally posted by itsjustme
Are you sure that won't just launch an additional login for barry?
|
I was talking about using the su command in an xterm:
Starting in an xterm as user knoppix:
knoppix@laptop:~$ su
Password:
root@laptop:/home/knoppix#
then
root@laptop:/home/knoppix# su knoppix
knoppix@laptop:~$
to get back to the prompt as user knoppix
HTH
Steve
|
|
|
07-31-2003, 12:57 PM
|
#17
|
Member
Registered: Jul 2003
Location: Slovenia
Distribution: Slackware & FreeBSD
Posts: 209
Rep:
|
Steve Cronje,
well X terminal and terminal in the console mode are two same things. So, when you:
su
you log in as root. There are now 2 users, you and root.
And then you said to:
su username
if you check the list of users, you will see, that there are now 3 users online:
you, root and (in your case) you again
You loged IN again and never closed the root account.
|
|
|
07-31-2003, 01:04 PM
|
#18
|
Senior Member
Registered: Mar 2003
Location: Earth
Distribution: Slackware, Ubuntu, Smoothwall
Posts: 1,571
Rep:
|
lfur is right.
Code:
bsl1@localhost bsl1]$ su -
Password:
[root@localhost root]# su bsl1
[bsl1@localhost root]$ exit
exit
[root@localhost root]# exit
exit
[bsl1@localhost bsl1]$
[bsl1@localhost bsl1]$ su
Password:
[root@localhost bsl1]# su bsl1
[bsl1@localhost bsl1]$ users
bsl1 bsl1
[bsl1@localhost bsl1]$
Notice, when I try to 'get back' after the first 'su bsl1' up there, I'm still in the root directory as bsl1.
regards...
Edit: well, I could be partially wrong also. Even if I type 'users' with the one and only initial gnome-terminal occurence, without any su or su -, it still says 'bsl1 bsl1'.
hmmmm.....
Last edited by itsjustme; 07-31-2003 at 01:12 PM.
|
|
|
07-31-2003, 03:30 PM
|
#19
|
Member
Registered: Jan 2003
Location: Canada
Distribution: Ubuntu, Mepis, Debian
Posts: 158
Rep:
|
Quote:
Originally posted by lfur
Steve Cronje,
well X terminal and terminal in the console mode are two same things. So, when you:
su
you log in as root. There are now 2 users, you and root.
And then you said to:
su username
if you check the list of users, you will see, that there are now 3 users online:
you, root and (in your case) you again
You loged IN again and never closed the root account.
|
OK, look at this:
knoppix@laptop:~$ users
knoppix knoppix knoppix knoppix
knoppix@laptop:~$ su
Password:
root@laptop:/home/knoppix# users
knoppix knoppix knoppix knoppix
root@laptop:/home/knoppix# su knoppix
knoppix@laptop:~$ users
knoppix knoppix knoppix knoppix
knoppix@laptop:~$
This was taken directly from xterm, no editing.
HTH
Steve
|
|
|
07-31-2003, 05:23 PM
|
#20
|
Member
Registered: Jul 2003
Location: Slovenia
Distribution: Slackware & FreeBSD
Posts: 209
Rep:
|
Steve Cronje,
my bad! Yes, as you said, there are no new users when you su to root and then su to user. But when you do that, the root acount is still there. If you check with:
ps a
you will see, that there are 3 processes running shell, but it should be only one, since it should return you where you started from. And I have noticed a similar discussion, where unSpawn said, that this must be taken as a serious security risk.
So ... yes, there are no more users, but to exit from root account you MUST use exit and not just su to normal user.
Enjoy
|
|
|
07-31-2003, 07:41 PM
|
#21
|
LQ Newbie
Registered: Jun 2003
Posts: 20
Rep:
|
logging in again does NOT make you go back to the previous shell. it creates a new one.
for example:
myshell# su
-----rootshell# su my
----------myshell# exit
-----rootshell# exit
myshell# ( this is where you go "back" to you previous shell )
Last edited by m9dhatter; 07-31-2003 at 07:44 PM.
|
|
|
07-31-2003, 07:53 PM
|
#22
|
Member
Registered: Jan 2003
Location: Canada
Distribution: Ubuntu, Mepis, Debian
Posts: 158
Rep:
|
Wow, I learnt a lot from this thread! I'll be sure to use 'exit' from now on.
Thanks to all
Steve
|
|
|
07-31-2003, 08:01 PM
|
#23
|
Member
Registered: Jul 2003
Location: British Columbia, Canada
Distribution: CollegeLinux 2.5
Posts: 148
Rep:
|
To cease acting as root in a console, type exit and you'll be back to the original user.
Remember that us does not mean superuser but substitute user.
-dave
|
|
|
07-31-2003, 08:12 PM
|
#24
|
Senior Member
Registered: Mar 2003
Location: Earth
Distribution: Slackware, Ubuntu, Smoothwall
Posts: 1,571
Rep:
|
Well, I guess that about confirms it.
I said to use 'exit',
then lfur,
then m9dhatter,
then Steve Cronje,
then synecdoche
Anybody else?
Last edited by itsjustme; 07-31-2003 at 08:14 PM.
|
|
|
07-31-2003, 08:16 PM
|
#25
|
Member
Registered: Jan 2003
Location: Canada
Distribution: Ubuntu, Mepis, Debian
Posts: 158
Rep:
|
Quote:
Originally posted by itsjustme
Well, I guess that about confirms it.
I said to use 'exit',
then lfur,
then m9dhatter,
then Steve Cronje,
then synecdoche
Anybody else?
|
Yes, but you used a funny accent, didn't you ;-)
Steve
|
|
|
07-31-2003, 08:21 PM
|
#26
|
Senior Member
Registered: Mar 2003
Location: Earth
Distribution: Slackware, Ubuntu, Smoothwall
Posts: 1,571
Rep:
|
wayul, ah am frum texsiz...

|
|
|
All times are GMT -5. The time now is 08:39 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|