SAN Storage ACL and Quotas


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers SAN Storage ACL and Quotas
Prev   Next
# 1  
Old 07-19-2013
SAN Storage ACL and Quotas

I have SAN storage allocated to my server but ACL and Quotas mount options are not working on it. Is there a reason why?

Thank you!

Code:
/dev/mapper/datavg-datalv /data     ext4    defaults,usrquota,grpquota     1 2

mount -o remount /data

tune2fs -l /dev/mapper/datavg-datalv | grep 'Default mount'
Default mount options:    (none)


Last edited by Scott; 07-20-2013 at 12:57 AM.. Reason: Code tags
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Connecting to SAN storage - whats need to be done ?

hi all, I am on solaris 10 1/13 and new to SAN storage. I am required to connect to the LUNs on the SAN storage and is asked to provide the WWN information to the storage administrator. Right now, it will be just 1 connection from a single hba port to the FCport on the storage directly,... (1 Reply)
Discussion started by: javanoob
1 Replies

2. AIX

New to San Storage

Can anyone recommend a good book on san storage basics and how it communicates with an AIX server? (1 Reply)
Discussion started by: NycUnxer
1 Replies

3. Solaris

SAN Storage for ASM

Hi, We are planning to setup a 10gR2 RAC and storage on ASM. We use Sun StorEdge SAN. The installation and configuration manual says to configure ASM diskgroups with raw devices (preferably raw disk not volumes). I dont really know if its possible to present raw disks to the Solaris... (4 Replies)
Discussion started by: esmgr
4 Replies

4. UNIX for Dummies Questions & Answers

Storage from SAN

hi guys I installed Centos 5.5 (local disk). I am using 2 HBAs Now I mapped 5 LUNs from a Storage. I will be using LVM just to test I assigned a LUN I've read I have to use multipath to avoid my Centos see the LUN twice I enabled mdmpd and multipathd... something else I should do? ... (8 Replies)
Discussion started by: kopper
8 Replies

5. Solaris

Cannot see the IBM SAN storage

HI all, I had recently change the Server storage from EMC to the IBM SAN. but after the configuration, the IBM success to see the server HBA port and successfully assign a LUN for the server. When i go to the server, and restarted it. i use the "format" command to check, but din see any... (1 Reply)
Discussion started by: SmartAntz
1 Replies

6. Red Hat

how do we check SAN storage?

Hello, I am using LINUX OS. I want to check what is the SAN storage size. How do i check this in server? Any help is really appreciated.. (3 Replies)
Discussion started by: govindts
3 Replies

7. AIX

SAN storage and speed

I have 3 SAN disks of 1 TB each. Is it more efficient to make 1 large Volume group with multiple LV's or 3 Volume Groups with 1 LV each. The SAN disk is where all my backups will be dumped.:confused: (1 Reply)
Discussion started by: daveisme
1 Replies

8. Filesystems, Disks and Memory

Switching SAN storage

Hi, I have an existing SUN server that has a SAN storage installed on it. It also has softwares like Appwrox(scheduler), Taradata (database client), Samba Share and a few more installed on it. Now suppose that I have a new unix server server and i switch the same SAN store from the old unix... (1 Reply)
Discussion started by: myloginid
1 Replies

9. Solaris

Using San storage - advice needed

Thinking of using our San for network backups.. Have a Netra 240 being installed and planning to get some space on our San. Do you know what software is used to access the San from my server or what I would need to do? I know how to connect to local storage, disk arrays etc but not sure what... (1 Reply)
Discussion started by: frustrated1
1 Replies
Login or Register to Ask a Question
ACL_CREATE_ENTRY(3)					   BSD Library Functions Manual 				       ACL_CREATE_ENTRY(3)

NAME
acl_create_entry -- create a new ACL entry LIBRARY
Linux Access Control Lists library (libacl, -lacl). SYNOPSIS
#include <sys/types.h> #include <sys/acl.h> int acl_create_entry(acl_t *acl_p, acl_entry_t *entry_p); DESCRIPTION
The acl_create_entry() function creates a new ACL entry in the ACL pointed to by the contents of the pointer argument acl_p. On success, the function returns a descriptor for the new ACL entry via entry_p. This function may cause memory to be allocated. The caller should free any releasable memory, when the new ACL is no longer required, by calling acl_free(3) with (void*)*acl_p as an argument. If the ACL working storage cannot be increased in the current location, then the working storage for the ACL pointed to by acl_p may be relocated and the previous working storage is released. A pointer to the new working storage is returned via acl_p. The components of the new ACL entry are initialized in the following ways: the ACL tag type component contains ACL_UNDEFINED_TAG, the quali- fier component contains ACL_UNDEFINED_ID, and the set of permissions has no permissions enabled. Any existing ACL entry descriptors that refer to entries in the ACL continue to refer to those entries. RETURN VALUE
The acl_create_entry() function returns the value 0 if successful; otherwise the value -1 is returned and the global variable errno is set to indicate the error. ERRORS
If any of the following conditions occur, the acl_create_entry() function returns -1 and sets errno to the corresponding value: [EINVAL] The argument acl_p is not a valid pointer to an ACL. [ENOMEM] The ACL working storage requires more memory than is allowed by the hardware or system-imposed memory management con- straints. STANDARDS
IEEE Std 1003.1e draft 17 ("POSIX.1e", abandoned) SEE ALSO
acl_init(3), acl_delete_entry(3), acl_free(3), acl_create_entry(3), acl(5) AUTHOR
Derived from the FreeBSD manual pages written by Robert N M Watson <rwatson@FreeBSD.org>, and adapted for Linux by Andreas Gruenbacher <a.gruenbacher@bestbits.at>. Linux ACL March 23, 2002 Linux ACL