close
Warning:
Can't synchronize with repository "(default)" (/usr/svn/silverfile does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Jul 14, 2009, 3:37:34 PM (14 years ago)
- Author:
-
hank
- Comment:
-
more work on how-to
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v31
|
v32
|
|
242 | 242 | }}} |
243 | 243 | |
244 | | == Samba Set Up and Administration == |
245 | | |
246 | | Check for samba: |
247 | | {{{ |
248 | | smbd -V |
249 | | }}} |
250 | | Will return the samba version. |
251 | | |
252 | | Installation: |
| 244 | == Samba Installation == |
| 245 | |
| 246 | '''Installation''' |
253 | 247 | {{{ |
254 | 248 | sudo apt-get install samba |
255 | 249 | }}} |
256 | 250 | |
257 | | Add a new samba user: |
258 | | {{{ |
259 | | sudo smbpasswd -a smbuser |
260 | | }}} |
261 | | |
262 | | Copy config files from version control. smb.conf.master, recycle.conf, smbusers |
| 251 | '''Add a fileuser as samba user''' |
| 252 | {{{ |
| 253 | sudo smbpasswd -a filuser |
| 254 | }}} |
| 255 | |
| 256 | |
| 257 | '''Copy samba config files from repo''' |
| 258 | {{{ |
| 259 | cd /etc/samba/ |
| 260 | scp -P 2240 hank@dev.silverfilecorp.com:/usr/svn/sfexport/third_party/samba/smb.conf.master smb.conf.master |
| 261 | scp -P 2240 hank@dev.silverfilecorp.com:/usr/svn/sfexport/third_party/samba/recycle.conf recycle.conf |
| 262 | }}} |
| 263 | |
| 264 | '''Create smbusers file''' |
| 265 | fileuser = <name of principal attorney, etc> |
| 266 | {{{ |
| 267 | fileuser = matt |
| 268 | }}} |
263 | 269 | |
264 | 270 | == Users and Permissions on /FILES == |