UId


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting UId
# 1  
Old 05-11-2011
UId

is tty command opens a process in the system if yes then why process got the userid?????
# 2  
Old 05-11-2011
I do not understand the question. Please write your question in good English language.


Best guess:
The "tty" command executes within the current user environment. It is a privileged system command and and is thus allowed to obtain detail about the current user.

Last edited by methyl; 05-12-2011 at 09:08 AM..
# 3  
Old 05-11-2011
My question is that the 'tty'-> "terminal producing" command opens a new process in the system??????
if yes then why it gets the user id for that????? because it is a process.
so it should get the process id not user id......
# 4  
Old 05-12-2011
What makes you think it's getting a UID?
# 5  
Old 05-12-2011
a file /etc/inittab has all the enteries of tty nd there is written a number which is same for all tty's so asked is that a userid or something else?
# 6  
Old 05-12-2011
Please post an example of the lines from /etc/inittab and mention what Operating System you have.
There is an explantion of /etc/inittab fields in "man inittab".

If yours looks something like this:
ttp1:234:respawn:/usr/sbin/getty -h tty0p1 9600
ttp2:234:respawn:/usr/sbin/getty -h tty0p2 9600

The "234" are three run states 2,3,4 . The 9600 is the baud rate of the serial terminal port.


On many of my systems there are no "tty" entries in /etc/inittab because there are no serial terminals installed on the computer (except the console which is not a tty). Telnet sessions are allocated pseudo-ttys (pts) by the telnet daemon and do not appear in /etc/inittab.



There is a unix command called "tty" which tells you the device name of your current terminal. That is what I thought your enquiry was about.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

UID Admin

Hi All, I have to give permission to one of the groups called as "ABC" as like the permissions of the group "UNIXADM". Could you please some one help on this issue ? (3 Replies)
Discussion started by: ramareddi16
3 Replies

2. Solaris

Changing uid value

Hi, I want to change user id gefadm ,uid=0(root) gid=0(root) to uid=16649(isaadmin) gid=16284(dstage), how can i change this uid ,gid one value to another value. Please provide the steps how can i change , uid=0(root) gid=0(root) to uid=16649(isaadmin) gid=16284(dstage). Thanks in advance for... (2 Replies)
Discussion started by: sridhardwh
2 Replies

3. AIX

More than 1 UID 0

Hi, Can any one please tell what are the risks of having more than one users having UID 0 (root)? Thanks Naveed (9 Replies)
Discussion started by: naveedaix
9 Replies

4. UNIX for Dummies Questions & Answers

Duplicated UID

Hi folks! I need you help to discover what's the impact of a duplicated UID in an operating system. What's the meaning when someone put in different users the same UID? (3 Replies)
Discussion started by: phcostabh
3 Replies

5. Shell Programming and Scripting

uid script help

i need a script to process a password file and based on the UIDs in the password file, generate the new UID that is 1 greater than the highest uid. i have some script logic but i dont really understand it. any help? #!/usr/bin/perl ########################################## #... (3 Replies)
Discussion started by: livewire06
3 Replies

6. Shell Programming and Scripting

Shall I go for uid or ppid?

Hi Guys, I'd like to ask your advice on the following, I've written this script to terminate a given process by name: #!/bin/bash echo 'Please enter the process you wish to terminate' read process pid=$(pidof $process) kill -9 $pid echo $2 to make it safer I want it to reject the... (4 Replies)
Discussion started by: Lora Graham
4 Replies

7. Shell Programming and Scripting

checking uid

How do i go about getting the uid of the user and verify ? if then echo "You are not a superuser, please login as a superuser" exit1; fi the above code doesn't work. can some guru please help me. 1. how to get the uid of the user ? i know by typing id but how to... (7 Replies)
Discussion started by: filthymonk
7 Replies

8. AIX

UID not to be reused

Hello I want to find out how I can make sure in AIX that the UIDs cannot be reused Until after 6 Months after the user has left. Thanks, Noori (4 Replies)
Discussion started by: noori
4 Replies

9. UNIX for Dummies Questions & Answers

Reversing UID's

Is it possible given a uid to determine information about the person with the uid? An example would be simple information regarding what group and the name of the person associated with that uid. It seems there is probably an easy staring me in the face but i cant seem to find it... (3 Replies)
Discussion started by: dreaming1
3 Replies

10. AIX

UID Change

Currently, I have about 7 servers and the uid for a given person is different on each server. I want to make the uid's the same for a given username on each server. I know how to change the uid via smit, but when I do the previous uid number shows up as the owner for the files of that username.... (4 Replies)
Discussion started by: mcateriny
4 Replies
Login or Register to Ask a Question