ik ben vrij nieuw met linux en ik ben tegen het volgende probleem aangekomen.
ik probeer een linux server in een windows omgeving te plaatsen, hiervoor heb ik Linux rad hat enterprise server 4 met update 4 geinstalleerd, en samba geconfugireerd;
nu kan ik de pc's vanuit de linux server wel zien in het netwerk gedeelte maar ik ze niet bereiken, als ik een client probeer te bereiken krijg ik de volgende melding "The folder contents could not be displayed ".
ik heb geprobeerd om andere pc's in het netwerk te pingen maar dat ging niet,
ik heb niet de hele file gepost maar ik denk dat het wel voldoende is,
hosts file:
smb file:
resolv;
heeft iemand een idee hoe ik dit kan oplossen?
bvd.
ik probeer een linux server in een windows omgeving te plaatsen, hiervoor heb ik Linux rad hat enterprise server 4 met update 4 geinstalleerd, en samba geconfugireerd;
nu kan ik de pc's vanuit de linux server wel zien in het netwerk gedeelte maar ik ze niet bereiken, als ik een client probeer te bereiken krijg ik de volgende melding "The folder contents could not be displayed ".
ik heb geprobeerd om andere pc's in het netwerk te pingen maar dat ging niet,
ik heb niet de hele file gepost maar ik denk dat het wel voldoende is,
hosts file:
code:
1
2
| 127.0.0.1 localhost.localdomain localhost arubadigital 192.168.0.5 arubadigital |
smb file:
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
| [global]
workgroup = arubadigital
server string = ads-svr5
; hosts allow = 192.168.1. 192.168.2. 127.
printcap name = /etc/printcap
load printers = yes
; printing = cups
cups options = raw
; guest account = pcguest
log file = /var/log/samba/%m.log
max log size = 50
; password server = <NT-Server-Name>
; password level = 8
; username level = 8
; encrypt passwords = yes
; smb passwd file = /etc/samba/smbpasswd
; unix password sync = Yes
; passwd program = /usr/bin/passwd %u
; passwd chat = *New*UNIX*password* %n\n *ReType*new*UNIX*password* %n\n *passwd:*all*authentication*tokens*updated*successfully*
## Where to store roving profiles (only for Win95 and WinNT)
# %L substitutes for this servers netbios name, %U is username
# You must uncomment the [Profiles] share below
; logon path = \\%L\Profiles\%U
#
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
; wins support = yes
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one WINS Server on the network. The default is NO.
; wins proxy = yes
# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups. The built-in default for versions 1.9.17 is yes,
# this has been changed in version 1.9.18 to no.
dns proxy = no
# Case Preservation can be handy - system default is _no_
# NOTE: These can be set on a per share basis
; preserve case = no
; short preserve case = no
# Default case is normally upper case for all DOS files
; default case = lower
# Be very careful with case sensitivity - it can break things!
; case sensitive = no
#============================ Share Definitions ==============================
idmap uid = 16777216-33554431
idmap gid = 16777216-33554431
template shell = /bin/false
password server = None
guest ok = yes
security = SHARE
winbind use default domain = no
[homes]
comment = Home Directories
browseable = no
writeable = yes
; [netlogon]
; comment = Network Logon Service
; path = /home/netlogon
; guest ok = yes
; writable = no
; share modes = no
;[Profiles]
; path = /home/profiles
; browseable = no
; guest ok = yes
[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
printable = yes
;[tmp]
; comment = Temporary file space
; path = /tmp
; read only = no
; public = yes
;[public]
; comment = Public Stuff
; path = /home/samba
; public = yes
; read only = yes
; write list = @staff
;[fredsprn]
; comment = Fred's Printer
; valid users = fred
; path = /homes/fred
; printer = freds_printer
; public = no
; writable = no
; printable = yes
;[fredsdir]
; comment = Fred's Service
; path = /usr/somewhere/private
; valid users = fred
; public = no
; writable = yes
; printable = no
;[pchome]
; comment = PC Directories
; path = /usr/pc/%m
; public = no
; writable = yes
;[public]
; path = /usr/somewhere/else/public
; public = yes
; only guest = yes
; writable = yes
; printable = no
;[myshare]
; comment = Mary's and Fred's stuff
; path = /usr/somewhere/shared
; valid users = mary fred
; public = no
; writable = yes
; printable = no
; create mask = 0765
[test]
path = /root/Desktop/test
writeable = yes
guest ok = yes |
resolv;
code:
1
| nameserver 192.168.0.1 |
heeft iemand een idee hoe ik dit kan oplossen?
bvd.