What is wrong with file permission?


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers What is wrong with file permission?
# 8  
Old 06-29-2016
Quote:
Originally Posted by Aia
What's the deal with your Selinux?
Some files have it, some directories have it, many files do not.
Code:
drwxr-xr-x. 2 root root 4096 Mar 25 12:06 console.apps
-rw-r--r--. 1 root root 1718 Dec  6  2011 pwquality.conf

What's the output of getenforce?
I'm not aware of selinux and i will explore on that.

BTW, gentenforce output is "Disabled"

Thanks
Bala
# 9  
Old 06-29-2016
Quote:
Originally Posted by Corona688
a) You have a read-only filesystem
b) selinux is tut-tutting at you.
c) There are ACLs in place, like there seem to be:
Code:
drwxr-xr-x.  6 root    root       4096 Jun 28 06:14 security

The dot at the end of the filemode display is indicative of ACLs (access control lists) being in place for this file. Please report the output of the aclget [/path/to/]security command.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 10  
Old 06-29-2016
Thank you. I was not aware that access control lists could supercede even root, this is quite interesting!
# 11  
Old 06-30-2016
Quote:
Originally Posted by bakunin
c) There are ACLs in place, like there seem to be:
Code:
drwxr-xr-x.  6 root    root       4096 Jun 28 06:14 security

The dot at the end of the filemode display is indicative of ACLs (access control lists) being in place for this file. Please report the output of the aclget [/path/to/]security command.

I hope this helps.

bakunin

Thank you very much. I was not aware of the ACL and "dot" stuff before.

However, i could not find the command "aclget" on my linux OS. I did searched on Google and i could see something related to IBM software.

Can you please let me know what Software i need in order to get "aclget" command?

Thanks
Bala
Smilie
# 12  
Old 06-30-2016
Quote:
Originally Posted by baluchen
Can you please let me know what Software i need in order to get "aclget" command?
Sorry, my bad. aclget is the command on AIX, use the getfacl instead.

Just for completeness sake, i remembered a fourth (although quite unprobable) possibility of what might have happened:

D) a DCE (distributed computing enviroment, similar to what Windoze calls a "domain")-cell is set up. Local root will not have automatically authority over all files, only dceroot does have this.

I hope this helps.
# 13  
Old 06-30-2016
Yes bakunin. You seems to be correct. Is there a way i can find what is my dceroot account name?

BTW, the result of getfacl command output.

Code:
[root@ip-10-34-70-118 ~]# getfacl /etc/security/
getfacl: Removing leading '/' from absolute path names
# file: etc/security/
# owner: root
# group: root
user::rwx
group::r-x
other::r-x

[root@ip-10-34-70-118 ~]# getfacl /etc/security/access-sshd.conf
getfacl: Removing leading '/' from absolute path names
# file: etc/security/access-sshd.conf
# owner: root
# group: root
user::rw-
group::r--
other::r--

[root@ip-10-34-70-118 ~]#

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Identify lines with wrong format in a file and fix

Gurus, I have a data file which has a certain number of columns say 101. It has one description column which contains foreign characters and due to this some times, those special characters are translated to new line character and resulting in failing the process. I am using the following awk... (4 Replies)
Discussion started by: tumsri
4 Replies

2. Solaris

File created with wrong timestamp

Hi All, We are working on solaris 10. I create a file using touch command and when list the file, it does not shows the right timestamp. ... (4 Replies)
Discussion started by: sandeep_kmehra
4 Replies

3. Shell Programming and Scripting

Wrong output when writing to file

Hello, I am having problem while redirecting output to a file where as on console output is proper. for dir in */; do printf "%s, " "$dir"; ls -m "$dir"; echo; done > output.txt Output of above command is coming in single line but when i am redirecting output to a file, single line i... (10 Replies)
Discussion started by: Manoj Rajput
10 Replies

4. UNIX for Advanced & Expert Users

File command return wrong filetype while file holds group separator char.

hi, I am trying to get the FileType using the File command. I have one file, which holds Group separator along with ASCII character. It's a Text file. But when I ran the File command the FileType is coming as "data". It should be "ASCII, Text file". Is the latest version of File... (6 Replies)
Discussion started by: Arpitak29
6 Replies

5. UNIX for Dummies Questions & Answers

File permission

Only kernel can write to a directory file. Then what does write permission for a directory imply? (2 Replies)
Discussion started by: vijaysy
2 Replies

6. Shell Programming and Scripting

Why result is wrong here ? whether break statement is wrong ?

Hi ! all I am just trying to check range in my datafile pls tell me why its resulting wrong admin@IEEE:~/Desktop$ cat test.txt 0 28.4 5 28.4 10 28.4 15 28.5 20 28.5 25 28.6 30 28.6 35 28.7 40 28.7 45 28.7 50 28.8 55 28.8 60 28.8 65 28.1... (2 Replies)
Discussion started by: Akshay Hegde
2 Replies

7. Red Hat

Wrong rotate permission

Hali All, I have a big problem. (REDHAT) I have a logrotate definition for wtmp: /var/log/wtmp { monthly minsize 1M create 0644 root utmp rotate 9 } There is a line for create the file with 0644 permission. If I run the definition manually it works as well, but when... (2 Replies)
Discussion started by: kalaso
2 Replies

8. Cybersecurity

file permission/acl: 2 users with write access on 1 file...

Hello, i need some help/advice on how to solve a particular problem. these are the users: |name | group | ---------- --------------- |boss | department1 | |assistant | department1 | |employee | department1 | |spy | department2 | this is the... (0 Replies)
Discussion started by: elzalem
0 Replies

9. UNIX for Advanced & Expert Users

if [ -s $File ] ; Whats wrong in this ??

Subject="QM DOWN : Daily Monitoring Report " MAIL_RECIPIENTS="someone@some.where" dspmq > tempdspmq.txt.$$ cat tempdspmq.txt.$$ sed -n '/Running/p' tempdspmq.txt.$$ > temp cat temp if then echo "1 DONE" cat "$/clocal/mqbrkrs/user/mqsiadm/sanjay/temp" | mailx -s "$Subject" $MAIL_RECIPIENTS... (5 Replies)
Discussion started by: varungupta
5 Replies

10. UNIX for Dummies Questions & Answers

File Permission

Hi, When I listed one directory in Sun, it showed that : -rwsr-xr-x 1 root bsmbin 78004 Oct 21 2004 bsmprsm I don't know meaning of the character "s" in "rws" above. I have searched in Sun admin documents but no result. Would you please explain it ? :) Thank you so much. (1 Reply)
Discussion started by: msg098
1 Replies
Login or Register to Ask a Question