mirror of
https://github.com/samba-team/samba.git
synced 2025-02-05 21:57:51 +03:00
Remove obsolete files
Update generated docs
This commit is contained in:
parent
844d725468
commit
24103c2c20
@ -1,56 +0,0 @@
|
|||||||
!==
|
|
||||||
!== README.Win2kSP2
|
|
||||||
!==
|
|
||||||
|
|
||||||
Author: Gerald (Jerry) Carter <jerry@samba.org>
|
|
||||||
|
|
||||||
==================================================================
|
|
||||||
|
|
||||||
There are several annoyances with Windows 2000 SP2. One of which
|
|
||||||
only appears when using a Samba server to host user profiles
|
|
||||||
to Windows 2000 SP2 clients in a Windows domain. This assumes
|
|
||||||
that Samba is a member of the domain, but the problem will
|
|
||||||
likely occur if it is not.
|
|
||||||
|
|
||||||
In order to server profiles successfully to Windows 2000 SP2
|
|
||||||
clients (when not operating as a PDC), Samba must have
|
|
||||||
|
|
||||||
nt acl support = no
|
|
||||||
|
|
||||||
added to the file share which houses the roaming profiles.
|
|
||||||
If this is not done, then the Windows 2000 SP2 client will
|
|
||||||
complain about not being able to access the profile (Access
|
|
||||||
Denied) and create multiple copies of it on disk (DOMAIN.user.001,
|
|
||||||
DOMAIN.user.002, etc...). See the smb.conf(5) man page
|
|
||||||
for more details on this option. Also note that the "nt acl support"
|
|
||||||
parameter was formally a global parameter in releases prior
|
|
||||||
to Samba 2.2.2.
|
|
||||||
|
|
||||||
The following is a minimal profile share
|
|
||||||
|
|
||||||
[profile]
|
|
||||||
path = /export/profile
|
|
||||||
create mask = 0600
|
|
||||||
directory mask = 0700
|
|
||||||
nt acl support = no
|
|
||||||
read only = no
|
|
||||||
|
|
||||||
The reason for this bug is that the Win2k SP2 client copies
|
|
||||||
the security descriptor for the profile which contains
|
|
||||||
the Samba server's SID, and not the domain SID. The client
|
|
||||||
compares the SID for SAMBA\user and realizes it is
|
|
||||||
different that the one assigned to DOMAIN\user. Hence the reason
|
|
||||||
for the "access denied" message.
|
|
||||||
|
|
||||||
By disabling the "nt acl support" parameter, Samba will send
|
|
||||||
the Win2k client a response to the QuerySecurityDescriptor
|
|
||||||
trans2 call which causes the client to set a default ACL
|
|
||||||
for the profile. This default ACL includes
|
|
||||||
|
|
||||||
DOMAIN\user "Full Control"
|
|
||||||
|
|
||||||
|
|
||||||
NOTE : This bug does not occur when using winbind to
|
|
||||||
create accounts on the Samba host for Domain users.
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
@ -1,256 +0,0 @@
|
|||||||
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
|
||||||
<!ENTITY % html "IGNORE">
|
|
||||||
<![%html;[
|
|
||||||
<!ENTITY % print "IGNORE">
|
|
||||||
<!ENTITY docbook.dsl SYSTEM "@SGML_SHARE@/dsssl/docbook/html/docbook.dsl" CDATA dsssl>
|
|
||||||
]]>
|
|
||||||
<!ENTITY % print "INCLUDE">
|
|
||||||
<![%print;[
|
|
||||||
<!ENTITY docbook.dsl SYSTEM "@SGML_SHARE@/dsssl/docbook/print/docbook.dsl" CDATA dsssl>
|
|
||||||
]]>
|
|
||||||
]>
|
|
||||||
|
|
||||||
<style-sheet>
|
|
||||||
|
|
||||||
<style-specification id="print" use="docbook">
|
|
||||||
<style-specification-body>
|
|
||||||
|
|
||||||
;; ==============================
|
|
||||||
;; customize the print stylesheet
|
|
||||||
;; ==============================
|
|
||||||
|
|
||||||
(declare-characteristic preserve-sdata?
|
|
||||||
;; this is necessary because right now jadetex does not understand
|
|
||||||
;; symbolic entities, whereas things work well with numeric entities.
|
|
||||||
"UNREGISTERED::James Clark//Characteristic::preserve-sdata?"
|
|
||||||
#f)
|
|
||||||
|
|
||||||
(define %generate-article-toc%
|
|
||||||
;; Should a Table of Contents be produced for Articles?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define (toc-depth nd)
|
|
||||||
2)
|
|
||||||
|
|
||||||
(define %generate-article-titlepage-on-separate-page%
|
|
||||||
;; Should the article title page be on a separate page?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %section-autolabel%
|
|
||||||
;; Are sections enumerated?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %footnote-ulinks%
|
|
||||||
;; Generate footnotes for ULinks?
|
|
||||||
#f)
|
|
||||||
|
|
||||||
(define %bop-footnotes%
|
|
||||||
;; Make "bottom-of-page" footnotes?
|
|
||||||
#f)
|
|
||||||
|
|
||||||
(define %body-start-indent%
|
|
||||||
;; Default indent of body text
|
|
||||||
0pi)
|
|
||||||
|
|
||||||
(define %para-indent-firstpara%
|
|
||||||
;; First line start-indent for the first paragraph
|
|
||||||
0pt)
|
|
||||||
|
|
||||||
(define %para-indent%
|
|
||||||
;; First line start-indent for paragraphs (other than the first)
|
|
||||||
0pt)
|
|
||||||
|
|
||||||
(define %block-start-indent%
|
|
||||||
;; Extra start-indent for block-elements
|
|
||||||
0pt)
|
|
||||||
|
|
||||||
(define formal-object-float
|
|
||||||
;; Do formal objects float?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %hyphenation%
|
|
||||||
;; Allow automatic hyphenation?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %admon-graphics%
|
|
||||||
;; Use graphics in admonitions?
|
|
||||||
#f)
|
|
||||||
|
|
||||||
</style-specification-body>
|
|
||||||
</style-specification>
|
|
||||||
|
|
||||||
|
|
||||||
<!--
|
|
||||||
;; ===================================================
|
|
||||||
;; customize the html stylesheet; borrowed from Cygnus
|
|
||||||
;; at http://sourceware.cygnus.com/ (cygnus-both.dsl)
|
|
||||||
;; ===================================================
|
|
||||||
-->
|
|
||||||
|
|
||||||
<style-specification id="html" use="docbook">
|
|
||||||
<style-specification-body>
|
|
||||||
|
|
||||||
(declare-characteristic preserve-sdata?
|
|
||||||
;; this is necessary because right now jadetex does not understand
|
|
||||||
;; symbolic entities, whereas things work well with numeric entities.
|
|
||||||
"UNREGISTERED::James Clark//Characteristic::preserve-sdata?"
|
|
||||||
#f)
|
|
||||||
|
|
||||||
(define %generate-legalnotice-link%
|
|
||||||
;; put the legal notice in a separate file
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %admon-graphics-path%
|
|
||||||
;; use graphics in admonitions, set their
|
|
||||||
"../images/")
|
|
||||||
|
|
||||||
(define %admon-graphics%
|
|
||||||
#f)
|
|
||||||
|
|
||||||
(define %funcsynopsis-decoration%
|
|
||||||
;; make funcsynopsis look pretty
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %html-ext%
|
|
||||||
;; when producing HTML files, use this extension
|
|
||||||
".html")
|
|
||||||
|
|
||||||
(define %generate-book-toc%
|
|
||||||
;; Should a Table of Contents be produced for books?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %generate-article-toc%
|
|
||||||
;; Should a Table of Contents be produced for articles?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %generate-part-toc%
|
|
||||||
;; Should a Table of Contents be produced for parts?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %generate-book-titlepage%
|
|
||||||
;; produce a title page for books
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %generate-article-titlepage%
|
|
||||||
;; produce a title page for articles
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define (chunk-skip-first-element-list)
|
|
||||||
;; forces the Table of Contents on separate page
|
|
||||||
'())
|
|
||||||
|
|
||||||
(define (list-element-list)
|
|
||||||
;; fixes bug in Table of Contents generation
|
|
||||||
'())
|
|
||||||
|
|
||||||
(define %root-filename%
|
|
||||||
;; The filename of the root HTML document (e.g, "index").
|
|
||||||
"index")
|
|
||||||
|
|
||||||
(define %shade-verbatim%
|
|
||||||
;; verbatim sections will be shaded if t(rue)
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %use-id-as-filename%
|
|
||||||
;; Use ID attributes as name for component HTML files?
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define %graphic-extensions%
|
|
||||||
;; graphic extensions allowed
|
|
||||||
'("gif" "png" "jpg" "jpeg" "tif" "tiff" "eps" "epsf" ))
|
|
||||||
|
|
||||||
(define %graphic-default-extension%
|
|
||||||
"gif")
|
|
||||||
|
|
||||||
(define %section-autolabel%
|
|
||||||
;; For enumerated sections (1.1, 1.1.1, 1.2, etc.)
|
|
||||||
#t)
|
|
||||||
|
|
||||||
(define (toc-depth nd)
|
|
||||||
;; more depth (2 levels) to toc; instead of flat hierarchy
|
|
||||||
;; 2)
|
|
||||||
4)
|
|
||||||
|
|
||||||
(element emphasis
|
|
||||||
;; make role=strong equate to bold for emphasis tag
|
|
||||||
(if (equal? (attribute-string "role") "strong")
|
|
||||||
(make element gi: "STRONG" (process-children))
|
|
||||||
(make element gi: "EM" (process-children))))
|
|
||||||
|
|
||||||
(define (book-titlepage-recto-elements)
|
|
||||||
;; elements on a book's titlepage
|
|
||||||
;; note: added revhistory to the default list
|
|
||||||
(list (normalize "title")
|
|
||||||
(normalize "subtitle")
|
|
||||||
(normalize "graphic")
|
|
||||||
(normalize "mediaobject")
|
|
||||||
(normalize "corpauthor")
|
|
||||||
(normalize "authorgroup")
|
|
||||||
(normalize "author")
|
|
||||||
(normalize "editor")
|
|
||||||
(normalize "copyright")
|
|
||||||
(normalize "revhistory")
|
|
||||||
(normalize "abstract")
|
|
||||||
(normalize "legalnotice")))
|
|
||||||
|
|
||||||
(define (article-titlepage-recto-elements)
|
|
||||||
;; elements on an article's titlepage
|
|
||||||
;; note: added othercredit to the default list
|
|
||||||
(list (normalize "title")
|
|
||||||
(normalize "subtitle")
|
|
||||||
(normalize "authorgroup")
|
|
||||||
(normalize "author")
|
|
||||||
(normalize "othercredit")
|
|
||||||
(normalize "releaseinfo")
|
|
||||||
(normalize "copyright")
|
|
||||||
(normalize "pubdate")
|
|
||||||
(normalize "revhistory")
|
|
||||||
(normalize "abstract")))
|
|
||||||
|
|
||||||
(mode article-titlepage-recto-mode
|
|
||||||
|
|
||||||
(element contrib
|
|
||||||
;; print out with othercredit information; for translators, etc.
|
|
||||||
(make sequence
|
|
||||||
(make element gi: "SPAN"
|
|
||||||
attributes: (list (list "CLASS" (gi)))
|
|
||||||
(process-children))))
|
|
||||||
|
|
||||||
(element othercredit
|
|
||||||
;; print out othercredit information; for translators, etc.
|
|
||||||
(let ((author-name (author-string))
|
|
||||||
(author-contrib (select-elements (children (current-node))
|
|
||||||
(normalize "contrib"))))
|
|
||||||
(make element gi: "P"
|
|
||||||
attributes: (list (list "CLASS" (gi)))
|
|
||||||
(make element gi: "B"
|
|
||||||
(literal author-name)
|
|
||||||
(literal " - "))
|
|
||||||
(process-node-list author-contrib))))
|
|
||||||
)
|
|
||||||
|
|
||||||
(define (article-title nd)
|
|
||||||
(let* ((artchild (children nd))
|
|
||||||
(artheader (select-elements artchild (normalize "artheader")))
|
|
||||||
(artinfo (select-elements artchild (normalize "articleinfo")))
|
|
||||||
(ahdr (if (node-list-empty? artheader)
|
|
||||||
artinfo
|
|
||||||
artheader))
|
|
||||||
(ahtitles (select-elements (children ahdr)
|
|
||||||
(normalize "title")))
|
|
||||||
(artitles (select-elements artchild (normalize "title")))
|
|
||||||
(titles (if (node-list-empty? artitles)
|
|
||||||
ahtitles
|
|
||||||
artitles)))
|
|
||||||
(if (node-list-empty? titles)
|
|
||||||
""
|
|
||||||
(node-list-first titles))))
|
|
||||||
|
|
||||||
|
|
||||||
</style-specification-body>
|
|
||||||
</style-specification>
|
|
||||||
|
|
||||||
<external-specification id="docbook" document="docbook.dsl">
|
|
||||||
|
|
||||||
</style-sheet>
|
|
||||||
|
|
@ -1,27 +1,28 @@
|
|||||||
.\" This manpage has been automatically generated by docbook2man-spec
|
.\" This manpage has been automatically generated by docbook2man
|
||||||
.\" from a DocBook document. docbook2man-spec can be found at:
|
.\" from a DocBook document. This tool can be found at:
|
||||||
.\" <http://shell.ipoline.com/~elmert/hacks/docbook2X/>
|
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
|
||||||
.\" Please send any bug reports, improvements, comments, patches,
|
.\" Please send any bug reports, improvements, comments, patches,
|
||||||
.\" etc. to Steve Cheng <steve@ggi-project.org>.
|
.\" etc. to Steve Cheng <steve@ggi-project.org>.
|
||||||
.TH "FINDSMB" "1" "28 January 2002" "" ""
|
.TH "FINDSMB" "1" "20 augustus 2002" "" ""
|
||||||
.SH NAME
|
.SH NAME
|
||||||
findsmb \- list info about machines that respond to SMB name queries on a subnet
|
findsmb \- list info about machines that respond to SMB name queries on a subnet
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.sp
|
|
||||||
\fBfindsmb\fR [ \fBsubnet broadcast address\fR ]
|
\fBfindsmb\fR [ \fBsubnet broadcast address\fR ]
|
||||||
|
|
||||||
.SH "DESCRIPTION"
|
.SH "DESCRIPTION"
|
||||||
.PP
|
.PP
|
||||||
This perl script is part of the Sambasuite.
|
This perl script is part of the Samba <URL:samba.7.html> suite.
|
||||||
.PP
|
.PP
|
||||||
\fBfindsmb\fR is a perl script that
|
\fBfindsmb\fR is a perl script that
|
||||||
prints out several pieces of information about machines
|
prints out several pieces of information about machines
|
||||||
on a subnet that respond to SMB name query requests.
|
on a subnet that respond to SMB name query requests.
|
||||||
It uses \fB nmblookup(1)\fRto obtain this information.
|
It uses \fB nmblookup(1)\fR <URL:nmblookup.1.html> and \fBsmbclient(1)\fR <URL:smbclient.1.html> to obtain this information.
|
||||||
.SH "OPTIONS"
|
.SH "OPTIONS"
|
||||||
.TP
|
.TP
|
||||||
\fBsubnet broadcast address\fR
|
\fBsubnet broadcast address\fR
|
||||||
Without this option, \fBfindsmb
|
Without this option, \fBfindsmb
|
||||||
\fRwill probe the subnet of the machine where
|
\fR will probe the subnet of the machine where
|
||||||
\fBfindsmb\fR is run. This value is passed
|
\fBfindsmb\fR is run. This value is passed
|
||||||
to \fBnmblookup\fR as part of the
|
to \fBnmblookup\fR as part of the
|
||||||
-B option
|
-B option
|
||||||
@ -40,16 +41,16 @@ Machines that are running Windows, Windows 95 or Windows 98 will
|
|||||||
not show any information about the operating system or server
|
not show any information about the operating system or server
|
||||||
version.
|
version.
|
||||||
.PP
|
.PP
|
||||||
The command must be run on a system without \fBnmbd\fRrunning.
|
The command must be run on a system without \fBnmbd\fR <URL:nmbd.8.html> running.
|
||||||
If \fBnmbd\fR is running on the system, you will
|
If \fBnmbd\fR is running on the system, you will
|
||||||
only get the IP address and the DNS name of the machine. To
|
only get the IP address and the DNS name of the machine. To
|
||||||
get proper responses from Windows 95 and Windows 98 machines,
|
get proper responses from Windows 95 and Windows 98 machines,
|
||||||
the command must be run as root.
|
the command must be run as root.
|
||||||
.PP
|
.PP
|
||||||
For example running \fBfindsmb\fR on a machine
|
For example running \fBfindsmb\fR on a machine
|
||||||
without \fBnmbd\fR running would yield output similar
|
without \fBnmbd\fR running would yield output similar
|
||||||
to the following
|
to the following
|
||||||
.sp
|
|
||||||
.nf
|
.nf
|
||||||
IP ADDR NETBIOS NAME WORKGROUP/OS/VERSION
|
IP ADDR NETBIOS NAME WORKGROUP/OS/VERSION
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
@ -64,7 +65,6 @@ IP ADDR NETBIOS NAME WORKGROUP/OS/VERSION
|
|||||||
192.168.35.93 FROGSTAR-PC [MVENGR] [Windows 5.0] [Windows 2000 LAN Manager]
|
192.168.35.93 FROGSTAR-PC [MVENGR] [Windows 5.0] [Windows 2000 LAN Manager]
|
||||||
192.168.35.97 HERBNT1 *[HERB-NT] [Windows NT 4.0] [NT LAN Manager 4.0]
|
192.168.35.97 HERBNT1 *[HERB-NT] [Windows NT 4.0] [NT LAN Manager 4.0]
|
||||||
|
|
||||||
.sp
|
|
||||||
.fi
|
.fi
|
||||||
.SH "VERSION"
|
.SH "VERSION"
|
||||||
.PP
|
.PP
|
||||||
@ -72,9 +72,9 @@ This man page is correct for version 2.2 of
|
|||||||
the Samba suite.
|
the Samba suite.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.PP
|
.PP
|
||||||
\fBnmbd(8)\fR,
|
\fBnmbd(8)\fR <URL:nmbd.8.html>,
|
||||||
\fBsmbclient(1)
|
\fBsmbclient(1)
|
||||||
\fR
|
\fR <URL:smbclient.1.html>, and \fBnmblookup(1)\fR <URL:nmblookup.1.html>
|
||||||
.SH "AUTHOR"
|
.SH "AUTHOR"
|
||||||
.PP
|
.PP
|
||||||
The original Samba software and related utilities
|
The original Samba software and related utilities
|
||||||
@ -86,5 +86,5 @@ The original Samba man pages were written by Karl Auer.
|
|||||||
The man page sources were converted to YODL format (another
|
The man page sources were converted to YODL format (another
|
||||||
excellent piece of Open Source software, available at
|
excellent piece of Open Source software, available at
|
||||||
ftp://ftp.icce.rug.nl/pub/unix/ <URL:ftp://ftp.icce.rug.nl/pub/unix/>) and updated for the Samba 2.0
|
ftp://ftp.icce.rug.nl/pub/unix/ <URL:ftp://ftp.icce.rug.nl/pub/unix/>) and updated for the Samba 2.0
|
||||||
release by Jeremy Allison. The conversion to DocBook for
|
release by Jeremy Allison. The conversion to DocBook for
|
||||||
Samba 2.2 was done by Gerald Carter
|
Samba 2.2 was done by Gerald Carter
|
||||||
|
@ -1,21 +1,22 @@
|
|||||||
.\" This manpage has been automatically generated by docbook2man-spec
|
.\" This manpage has been automatically generated by docbook2man
|
||||||
.\" from a DocBook document. docbook2man-spec can be found at:
|
.\" from a DocBook document. This tool can be found at:
|
||||||
.\" <http://shell.ipoline.com/~elmert/hacks/docbook2X/>
|
.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/>
|
||||||
.\" Please send any bug reports, improvements, comments, patches,
|
.\" Please send any bug reports, improvements, comments, patches,
|
||||||
.\" etc. to Steve Cheng <steve@ggi-project.org>.
|
.\" etc. to Steve Cheng <steve@ggi-project.org>.
|
||||||
.TH "SMBCLIENT" "1" "08 May 2002" "" ""
|
.TH "SMBCLIENT" "1" "20 augustus 2002" "" ""
|
||||||
.SH NAME
|
.SH NAME
|
||||||
smbclient \- ftp-like client to access SMB/CIFS resources on servers
|
smbclient \- ftp-like client to access SMB/CIFS resources on servers
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.sp
|
|
||||||
\fBsmbclient\fR \fBservicename\fR [ \fBpassword\fR ] [ \fB-b <buffer size>\fR ] [ \fB-d debuglevel\fR ] [ \fB-D Directory\fR ] [ \fB-U username\fR ] [ \fB-W workgroup\fR ] [ \fB-M <netbios name>\fR ] [ \fB-m maxprotocol\fR ] [ \fB-A authfile\fR ] [ \fB-N\fR ] [ \fB-l logfile\fR ] [ \fB-L <netbios name>\fR ] [ \fB-I destinationIP\fR ] [ \fB-E <terminal code>\fR ] [ \fB-c <command string>\fR ] [ \fB-i scope\fR ] [ \fB-O <socket options>\fR ] [ \fB-p port\fR ] [ \fB-R <name resolve order>\fR ] [ \fB-s <smb config file>\fR ] [ \fB-T<c|x>IXFqgbNan\fR ]
|
\fBsmbclient\fR \fBservicename\fR [ \fBpassword\fR ] [ \fB-b <buffer size>\fR ] [ \fB-d debuglevel\fR ] [ \fB-D Directory\fR ] [ \fB-U username\fR ] [ \fB-W workgroup\fR ] [ \fB-M <netbios name>\fR ] [ \fB-m maxprotocol\fR ] [ \fB-A authfile\fR ] [ \fB-N\fR ] [ \fB-l logfile\fR ] [ \fB-L <netbios name>\fR ] [ \fB-I destinationIP\fR ] [ \fB-E <terminal code>\fR ] [ \fB-c <command string>\fR ] [ \fB-i scope\fR ] [ \fB-O <socket options>\fR ] [ \fB-p port\fR ] [ \fB-R <name resolve order>\fR ] [ \fB-s <smb config file>\fR ] [ \fB-T<c|x>IXFqgbNan\fR ]
|
||||||
|
|
||||||
.SH "DESCRIPTION"
|
.SH "DESCRIPTION"
|
||||||
.PP
|
.PP
|
||||||
This tool is part of the Sambasuite.
|
This tool is part of the Samba <URL:samba.7.html> suite.
|
||||||
.PP
|
.PP
|
||||||
\fBsmbclient\fR is a client that can
|
\fBsmbclient\fR is a client that can
|
||||||
\&'talk' to an SMB/CIFS server. It offers an interface
|
\&'talk' to an SMB/CIFS server. It offers an interface
|
||||||
similar to that of the ftp program (see \fBftp(1)\fR).
|
similar to that of the ftp program (see \fBftp(1)\fR).
|
||||||
Operations include things like getting files from the server
|
Operations include things like getting files from the server
|
||||||
to the local machine, putting files from the local machine to
|
to the local machine, putting files from the local machine to
|
||||||
the server, retrieving directory information from the server
|
the server, retrieving directory information from the server
|
||||||
@ -26,14 +27,15 @@ and so on.
|
|||||||
servicename is the name of the service
|
servicename is the name of the service
|
||||||
you want to use on the server. A service name takes the form
|
you want to use on the server. A service name takes the form
|
||||||
\fI//server/service\fR where \fIserver
|
\fI//server/service\fR where \fIserver
|
||||||
\fRis the NetBIOS name of the SMB/CIFS server
|
\fR is the NetBIOS name of the SMB/CIFS server
|
||||||
offering the desired service and \fIservice\fR
|
offering the desired service and \fIservice\fR
|
||||||
is the name of the service offered. Thus to connect to
|
is the name of the service offered. Thus to connect to
|
||||||
the service "printer" on the SMB/CIFS server "smbserver",
|
the service "printer" on the SMB/CIFS server "smbserver",
|
||||||
you would use the servicename \fI//smbserver/printer
|
you would use the servicename \fI//smbserver/printer
|
||||||
\fR
|
\fR
|
||||||
|
|
||||||
Note that the server name required is NOT necessarily
|
Note that the server name required is NOT necessarily
|
||||||
the IP (DNS) host name of the server ! The name required is
|
the IP (DNS) host name of the server ! The name required is
|
||||||
a NetBIOS server name, which may or may not be the
|
a NetBIOS server name, which may or may not be the
|
||||||
same as the IP hostname of the machine running the server.
|
same as the IP hostname of the machine running the server.
|
||||||
|
|
||||||
@ -59,7 +61,7 @@ required, simply press ENTER to provide a null password.)
|
|||||||
|
|
||||||
Note: Some servers (including OS/2 and Windows for
|
Note: Some servers (including OS/2 and Windows for
|
||||||
Workgroups) insist on an uppercase password. Lowercase
|
Workgroups) insist on an uppercase password. Lowercase
|
||||||
or mixed case passwords may be rejected by these servers.
|
or mixed case passwords may be rejected by these servers.
|
||||||
|
|
||||||
Be cautious about including passwords in scripts.
|
Be cautious about including passwords in scripts.
|
||||||
.TP
|
.TP
|
||||||
@ -69,7 +71,7 @@ Specifies the location of the all important
|
|||||||
.TP
|
.TP
|
||||||
\fB-O socket options\fR
|
\fB-O socket options\fR
|
||||||
TCP socket options to set on the client
|
TCP socket options to set on the client
|
||||||
socket. See the socket options parameter in the \fI smb.conf (5)\fR manpage for the list of valid
|
socket. See the socket options parameter in the \fI smb.conf (5)\fR manpage for the list of valid
|
||||||
options.
|
options.
|
||||||
.TP
|
.TP
|
||||||
\fB-R <name resolve order>\fR
|
\fB-R <name resolve order>\fR
|
||||||
@ -85,7 +87,7 @@ cause names to be resolved as follows :
|
|||||||
\(bu
|
\(bu
|
||||||
lmhosts : Lookup an IP
|
lmhosts : Lookup an IP
|
||||||
address in the Samba lmhosts file. If the line in lmhosts has
|
address in the Samba lmhosts file. If the line in lmhosts has
|
||||||
no name type attached to the NetBIOS name (see the lmhosts(5)for details) then
|
no name type attached to the NetBIOS name (see the lmhosts(5) <URL:lmhosts.5.html> for details) then
|
||||||
any name type matches for lookup.
|
any name type matches for lookup.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
@ -94,14 +96,14 @@ name to IP address resolution, using the system \fI/etc/hosts
|
|||||||
\fR, NIS, or DNS lookups. This method of name resolution
|
\fR, NIS, or DNS lookups. This method of name resolution
|
||||||
is operating system dependent, for instance on IRIX or Solaris this
|
is operating system dependent, for instance on IRIX or Solaris this
|
||||||
may be controlled by the \fI/etc/nsswitch.conf\fR
|
may be controlled by the \fI/etc/nsswitch.conf\fR
|
||||||
file). Note that this method is only used if the NetBIOS name
|
file). Note that this method is only used if the NetBIOS name
|
||||||
type being queried is the 0x20 (server) name type, otherwise
|
type being queried is the 0x20 (server) name type, otherwise
|
||||||
it is ignored.
|
it is ignored.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
wins : Query a name with
|
wins : Query a name with
|
||||||
the IP address listed in the \fIwins server\fR
|
the IP address listed in the \fIwins server\fR
|
||||||
parameter. If no WINS server has
|
parameter. If no WINS server has
|
||||||
been specified this method will be ignored.
|
been specified this method will be ignored.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
@ -112,17 +114,15 @@ parameter. This is the least reliable of the name resolution
|
|||||||
methods as it depends on the target host being on a locally
|
methods as it depends on the target host being on a locally
|
||||||
connected subnet.
|
connected subnet.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
|
||||||
If this parameter is not set then the name resolve order
|
If this parameter is not set then the name resolve order
|
||||||
defined in the \fIsmb.conf\fR file parameter
|
defined in the \fIsmb.conf\fR file parameter
|
||||||
(name resolve order) will be used.
|
(name resolve order) will be used.
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
The default order is lmhosts, host, wins, bcast and without
|
The default order is lmhosts, host, wins, bcast and without
|
||||||
this parameter or any entry in the \fIname resolve order
|
this parameter or any entry in the \fIname resolve order
|
||||||
\fRparameter of the \fIsmb.conf\fR file the name resolution
|
\fR parameter of the \fIsmb.conf\fR file the name resolution
|
||||||
methods will be attempted in this order.
|
methods will be attempted in this order.
|
||||||
.PP
|
|
||||||
.TP
|
.TP
|
||||||
\fB-M NetBIOS name\fR
|
\fB-M NetBIOS name\fR
|
||||||
This options allows you to send messages, using
|
This options allows you to send messages, using
|
||||||
@ -139,7 +139,7 @@ The message is also automatically truncated if the message
|
|||||||
is over 1600 bytes, as this is the limit of the protocol.
|
is over 1600 bytes, as this is the limit of the protocol.
|
||||||
|
|
||||||
One useful trick is to cat the message through
|
One useful trick is to cat the message through
|
||||||
\fBsmbclient\fR. For example: \fB cat mymessage.txt | smbclient -M FRED \fR will
|
\fBsmbclient\fR. For example: \fB cat mymessage.txt | smbclient -M FRED \fR will
|
||||||
send the message in the file \fImymessage.txt\fR
|
send the message in the file \fImymessage.txt\fR
|
||||||
to the machine FRED.
|
to the machine FRED.
|
||||||
|
|
||||||
@ -147,7 +147,7 @@ You may also find the \fI-U\fR and
|
|||||||
\fI-I\fR options useful, as they allow you to
|
\fI-I\fR options useful, as they allow you to
|
||||||
control the FROM and TO parts of the message.
|
control the FROM and TO parts of the message.
|
||||||
|
|
||||||
See the message command parameter in the \fI smb.conf(5)\fR for a description of how to handle incoming
|
See the message command parameter in the \fI smb.conf(5)\fR for a description of how to handle incoming
|
||||||
WinPopup messages in Samba.
|
WinPopup messages in Samba.
|
||||||
|
|
||||||
\fBNote\fR: Copy WinPopup into the startup group
|
\fBNote\fR: Copy WinPopup into the startup group
|
||||||
@ -197,7 +197,7 @@ data, and should only be used when investigating a problem.
|
|||||||
Levels above 3 are designed for use only by developers and
|
Levels above 3 are designed for use only by developers and
|
||||||
generate HUGE amounts of log data, most of which is extremely
|
generate HUGE amounts of log data, most of which is extremely
|
||||||
cryptic. If \fIdebuglevel\fR is set to the letter 'A', then \fBall
|
cryptic. If \fIdebuglevel\fR is set to the letter 'A', then \fBall
|
||||||
\fRdebug messages will be printed. This setting
|
\fR debug messages will be printed. This setting
|
||||||
is for developers only (and people who \fBreally\fR want
|
is for developers only (and people who \fBreally\fR want
|
||||||
to know how the code works internally).
|
to know how the code works internally).
|
||||||
|
|
||||||
@ -222,7 +222,7 @@ The base name is used to generate actual log file names.
|
|||||||
For example, if the name specified was "log", the debug file
|
For example, if the name specified was "log", the debug file
|
||||||
would be \fIlog.client\fR.
|
would be \fIlog.client\fR.
|
||||||
|
|
||||||
The log file generated is never removed by the client.
|
The log file generated is never removed by the client.
|
||||||
.TP
|
.TP
|
||||||
\fB-h\fR
|
\fB-h\fR
|
||||||
Print the usage message for the client.
|
Print the usage message for the client.
|
||||||
@ -267,11 +267,11 @@ a \fBPASSWD\fR environment variable from which
|
|||||||
to read the password.
|
to read the password.
|
||||||
|
|
||||||
A third option is to use a credentials file which
|
A third option is to use a credentials file which
|
||||||
contains the plaintext of the domain name, username and password. This
|
contains the plaintext of the domain name, username and password. This
|
||||||
option is mainly provided for scripts where the admin doesn't
|
option is mainly provided for scripts where the admin doesn't
|
||||||
wish to pass the credentials on the command line or via environment
|
wish to pass the credentials on the command line or via environment
|
||||||
variables. If this method is used, make certain that the permissions
|
variables. If this method is used, make certain that the permissions
|
||||||
on the file restrict access from unwanted users. See the
|
on the file restrict access from unwanted users. See the
|
||||||
\fI-A\fR for more details.
|
\fI-A\fR for more details.
|
||||||
|
|
||||||
Be cautious about including passwords in scripts or in
|
Be cautious about including passwords in scripts or in
|
||||||
@ -284,15 +284,14 @@ it in directly.
|
|||||||
\fB-A filename\fR
|
\fB-A filename\fR
|
||||||
This option allows
|
This option allows
|
||||||
you to specify a file from which to read the username, domain name, and
|
you to specify a file from which to read the username, domain name, and
|
||||||
password used in the connection. The format of the file is
|
password used in the connection. The format of the file is
|
||||||
|
|
||||||
|
|
||||||
.sp
|
|
||||||
.nf
|
.nf
|
||||||
username = <value>
|
username = <value>
|
||||||
password = <value>
|
password = <value>
|
||||||
domain = <value>
|
domain = <value>
|
||||||
|
|
||||||
.sp
|
|
||||||
.fi
|
.fi
|
||||||
|
|
||||||
If the domain parameter is missing the current workgroup name
|
If the domain parameter is missing the current workgroup name
|
||||||
@ -302,8 +301,8 @@ access from unwanted users.
|
|||||||
\fB-L\fR
|
\fB-L\fR
|
||||||
This option allows you to look at what services
|
This option allows you to look at what services
|
||||||
are available on a server. You use it as \fBsmbclient -L
|
are available on a server. You use it as \fBsmbclient -L
|
||||||
host\fR and a list should appear. The \fI-I
|
host\fR and a list should appear. The \fI-I
|
||||||
\fRoption may be useful if your NetBIOS names don't
|
\fR option may be useful if your NetBIOS names don't
|
||||||
match your TCP/IP DNS host names or if you are trying to reach a
|
match your TCP/IP DNS host names or if you are trying to reach a
|
||||||
host on another network.
|
host on another network.
|
||||||
.TP
|
.TP
|
||||||
@ -311,7 +310,7 @@ host on another network.
|
|||||||
This option tells \fBsmbclient\fR how to interpret
|
This option tells \fBsmbclient\fR how to interpret
|
||||||
filenames coming from the remote server. Usually Asian language
|
filenames coming from the remote server. Usually Asian language
|
||||||
multibyte UNIX implementations use different character sets than
|
multibyte UNIX implementations use different character sets than
|
||||||
SMB/CIFS servers (\fBEUC\fR instead of \fB SJIS\fR for example). Setting this parameter will let
|
SMB/CIFS servers (\fBEUC\fR instead of \fB SJIS\fR for example). Setting this parameter will let
|
||||||
\fBsmbclient\fR convert between the UNIX filenames and
|
\fBsmbclient\fR convert between the UNIX filenames and
|
||||||
the SMB filenames correctly. This option has not been seriously tested
|
the SMB filenames correctly. This option has not been seriously tested
|
||||||
and may have some problems.
|
and may have some problems.
|
||||||
@ -334,7 +333,7 @@ servers.
|
|||||||
.TP
|
.TP
|
||||||
\fB-T tar options\fR
|
\fB-T tar options\fR
|
||||||
smbclient may be used to create \fBtar(1)
|
smbclient may be used to create \fBtar(1)
|
||||||
\fRcompatible backups of all the files on an SMB/CIFS
|
\fR compatible backups of all the files on an SMB/CIFS
|
||||||
share. The secondary tar flags that can be given to this option
|
share. The secondary tar flags that can be given to this option
|
||||||
are :
|
are :
|
||||||
.RS
|
.RS
|
||||||
@ -361,18 +360,18 @@ their creation dates restored properly.
|
|||||||
\fII\fR - Include files and directories.
|
\fII\fR - Include files and directories.
|
||||||
Is the default behavior when filenames are specified above. Causes
|
Is the default behavior when filenames are specified above. Causes
|
||||||
tar files to be included in an extract or create (and therefore
|
tar files to be included in an extract or create (and therefore
|
||||||
everything else to be excluded). See example below. Filename globbing
|
everything else to be excluded). See example below. Filename globbing
|
||||||
works in one of two ways. See r below.
|
works in one of two ways. See r below.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
\fIX\fR - Exclude files and directories.
|
\fIX\fR - Exclude files and directories.
|
||||||
Causes tar files to be excluded from an extract or create. See
|
Causes tar files to be excluded from an extract or create. See
|
||||||
example below. Filename globbing works in one of two ways now.
|
example below. Filename globbing works in one of two ways now.
|
||||||
See \fIr\fR below.
|
See \fIr\fR below.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
\fIb\fR - Blocksize. Must be followed
|
\fIb\fR - Blocksize. Must be followed
|
||||||
by a valid (greater than zero) blocksize. Causes tar file to be
|
by a valid (greater than zero) blocksize. Causes tar file to be
|
||||||
written out in blocksize*TBLOCK (usually 512 byte) blocks.
|
written out in blocksize*TBLOCK (usually 512 byte) blocks.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
@ -382,14 +381,14 @@ files that have the archive bit set. Useful only with the
|
|||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
\fIq\fR - Quiet. Keeps tar from printing
|
\fIq\fR - Quiet. Keeps tar from printing
|
||||||
diagnostics as it works. This is the same as tarmode quiet.
|
diagnostics as it works. This is the same as tarmode quiet.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
\fIr\fR - Regular expression include
|
\fIr\fR - Regular expression include
|
||||||
or exclude. Uses regular expression matching for
|
or exclude. Uses regular expression matching for
|
||||||
excluding or excluding files if compiled with HAVE_REGEX_H.
|
excluding or excluding files if compiled with HAVE_REGEX_H.
|
||||||
However this mode can be very slow. If not compiled with
|
However this mode can be very slow. If not compiled with
|
||||||
HAVE_REGEX_H, does a limited wildcard match on '*' and '?'.
|
HAVE_REGEX_H, does a limited wildcard match on '*' and '?'.
|
||||||
.TP 0.2i
|
.TP 0.2i
|
||||||
\(bu
|
\(bu
|
||||||
\fIN\fR - Newer than. Must be followed
|
\fIN\fR - Newer than. Must be followed
|
||||||
@ -403,63 +402,50 @@ specified are backed up to the tar file. Useful only with the
|
|||||||
archive bit to be reset when a file is backed up. Useful with the
|
archive bit to be reset when a file is backed up. Useful with the
|
||||||
\fIg\fR and \fIc\fR flags.
|
\fIg\fR and \fIc\fR flags.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
|
||||||
\fBTar Long File Names\fR
|
\fBTar Long File Names\fR
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBsmbclient\fR's tar option now supports long
|
\fBsmbclient\fR's tar option now supports long
|
||||||
file names both on backup and restore. However, the full path
|
file names both on backup and restore. However, the full path
|
||||||
name of the file must be less than 1024 bytes. Also, when
|
name of the file must be less than 1024 bytes. Also, when
|
||||||
a tar archive is created, \fBsmbclient\fR's tar option places all
|
a tar archive is created, \fBsmbclient\fR's tar option places all
|
||||||
files in the archive with relative names, not absolute names.
|
files in the archive with relative names, not absolute names.
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBTar Filenames\fR
|
\fBTar Filenames\fR
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
All file names can be given as DOS path names (with '\\'
|
All file names can be given as DOS path names (with '\\'
|
||||||
as the component separator) or as UNIX path names (with '/' as
|
as the component separator) or as UNIX path names (with '/' as
|
||||||
the component separator).
|
the component separator).
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBExamples\fR
|
\fBExamples\fR
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
Restore from tar file \fIbackup.tar\fR into myshare on mypc
|
Restore from tar file \fIbackup.tar\fR into myshare on mypc
|
||||||
(no password on share).
|
(no password on share).
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBsmbclient //mypc/yshare "" -N -Tx backup.tar
|
\fBsmbclient //mypc/yshare "" -N -Tx backup.tar
|
||||||
\fR.PP
|
\fR
|
||||||
.PP
|
|
||||||
Restore everything except \fIusers/docs\fR
|
Restore everything except \fIusers/docs\fR
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBsmbclient //mypc/myshare "" -N -TXx backup.tar
|
\fBsmbclient //mypc/myshare "" -N -TXx backup.tar
|
||||||
users/docs\fR
|
users/docs\fR
|
||||||
.PP
|
|
||||||
.PP
|
Create a tar file of the files beneath \fI users/docs\fR.
|
||||||
Create a tar file of the files beneath \fI users/docs\fR.
|
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBsmbclient //mypc/myshare "" -N -Tc
|
\fBsmbclient //mypc/myshare "" -N -Tc
|
||||||
backup.tar users/docs \fR
|
backup.tar users/docs \fR
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
Create the same tar file as above, but now use
|
Create the same tar file as above, but now use
|
||||||
a DOS path name.
|
a DOS path name.
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBsmbclient //mypc/myshare "" -N -tc backup.tar
|
\fBsmbclient //mypc/myshare "" -N -tc backup.tar
|
||||||
users\\edocs \fR
|
users\\edocs \fR
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
Create a tar file of all the files and directories in
|
Create a tar file of all the files and directories in
|
||||||
the share.
|
the share.
|
||||||
.PP
|
|
||||||
.PP
|
|
||||||
\fBsmbclient //mypc/myshare "" -N -Tc backup.tar *
|
\fBsmbclient //mypc/myshare "" -N -Tc backup.tar *
|
||||||
\fR.PP
|
\fR
|
||||||
.TP
|
.TP
|
||||||
\fB-D initial directory\fR
|
\fB-D initial directory\fR
|
||||||
Change to initial directory before starting. Probably
|
Change to initial directory before starting. Probably
|
||||||
@ -467,7 +453,7 @@ only of any use with the tar -T option.
|
|||||||
.TP
|
.TP
|
||||||
\fB-c command string\fR
|
\fB-c command string\fR
|
||||||
command string is a semicolon-separated list of
|
command string is a semicolon-separated list of
|
||||||
commands to be executed instead of prompting from stdin. \fI -N\fR is implied by \fI-c\fR.
|
commands to be executed instead of prompting from stdin. \fI -N\fR is implied by \fI-c\fR.
|
||||||
|
|
||||||
This is particularly useful in scripts and for printing stdin
|
This is particularly useful in scripts and for printing stdin
|
||||||
to the server, e.g. \fB-c 'print -'\fR.
|
to the server, e.g. \fB-c 'print -'\fR.
|
||||||
@ -486,14 +472,14 @@ The prompt indicates that the client is ready and waiting to
|
|||||||
carry out a user command. Each command is a single word, optionally
|
carry out a user command. Each command is a single word, optionally
|
||||||
followed by parameters specific to that command. Command and parameters
|
followed by parameters specific to that command. Command and parameters
|
||||||
are space-delimited unless these notes specifically
|
are space-delimited unless these notes specifically
|
||||||
state otherwise. All commands are case-insensitive. Parameters to
|
state otherwise. All commands are case-insensitive. Parameters to
|
||||||
commands may or may not be case sensitive, depending on the command.
|
commands may or may not be case sensitive, depending on the command.
|
||||||
.PP
|
.PP
|
||||||
You can specify file names which have spaces in them by quoting
|
You can specify file names which have spaces in them by quoting
|
||||||
the name with double quotes, for example "a long file name".
|
the name with double quotes, for example "a long file name".
|
||||||
.PP
|
.PP
|
||||||
Parameters shown in square brackets (e.g., "[parameter]") are
|
Parameters shown in square brackets (e.g., "[parameter]") are
|
||||||
optional. If not given, the command will use suitable defaults. Parameters
|
optional. If not given, the command will use suitable defaults. Parameters
|
||||||
shown in angle brackets (e.g., "<parameter>") are required.
|
shown in angle brackets (e.g., "<parameter>") are required.
|
||||||
.PP
|
.PP
|
||||||
Note that all commands operating on the server are actually
|
Note that all commands operating on the server are actually
|
||||||
@ -504,12 +490,12 @@ The commands available are given here in alphabetical order.
|
|||||||
.TP
|
.TP
|
||||||
\fB? [command]\fR
|
\fB? [command]\fR
|
||||||
If \fIcommand\fR is specified, the ? command will display
|
If \fIcommand\fR is specified, the ? command will display
|
||||||
a brief informative message about the specified command. If no
|
a brief informative message about the specified command. If no
|
||||||
command is specified, a list of available commands will
|
command is specified, a list of available commands will
|
||||||
be displayed.
|
be displayed.
|
||||||
.TP
|
.TP
|
||||||
\fB! [shell command]\fR
|
\fB! [shell command]\fR
|
||||||
If \fIshell command\fR is specified, the !
|
If \fIshell command\fR is specified, the !
|
||||||
command will execute a shell locally and run the specified shell
|
command will execute a shell locally and run the specified shell
|
||||||
command. If no command is specified, a local shell will be run.
|
command. If no command is specified, a local shell will be run.
|
||||||
.TP
|
.TP
|
||||||
@ -559,7 +545,7 @@ from the program.
|
|||||||
\fBget <remote file name> [local file name]\fR
|
\fBget <remote file name> [local file name]\fR
|
||||||
Copy the file called \fIremote file name\fR from
|
Copy the file called \fIremote file name\fR from
|
||||||
the server to the machine running the client. If specified, name
|
the server to the machine running the client. If specified, name
|
||||||
the local copy \fIlocal file name\fR. Note that all transfers in
|
the local copy \fIlocal file name\fR. Note that all transfers in
|
||||||
\fBsmbclient\fR are binary. See also the
|
\fBsmbclient\fR are binary. See also the
|
||||||
lowercase command.
|
lowercase command.
|
||||||
.TP
|
.TP
|
||||||
@ -717,7 +703,7 @@ outside the currently connected share. This is enforced by the Samba server.
|
|||||||
.TP
|
.TP
|
||||||
\fBtar <c|x>[IXbgNa]\fR
|
\fBtar <c|x>[IXbgNa]\fR
|
||||||
Performs a tar operation - see the \fI-T
|
Performs a tar operation - see the \fI-T
|
||||||
\fRcommand line option above. Behavior may be affected
|
\fR command line option above. Behavior may be affected
|
||||||
by the tarmode command (see below). Using g (incremental) and N
|
by the tarmode command (see below). Using g (incremental) and N
|
||||||
(newer) will affect tarmode settings. Note that using the "-" option
|
(newer) will affect tarmode settings. Note that using the "-" option
|
||||||
with tar x may not work - use the command line option instead.
|
with tar x may not work - use the command line option instead.
|
||||||
@ -750,18 +736,18 @@ supports the LANMAN2 protocol or above.
|
|||||||
.SH "ENVIRONMENT VARIABLES"
|
.SH "ENVIRONMENT VARIABLES"
|
||||||
.PP
|
.PP
|
||||||
The variable \fBUSER\fR may contain the
|
The variable \fBUSER\fR may contain the
|
||||||
username of the person using the client. This information is
|
username of the person using the client. This information is
|
||||||
used only if the protocol level is high enough to support
|
used only if the protocol level is high enough to support
|
||||||
session-level passwords.
|
session-level passwords.
|
||||||
.PP
|
.PP
|
||||||
The variable \fBPASSWD\fR may contain
|
The variable \fBPASSWD\fR may contain
|
||||||
the password of the person using the client. This information is
|
the password of the person using the client. This information is
|
||||||
used only if the protocol level is high enough to support
|
used only if the protocol level is high enough to support
|
||||||
session-level passwords.
|
session-level passwords.
|
||||||
.PP
|
.PP
|
||||||
The variable \fBLIBSMB_PROG\fR may contain
|
The variable \fBLIBSMB_PROG\fR may contain
|
||||||
the path, executed with system(), which the client should connect
|
the path, executed with system(), which the client should connect
|
||||||
to instead of connecting to a server. This functionality is primarily
|
to instead of connecting to a server. This functionality is primarily
|
||||||
intended as a development aid, and works best when using a LMHOSTS
|
intended as a development aid, and works best when using a LMHOSTS
|
||||||
file
|
file
|
||||||
.SH "INSTALLATION"
|
.SH "INSTALLATION"
|
||||||
@ -781,7 +767,7 @@ and writeable only by the user.
|
|||||||
.PP
|
.PP
|
||||||
To test the client, you will need to know the name of a
|
To test the client, you will need to know the name of a
|
||||||
running SMB/CIFS server. It is possible to run \fBsmbd(8)
|
running SMB/CIFS server. It is possible to run \fBsmbd(8)
|
||||||
\fRas an ordinary user - running that server as a daemon
|
\fR as an ordinary user - running that server as a daemon
|
||||||
on a user-accessible port (typically any port number over 1024)
|
on a user-accessible port (typically any port number over 1024)
|
||||||
would provide a suitable test server.
|
would provide a suitable test server.
|
||||||
.SH "DIAGNOSTICS"
|
.SH "DIAGNOSTICS"
|
||||||
@ -808,5 +794,5 @@ The original Samba man pages were written by Karl Auer.
|
|||||||
The man page sources were converted to YODL format (another
|
The man page sources were converted to YODL format (another
|
||||||
excellent piece of Open Source software, available at
|
excellent piece of Open Source software, available at
|
||||||
ftp://ftp.icce.rug.nl/pub/unix/ <URL:ftp://ftp.icce.rug.nl/pub/unix/>) and updated for the Samba 2.0
|
ftp://ftp.icce.rug.nl/pub/unix/ <URL:ftp://ftp.icce.rug.nl/pub/unix/>) and updated for the Samba 2.0
|
||||||
release by Jeremy Allison. The conversion to DocBook for
|
release by Jeremy Allison. The conversion to DocBook for
|
||||||
Samba 2.2 was done by Gerald Carter
|
Samba 2.2 was done by Gerald Carter
|
||||||
|
Loading…
x
Reference in New Issue
Block a user