I am having some issues configuring Samba on Fedora 16. I had it working fine on Fedora 14, but when I did a clean install of 16 and transferred by smb.conf setting over to the new install nothing has worked. I have scoured the forums but nothing is making this work. Here is some relevant info:
System - Asus motherboard, ~2 yrs old, 8GB RAM
Firewall - disabled
SELinux - disabled
both smb.service and nmb.service have been enabled and show up in /etc/systemd/system/multi-user-target.wants
I can ping my computer from other computers on the lan, but none of the shares show up
smb.conf:
#======================= Global Settings =====================================
[global]
workgroup = mdkgroup
server string = Main server
usershare allow guests = Yes
usershare max shares = 100
usershare owner only = False
hosts allow = 127. 192.168.2.
# --------------------------- Logging Options -----------------------------
# log files split per-machine:
log file = /var/log/samba/log.%m
# maximum size of 50KB per log file, then rotate:
max log size = 50
# ----------------------- Standalone Server Options ------------------------
security = user
; passdb backend = tdbsam
# -----------------------Printer Options -----------------------------------
; load printers = yes
cups options = raw
; printcap name = /etc/printcap
# obtain a list of printers automatically on UNIX System V systems:
; printcap name = lpstat
; printing = cups
# --------------------------- File System Options ---------------------------
; encrypt passwords = yes
guest ok = yes
guest account = jim
; store dos attributes = yes
#============================ Share Definitions ==============================
[homes]
comment = Home Directories
browseable = yes
writable = yes
valid users = jim
[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
; guest ok = no
; writable = No
printable = yes
[music]
comment = Music folder
path = /home/jim/Music
read only = no
browseable = yes
guest ok = yes
[Pictures]
path = /home/jim/Pictures
read only = no
browseable = yes
guest ok = yes
comment = Pictures folder
---------------------------------------------------------
Output from testparm:
[root@linux ~]# testparm
Load smb config files from /etc/samba/smb.conf
rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
Processing section "[homes]"
Processing section "[printers]"
Processing section "[music]"
Processing section "[Pictures]"
Loaded services file OK.
Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions
[global]
workgroup = MDKGROUP
server string = Main server
guest account = jim
log file = /var/log/samba/log.%m
max log size = 50
usershare allow guests = Yes
usershare max shares = 100
usershare owner only = No
idmap config * : backend = tdb
guest ok = Yes
hosts allow = 127., 192.168.2.
cups options = raw
[homes]
comment = Home Directories
valid users = jim
read only = No
[printers]
comment = All Printers
path = /var/spool/samba
printable = Yes
print ok = Yes
browseable = No
[music]
comment = Music folder
path = /home/jim/Music
read only = No
[Pictures]
comment = Pictures folder
path = /home/jim/Pictures
read only = No
---------------------------------------------------------
Any help is appreciated.