Posix Attributes


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Posix Attributes
# 1  
Old 03-07-2020
Posix Attributes

I can somebody help me find list of posix attributes for object class, for exemple posixGroup, posixUser etc.

Thanks,
In Advance

Last edited by vbe; 03-07-2020 at 05:27 AM.. Reason: typos
# 2  
Old 03-07-2020
Maybe here?

PosixFileAttributes (Java Platform SE 7 )


Quote:
public interface PosixFileAttributes

extends BasicFileAttributes

File attributes associated with files on file systems used by operating systems that implement the Portable Operating System Interface (POSIX) family of standards.
The POSIX attributes of a file are retrieved using a PosixFileAttributeView by invoking its readAttributes method.



Method Summary

Methods

Modifier and Type Method and Description

GroupPrincipal group()

Returns the group owner of the file.

UserPrincipal owner()

Returns the owner of the file.

Set<PosixFilePermission> permissions()

Returns the permissions of the file.

Methods inherited from interface java.nio.file.attribute.BasicFileAttributes

creationTime, fileKey, isDirectory, isOther, isRegularFile, isSymbolicLink, lastAccessTime, lastModifiedTime, size

Method Detail

owner

UserPrincipal owner()

Returns the owner of the file.

Returns:

the file owner

See Also:

FileOwnerAttributeView.setOwner(java.nio.file.attribute.UserPrincipal)

group

GroupPrincipal group()

Returns the group owner of the file.

Returns:
the file group owner

See Also:
PosixFileAttributeView.setGroup(java.nio.file.attribute.GroupPrincipal)

permissions
Set<PosixFilePermission> permissions()

Returns the permissions of the file. The file permissions are returned as a set of PosixFilePermission elements. The returned set is a copy of the file permissions and is modifiable. This allows the result to be modified and passed to the setPermissions method to update the file's permissions.

Returns:
the file permissions

See Also:

PosixFileAttributeView.setPermissions(java.util.Set<java.nio.file.attribute.PosixFilePermission>)
# 3  
Old 03-07-2020
Do you mean the Network Information Service schema for LDAP?
RFC 2307 - An Approach for Using LDAP as a Network Information Service
and
Or perhaps the follow-up draft that never made it to a standard:
draft-howard-rfc2307bis-02 - An Approach for Using LDAP as a Network Information Service

You need to check what schema is installed in your case.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

File attributes ????

I'm trying to sort out the charing of a problem folder, in the 'ls -l' list is shows as: d???????????? ? ? ? ? ? Pi-Share PiShare is the name of the directory, all the ??s make no sense to me at all, and no user (there are only two, pi and root) can make any changes to it.... (4 Replies)
Discussion started by: MuntyScrunt
4 Replies

2. UNIX for Dummies Questions & Answers

How to remove attributes of a file?

Hello, I opened a file by accident (with a java program, which has been uninstalled!) and from then on, all the file with .fasta extension has been changed with an icon (So annoying!!) and the file attributes has been changed with the property: Type: application/x-wine-extension-fasta type... (6 Replies)
Discussion started by: yifangt
6 Replies

3. AIX

Identify User Attributes

SOS Guys... Is there any way to determine the user attributes, mainly if that userid is set as never expire? I do not have admin rights, and I'm working on AIX 5.3 I've tried : lsuser -f <username> but no luck on that (2 Replies)
Discussion started by: freakygs
2 Replies

4. UNIX for Advanced & Expert Users

Help with can't get execution attributes

Hi Gurus, I am trying to create a FS using SVM but system is throwing the following error. newfs /dev/md/rdsk/d1002 newfs: construct a new file system /dev/md/rdsk/d1002: (y/n)? y /usr/sbin/clri: can't get execution attributes (1 Reply)
Discussion started by: rama krishna
1 Replies

5. UNIX for Dummies Questions & Answers

Problems with any ls attributes

I got a server (test server) that hangs anytime we run a ls attribute like ls -ltr or ls -al. We can run ls | more command with no problem. But getting back to the ls attribute problem, it just sits and hangs, I did a ps -ef | grep ls, and a user had 15 sessions of ls -al running, I killed those,... (3 Replies)
Discussion started by: Sarccastik Dude
3 Replies

6. UNIX Desktop Questions & Answers

file attributes and exception

hi, I want to know the date the file was created or modified. I can do this using ls, ll -ltr etc... I want to do this in a function (so If the file date is older then a week I can report it), is there a way? another thing... In sql function, I can catch exceptions, is there a way to do this... (1 Reply)
Discussion started by: krem
1 Replies

7. Shell Programming and Scripting

file attributes

How to retrieve file attributes in a sh/bash script (modification time, access time, size, etc.)? (1 Reply)
Discussion started by: Hitori
1 Replies

8. UNIX for Dummies Questions & Answers

how to find system attributes

hi, i am very- very new to unix i have os - sun solaris 5.9 and i want to learn more about system attributes for example, the make - model of machine , operating system & patch versions can somebody tell me a usefull command to learn these? any help would be apreciated, regards to all,... (3 Replies)
Discussion started by: merope
3 Replies

9. Shell Programming and Scripting

file attributes

how do we set file attributes at shell prompt (2 Replies)
Discussion started by: hytechpro
2 Replies

10. Shell Programming and Scripting

rcp and file attributes

Good day Does anyone have an idea on how I can rcp a file together with its attributes. owner,group, permissions ? Regards J (2 Replies)
Discussion started by: jhansrod
2 Replies
Login or Register to Ask a Question