Ik zou graag vanop een windows Xp machine en een linux YDL4.0 machine toegang krijgen tot een mac os X 10.4.9 machine.
Hiervoor heb ik in systeemvoorkeuren de windowsdeling aangezet, en de user S113 (mijn gebruiker - ook beheerder) aangevinkt.
Nu kan ik echter niet op de share noch vanop linux noch vanop de windows.
Het systeem vraagt wel de username / password, maar hij aanvaart deze niet...(linux geeft de error NT_STATUS_LOGON_FAILED)
na wat zoekwerk kwam ik uit dat het file smb.conf (in /private/etc/ ) de smb shares regelt. Maar zelfs na het lezen van de man pages, wat veranderen in die files, daemon starten en stoppen, geraak ik niet verder...
In bijlage een kopie van het smb.conf file.
Heeft iemand dit reeds voorgehad, en belangrijker hoe los ik dat op?
Hiervoor heb ik in systeemvoorkeuren de windowsdeling aangezet, en de user S113 (mijn gebruiker - ook beheerder) aangevinkt.
Nu kan ik echter niet op de share noch vanop linux noch vanop de windows.
Het systeem vraagt wel de username / password, maar hij aanvaart deze niet...(linux geeft de error NT_STATUS_LOGON_FAILED)
na wat zoekwerk kwam ik uit dat het file smb.conf (in /private/etc/ ) de smb shares regelt. Maar zelfs na het lezen van de man pages, wat veranderen in die files, daemon starten en stoppen, geraak ik niet verder...
In bijlage een kopie van het smb.conf file.
Heeft iemand dit reeds voorgehad, en belangrijker hoe los ik dat op?
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
| ; Template configuration file for smbd. ; ============================================================================ ; For the format of this file and comprehensive descriptions of all the ; configuration option, please refer to the man page for smb.conf(5). ; ; The following configuration should suit most systems for basic usage and ; initial testing. It gives all clients access to their home directories and ; allows access to all printers specified in /etc/printcap. It also provides ; a public share point for generally exporting stuff. ; ; Some things to check out: ; ; 1: Make sure that the user specified in "guest account" exists. Typically ; this will be a user that cannot log in and has minimal privileges. ; Often the "nobody" account doesn't work (very system dependant). ; ; 2: You should consider the "security =" option. See a full description ; in the main documentation and the smb.conf(5) manual page ; ; 3: Look at the "hosts allow" option, unless you want everyone on the internet ; workgroup = Workgroup ; Using the Computer Name to compute the NetBIOS name. Remove this comment to override netbios name = S113 ;[homes] ; comment = User Home Directories ; browseable = yes ; read only = no ;[public] ; path = /tmp ; public = yes ; only guest = yes ; writable = yes ; printable = no [printers] path = /tmp printable = yes ; Using the Computer Name to compute the NetBIOS name. Remove this comment to override netbios name = S113-G5 server string = S113 G5 to be able to access the shares you export here. ; ; 4: If you want to support printers, add/uncomment the relevant entries. ; [global] guest account = unknown encrypt passwords = yes auth methods = guest opendirectory passdb backend = opendirectorysam guest printer admin = @admin, @staff server string = S113 unix charset = UTF-8-MAC display charset = UTF-8-MAC dos charset = 437 use spnego = yes client ntlmv2 auth = no os level = 8 defer sharing violations = no vfs objects = darwin_acls brlm = yes workgroup = Workgroup ; Using the Computer Name to compute the NetBIOS name. Remove this comment to override netbios name = S113 [homes] comment = User Home Directories browseable = yes read only = no ;[public] ; path = /tmp ; public = yes ; only guest = yes ; writable = yes ; printable = no [printers] path = /tmp printable = yes |