Gentoo Archives: gentoo-doc-cvs

From: Josh Saddler <nightmorph@××××××××××××.org>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] cvs commit: quick-samba-howto.xml
Date: Sun, 29 Jul 2007 06:48:26
Message-Id: E1IF2ZY-0005Rh-DD@stork.gentoo.org
1 nightmorph 07/07/29 06:48:12
2
3 Modified: quick-samba-howto.xml
4 Log:
5 updated cifs stuff for bug 186776
6
7 Revision Changes Path
8 1.31 xml/htdocs/doc/en/quick-samba-howto.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/quick-samba-howto.xml?rev=1.31&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/quick-samba-howto.xml?rev=1.31&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/quick-samba-howto.xml?r1=1.30&r2=1.31
13
14 Index: quick-samba-howto.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/quick-samba-howto.xml,v
17 retrieving revision 1.30
18 retrieving revision 1.31
19 diff -u -r1.30 -r1.31
20 --- quick-samba-howto.xml 8 Jul 2007 02:22:04 -0000 1.30
21 +++ quick-samba-howto.xml 29 Jul 2007 06:48:12 -0000 1.31
22 @@ -1,5 +1,5 @@
23 <?xml version='1.0' encoding='UTF-8'?>
24 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/quick-samba-howto.xml,v 1.30 2007/07/08 02:22:04 nightmorph Exp $ -->
25 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/quick-samba-howto.xml,v 1.31 2007/07/29 06:48:12 nightmorph Exp $ -->
26 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
27 <guide link="/doc/en/quick-samba-howto.xml">
28 <title>Gentoo Samba3/CUPS/ClamAV HOWTO</title>
29 @@ -23,8 +23,8 @@
30 <!-- See http://creativecommons.org/licenses/by-sa/1.0 -->
31 <license/>
32
33 -<version>1.18</version>
34 -<date>2007-07-07</date>
35 +<version>1.19</version>
36 +<date>2007-07-28</date>
37
38 <chapter>
39 <title>Introduction to this HOWTO</title>
40 @@ -157,7 +157,7 @@
41
42 <p>
43 The main package we use here is net-fs/samba, however, you will need a kernel
44 -with smbfs support enabled in order to mount a samba or windows share from
45 +with cifs support enabled in order to mount a samba or windows share from
46 another computer. CUPS will be emerged if it is not already.
47 app-antivirus/clamav will be used also, but others should be easily adapted to
48 work with Samba. Gentoo's samba ebuild supports all kinds of virus scanning
49 @@ -993,24 +993,23 @@
50 <body>
51
52 <p>
53 -Now is time to configure our kernel to support smbfs. Since I'm assumming we've
54 -all compiled at least one kernel, we'll need to make sure we have all the right
55 -options selected in our kernel. For simplicity's sake, make it a module for ease
56 -of use. It is the author's opinion that kernel modules are a good thing and
57 -should be used whenever possible.
58 +Now is time to configure our kernel to support cifs. Since I'm assuming
59 +we've all compiled at least one kernel, we'll need to make sure we have all the
60 +right options selected in our kernel. For simplicity's sake, make it a module
61 +for ease of use. It is the author's opinion that kernel modules are a good thing
62 +and should be used whenever possible.
63 </p>
64
65 -<pre caption="Relevant kernel options" >
66 -CONFIG_SMB_FS=m
67 -CONFIG_SMB_UNIX=y
68 +<pre caption="Kernel support" >
69 +CONFIG_CIFS=m
70 </pre>
71
72 <p>
73 -Then make the module/install it; insert them with:
74 +Then make the module/install it; insert it with:
75 </p>
76
77 <pre caption="Loading the kernel module">
78 -# <i>modprobe smbfs</i>
79 +# <i>modprobe cifs</i>
80 </pre>
81
82 <p>
83 @@ -1020,13 +1019,13 @@
84
85 <pre caption="Mounting a Windows/Samba share">
86 <comment>(The syntax for mounting a Windows/Samba share is:
87 - mount -t smbfs [-o username=xxx,password=xxx] //server/share /mnt/point
88 + mount -t cifs [-o username=xxx,password=xxx] //server/share /mnt/point
89 If we are not using passwords or a password is not needed)</comment>
90
91 -# <i>mount -t smbfs //PrintServer/public /mnt/public</i>
92 +# <i>mount -t cifs //PrintServer/public /mnt/public</i>
93
94 <comment>(If a password is needed)</comment>
95 -# <i>mount -t smbfs -o username=USERNAME,password=PASSWORD //PrintServer/public /mnt/public</i>
96 +# <i>mount -t cifs -o username=USERNAME,password=PASSWORD //PrintServer/public /mnt/public</i>
97 </pre>
98
99 <p>
100
101
102
103 --
104 gentoo-doc-cvs@g.o mailing list