I am trying to find the virtual file that contains the current users id. I was told that I could find it in the proc directory, but not quite sure which file.
|
feedback
|
|
You actually want /proc/self/status, which will give you information about the currently executed process. Here is an example:
You probably want to look at the first numbers on the Uid and Gid lines. You can look up which uid numbers map to what username by looking at /etc/passwd, or calling the relevant functions for mapping uid to username in whatever language you're using. Ideally, you would just call the system call 'getuid()' to look up this information, doing it by looking at /proc/ is counterproductive. | |||
feedback
|
|
I'm not sure that can be found in /proc. You could try using the getuid() function or the $USER environment variable. | |||
|
feedback
|
|
As far as I know, If you know you'll be on Linux only, you can explore the hierarchy under For example, try this command: | |||
|
feedback
|
|
Most likley, you either want to check the $USER environment variable. Other options include getuid and id -u, but searching /proc is certainly not the best method of action. | |||
|
feedback
|
|
In Uid: 1000 1000 1000 1000 This tells you the uid of the user under whose account the process is running. However, to find out the process id of the current process you would need a system call, and then you might as well call Edit: ah, | |||
|
feedback
|
|
The things you are looking for may be in environment variables. You need to be careful about what shell you are using when you check environment variables. bash uses "UID" while tcsh uses "uid" and in *nix case matters. I've also found that tcsh sets "gid" but I wasn't able to find a matching variable in bash. | |||
|
feedback
|