Unix permissions for a newbie


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Unix permissions for a newbie
# 1  
Old 08-08-2006
Unix permissions for a newbie

Okay,
this may turn out to be something quite simple, but I haven't found the answer so far:

1) Is it possible to retrieve a list of user(ID) file permissions?

and then...

2) What is the most efficient way to create an alert/error message when/if those file permissions are denied? Would this require a simple Perl script, or something affiliated with ROOT?

Kinda itchin' to get this resolved as soon as possible.

I'll be happy to provide further information if necessary.

Thanks
# 2  
Old 08-09-2006
1) Is it possible to retrieve a list of user(ID) file permissions?

See the man page for the find command
$ find . -user username -ls
username can be either a username or a numeric user ID.



2) What is the most efficient way to create an alert/error message when/if those file permissions are denied?

The system will provide a error message - what more do you want?
$ls -l /var/adm/sulog
-rw------- 1 root root 71386 Aug 1 12:00 /var/adm/sulog
$ cat /var/adm/sulog
/var/adm/sulog: Permission denied
# 3  
Old 08-09-2006
Okay, I'll look into that.
What I really want to do: How can I get Perl to return the unix permissions of a directory?

Thanks
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help for Unix Newbie

Hi all, 1. How are we going to call .cmd files which is in window under Unix Environment? 2. Is there any equivalent command in Unix for "start" which is available in Windosw? Thx very much. (5 Replies)
Discussion started by: jessy83
5 Replies

2. UNIX Desktop Questions & Answers

unix newbie

Hi everyone! Thanks for taking the time. I've installed redhat and ubunto on vmware virtually. I want to try unix and I tried to look in the internet but wasn't able to accomplish my desire task. Any links for install, download links and information will be honestly appreciated. I will be... (6 Replies)
Discussion started by: michaelttkk
6 Replies

3. UNIX for Dummies Questions & Answers

newbie in unix

hiii i have few questions..i hav just started using unix....i got two doubts or problems as per now, if anyone can clarify it or solve it, his/her help is highly appreciated.. 1) how to Rename all files which contain the sub-string 'foo', replacing it with 'bar' within a given folder. 2)How to... (1 Reply)
Discussion started by: vicky1989
1 Replies

4. UNIX for Dummies Questions & Answers

UNIX newbie NEWBIE question!

Hello everyone, Just started UNIX today! In our school we use solaris. I just want to know how do I setup Solaris 10 not the GUI one, the one where you have to type the commands like ECHO, ls, pwd, etc... I have windows xp and I also have vmware. I hope I am not missing anything! :p (4 Replies)
Discussion started by: Hanamachi
4 Replies

5. UNIX for Dummies Questions & Answers

I'm a newbie to unix

i have just installed UNIX 7.01 to replace a windows server2003 used for my family to share and remotely save photos i need to set it up so very novice users can view, import and export photos most of the remote users will have windows machines,i use Linux, Mac and windows. most of what i want... (2 Replies)
Discussion started by: chance63
2 Replies

6. Shell Programming and Scripting

Can we call JSP file from Unix.if so how.Please help me.Im newbie to Unix

Hi Can we call a jsp page from Unix.if so please let me know how we can.. thanks for the help in advance... thanks kumar (0 Replies)
Discussion started by: mailsukumar
0 Replies

7. Ubuntu

Newbie, Directories permissions

Basicly im trying to edit a file for apache2 in /var/etc/apache2 and i dont have permissions, my login name is associated with root but i still can't do anything, Does anyone have any ideas? Thanks in advance! (3 Replies)
Discussion started by: sypherz
3 Replies

8. Shell Programming and Scripting

Newbie to HP Unix

Hi Im a newbie to unix having been a windows guy, yes I know a swear word on here ? but part of my new job is to be trained up on Unix. On the course we were set a task to read a file that has dates times codes etc, a log file. see below as an example 2007/02/19 00:00:06: Information: Switch... (3 Replies)
Discussion started by: MyNameisEarl
3 Replies

9. UNIX for Dummies Questions & Answers

Newbie to Unix

Hey, I've been a windows guy all my life, but i have finally decided to move to Unix and buy a Mac. I am pretty good with a lot of programming applications on windows, but was wondering if u guys had any advice on how to get started on Unix, like books to read, applications to buy, websites,... (8 Replies)
Discussion started by: Mafia
8 Replies

10. UNIX for Dummies Questions & Answers

unix newbie

What shellscript would I use If I wanted to list all files in the current directory which are identical to a certain filename. I am told to use binary comparison but have been unable to find out what this means. I have tried man pages and can find a file of a certian filename but cant seem to... (1 Reply)
Discussion started by: gavinlow1980
1 Replies
Login or Register to Ask a Question