summaryrefslogtreecommitdiff
path: root/docs/docbook/manpages/smbcquotas.1.xml
blob: 53735b76d1f3154a1880199d194fc788015eec3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
				  
<!ENTITY % globalentities SYSTEM '../global.ent'> %globalentities;
]>
<refentry id="smbcquotas.1">

<refmeta>
	<refentrytitle>smbcquotas</refentrytitle>
	<manvolnum>1</manvolnum>
</refmeta>


<refnamediv>
	<refname>smbcquotas</refname>
	<refpurpose>Set or get QUOTAs of NTFS 5 shares</refpurpose>
</refnamediv>

<refsynopsisdiv>
	<cmdsynopsis>
		<command>smbcquotas</command>
		<arg choice="req">//server/share</arg>
		<arg choice="opt">-u user</arg>
		<arg choice="opt">-L</arg>
		<arg choice="opt">-F</arg>
		<arg choice="opt">-S QUOTA_SET_COMMAND</arg>
		<arg choice="opt">-n</arg>
		<arg choice="opt">-t</arg>
		<arg choice="opt">-v</arg>

		<arg choice="opt">-d debuglevel</arg>
		<arg choice="opt">-s configfile</arg>
		<arg choice="opt">-l logfilebase</arg>
		<arg choice="opt">-V</arg>

		<arg choice="opt">-U username</arg>
		<arg choice="opt">-N</arg>
		<arg choice="opt">-k</arg>
		<arg choice="opt">-A</arg>


	</cmdsynopsis>
</refsynopsisdiv>

<refsect1>
	<title>DESCRIPTION</title>

	<para>This tool is part of the <citerefentry><refentrytitle>Samba</refentrytitle>
	<manvolnum>7</manvolnum></citerefentry> suite.</para>

	<para>The <command>smbcquotas</command> program manipulates NT Quotas on SMB file shares. </para>
</refsect1>


<refsect1>
	<title>OPTIONS</title>

	<para>The following options are available to the <command>smbcquotas</command> program. </para>


	<variablelist>
		<varlistentry>
		<term>-u user</term>
		<listitem><para> Specifies the user of whom the quotas are get or set.
		By default the current user's username will be used.</para></listitem>
		</varlistentry>
		
		
		
		<varlistentry>
		<term>-L</term>
		<listitem><para>Lists all quota records of the share.</para></listitem>
		</varlistentry>

		
		
		<varlistentry>
		<term>-F</term>
		<listitem><para>Show the share quota status and default limits.</para></listitem>
		</varlistentry>
		
		
		
		<varlistentry>
		<term>-S QUOTA_SET_COMMAND</term>
		<listitem><para>This command set/modify quotas for a user or on the share,
		depending on the QUOTA_SET_COMMAND parameter witch is described later</para></listitem>
		</varlistentry>

		
		<varlistentry>
		<term>-n</term>
		<listitem><para>This option displays all QUOTA information in numeric 
		format.  The default is to convert SIDs to names and QUOTA limits 
		to a readable string format.  </para></listitem>
		</varlistentry>

		<varlistentry>
		<term>-t</term>
		<listitem><para>
		Don't actually do anything, only validate the correctness of 
		the arguments.
		</para></listitem>
		</varlistentry>

		<varlistentry>
		<term>-v</term>
		<listitem><para>
		Be verbose.
		</para></listitem>
		</varlistentry>
				
		&stdarg.help;
		&popt.common.samba;
		&popt.common.credentials;
	</variablelist>
</refsect1>


<refsect1>
	<title>QUOTA_SET_COMAND</title>

	<para>The format of an ACL is one or more ACL entries separated by 
	either commas or newlines.  An ACL entry is one of the following: </para>

	<para>
	for user setting quotas for the specified by -u or the current username:
	</para>

	<para><userinput>
	UQLIM:&lt;username&gt;&lt;softlimit&gt;&lt;hardlimit&gt;
	</userinput></para>

	<para>
	for setting the share quota defaults limits:
	</para>

	<para><userinput>
	FSQLIM:&lt;softlimit&gt;&lt;hardlimit&gt;
	</userinput></para>

	<para>
	for changing the share quota settings:
	</para>

	<para><userinput>
	FSQFLAGS:QUOTA_ENABLED/DENY_DISK/LOG_SOFTLIMIT/LOG_HARD_LIMIT
	</userinput></para>
</refsect1>

<refsect1>
	<title>EXIT STATUS</title>

	<para>The <command>smbcquotas</command> program sets the exit status
	depending on the success or otherwise of the operations performed.
	The exit status may be one of the following values. </para>

	<para>If the operation succeeded, smbcquotas returns an exit
	status of 0.  If <command>smbcquotas</command> couldn't connect to the specified server,
	or when there was an error getting or setting the quota(s), an exit status
	of 1 is returned.  If there was an error parsing any command line
	arguments, an exit status of 2 is returned. </para>
</refsect1>

<refsect1>
	<title>VERSION</title>

	<para>This man page is correct for version 3.0 of the Samba suite.</para>
</refsect1>

<refsect1>
	<title>AUTHOR</title>

	<para>The original Samba software and related utilities
	were created by Andrew Tridgell. Samba is now developed
	by the Samba Team as an Open Source project similar
	to the way the Linux kernel is developed.</para>

	<para><command>smbcquotas</command> was written by Stefan Metzmacher.</para>
</refsect1>

</refentry>