Linux Get User Space Restrictions

0 Likes
This Perl script retrieves the user space quotas for a specific user on a specified NSS volume.

It uses the Virtual File Services (Originally called Virtual File Services for NetWare) which were ported over to Linux. The SDK for this API set can be downloaded from http://developer.novell.com/wiki/index.php/Virtual_File_Services_for_NetWare. The objective of the tool is to delete a specified Linux NSS Pool Snapshot using XML as specified in the VFS for NetWare specification. It is intended to be used as a sample script for developers that may want to use the VFS API set to view and manage storage.

How to Use the file:

linuxGetUserSpaceRestrictions.pl is a Perl script. So Perl must be installed and running on the Linux server that this file is being loaded on. NSS must be installed to get the VFS support.

To run the perl script type:

perl linuxGetUserSpaceRestrictions.pl VOLUME_NAME USER_NAME



where VOLUME_NAME is the name of an NSS volume.

where USER_NAME is the dot delimited distinguished edir name of the user.

Example: perl linuxGetUserSpaceRestrictions.pl VOL1 user1.novell

Sample output:

seek:/a # perl linuxGetUserSpaceRestrictions.pl NSS1 Person.Organization.ZZ
file is now open
File Name: </_admin/Manage_NSS/manage.cmd
Request Sent: <virtualIO><datastream name="command"/></virtualIO><nssRequest><userSpaceRestrictions><get><volumeName>NSS1</volumeName><userName>Person.Organization.ZZ</userName></get></userSpaceRestrictions></nssRequest>
<nssReply>
<userSpaceRestrictions>
<get>
<quota>92094464</quota>
<spaceUsed>0</spaceUsed>
<result value="0"><description>zOK</description></result>
</get>
</userSpaceRestrictions>
<result value="0"><description>zOK</description></result>
</nssReply>




Tags:

Labels:

Collateral
How To-Best Practice
Comment List
Related
Recommended