1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
3 <refentry id="smbget.1">
6 <refentrytitle>smbget</refentrytitle>
7 <manvolnum>1</manvolnum>
8 <refmiscinfo class="source">Samba</refmiscinfo>
9 <refmiscinfo class="manual">User Commands</refmiscinfo>
10 <refmiscinfo class="version">&doc.version;</refmiscinfo>
15 <refname>smbget</refname>
16 <refpurpose>wget-like utility for download files over SMB</refpurpose>
21 <command>smbget</command>
22 <arg choice="opt">-a, --guest</arg>
23 <arg choice="opt">-r, --resume</arg>
24 <arg choice="opt">--recursive</arg>
25 <arg choice="opt">-D, --dots</arg>
26 <arg choice="opt">-o, --outputfile</arg>
27 <arg choice="opt">-q, --quiet</arg>
28 <arg choice="opt">-v, --verbose</arg>
29 <arg choice="opt">-b, --blocksize</arg>
30 <arg choice="opt">-O, --stdout</arg>
31 <arg choice="opt">-u, --update</arg>
32 <arg choice="opt">-e, --encrypt</arg>
33 <arg choice="opt">--limit-rate=INT</arg>
34 <arg choice="opt">-?|--help</arg>
35 <arg choice="opt">--usage</arg>
36 <arg choice="opt">-d|--debuglevel=DEBUGLEVEL</arg>
37 <arg choice="opt">--debug-stdout</arg>
38 <arg choice="opt">-s|--configfile=CONFIGFILE</arg>
39 <arg choice="opt">--option=name=value</arg>
40 <arg choice="opt">-l|--log-basename=LOGFILEBASE</arg>
41 <arg choice="opt">--leak-report</arg>
42 <arg choice="opt">--leak-report-full</arg>
43 <arg choice="opt">-R|--name-resolve=NAME-RESOLVE-ORDER</arg>
44 <arg choice="opt">-O|--socket-options=SOCKETOPTIONS</arg>
45 <arg choice="opt">-m|--max-protocol=MAXPROTOCOL</arg>
46 <arg choice="opt">-n|--netbiosname=NETBIOSNAME</arg>
47 <arg choice="opt">--netbios-scope=SCOPE</arg>
48 <arg choice="opt">-W|--workgroup=WORKGROUP</arg>
49 <arg choice="opt">--realm=REALM</arg>
50 <arg choice="opt">-U|--user=[DOMAIN/]USERNAME%[PASSWORD]</arg>
51 <arg choice="opt">-N|--no-pass</arg>
52 <arg choice="opt">--password=STRING</arg>
53 <arg choice="opt">--pw-nt-hash</arg>
54 <arg choice="opt">-A|--authentication-file=FILE</arg>
55 <arg choice="opt">-P|--machine-pass</arg>
56 <arg choice="opt">--simple-bind-dn=DN</arg>
57 <arg choice="opt">--use-kerberos=desired|required|off</arg>
58 <arg choice="opt">--use-krb5-ccache=CCACHE</arg>
59 <arg choice="opt">--use-winbind-ccache</arg>
60 <arg choice="opt">--client-protection=sign|encrypt|off</arg>
61 <arg choice="opt">-V|--version</arg>
62 <arg choice="req">smb://host/share/path/to/file</arg>
63 <arg choice="opt">smb://url2/</arg>
64 <arg choice="opt">...</arg>
69 <title>DESCRIPTION</title>
71 <para>This tool is part of the <citerefentry><refentrytitle>samba</refentrytitle>
72 <manvolnum>7</manvolnum></citerefentry> suite.</para>
74 <para>smbget is a simple utility with wget-like semantics, that can download files from SMB servers. You can specify the files you would like to download on the command-line.
78 The files should be in the smb-URL standard, e.g. use smb://host/share/file
79 for the UNC path <emphasis>\\\\HOST\\SHARE\\file</emphasis>.
84 <title>OPTIONS</title>
87 <term>-a, --guest</term>
88 <listitem><para>Work as user guest</para></listitem>
92 <term>-r, --resume</term>
93 <listitem><para>Automatically resume aborted files</para></listitem>
97 <term>--recursive</term>
98 <listitem><para>Recursively download files</para></listitem>
102 <term>-D, --dots</term>
103 <listitem><para>Show dots as progress indication</para></listitem>
107 <term>-o, --outputfile</term>
108 <listitem><para>Write the file that is being downloaded to the specified file. Can not be used together with -R.</para></listitem>
112 <term>--stdout</term>
113 <listitem><para>Write the file that is being downloaded to standard output.</para></listitem>
117 <term>-q, --quiet</term>
118 <listitem><para>Be quiet</para></listitem>
122 <term>-v, --verbose</term>
123 <listitem><para>Be verbose</para></listitem>
127 <term>-b, --blocksize</term>
128 <listitem><para>Number of bytes to download in a block. Defaults to 64000.</para></listitem>
132 <term>-u, --update</term>
133 <listitem><para>Download only when remote file is newer than local file or local file is missing.</para></listitem>
137 <term>-e, --encrypt</term>
138 <listitem><para>Enable SMB encryption.</para></listitem>
142 <term>--limit-rate=INT</term>
143 <listitem><para>Limit download rate by this many KB/s.</para></listitem>
147 &cmdline.common.samba.client;
148 &cmdline.common.connection;
149 &cmdline.common.credentials;
153 <title>SMB URLS</title>
155 <para> SMB URL's should be specified in the following format:</para>
157 <para><programlisting>
158 smb://[[[domain;]user[:password@]]server[/share[/path[/file]]]]
159 </programlisting></para>
161 <para><programlisting>
162 smb:// means all the workgroups
163 </programlisting></para>
165 <para><programlisting>
166 smb://name/ means, if <replaceable>name</replaceable> is a workgroup, all the servers in this workgroup, or if <replaceable>name</replaceable> is a server, all the shares on this server.
167 </programlisting></para>
172 <title>EXAMPLES</title>
175 # Recursively download 'src' directory
176 smbget --recursive smb://rhonwyn/jelmer/src
177 # Download FreeBSD ISO and enable resuming
178 smbget --resume smb://rhonwyn/isos/FreeBSD5.1.iso
179 # Recursively download all ISOs
180 smbget --recursive --resume smb://rhonwyn/isos
181 # Backup my data on rhonwyn
182 smbget --recursive -resume smb://rhonwyn/
190 <para>Permission denied is returned in some cases where the cause of the error is unknown
191 (such as an illegally formatted smb:// url or trying to get a directory without --resursive
196 <title>VERSION</title>
198 <para>This man page is part of version &doc.version; of
199 the Samba suite.</para>
203 <title>AUTHOR</title>
205 <para>The original Samba software and related utilities
206 were created by Andrew Tridgell. Samba is now developed
207 by the Samba Team as an Open Source project similar
208 to the way the Linux kernel is developed.</para>
210 <para>The smbget manpage was written by Jelmer Vernooij.</para>