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, 2:30:17 PM (13 years ago)
- Author:
-
hank
- Comment:
-
work on samba
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v5
|
v6
|
|
56 | 56 | }}} |
57 | 57 | |
| 58 | === Samba Administration === |
| 59 | |
| 60 | '''Check samba version (also checks if samba is running)''' |
| 61 | {{{ |
| 62 | smbd -V |
| 63 | }}} |
| 64 | |
| 65 | '''Use samba client''' |
| 66 | List smb shares on server: |
| 67 | {{{ |
| 68 | smbclient -L //server -U user |
| 69 | }}} |
| 70 | |
| 71 | '''Browse samba share''' |
| 72 | {{{ |
| 73 | smbclient //server/share -U user |
| 74 | (or) |
| 75 | smbclient //server/share -U user%password |
| 76 | }}} |
58 | 77 | |
59 | 78 | |
| 79 | |