LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Can't Get Win7 to See Fedora's Shares (https://www.linuxquestions.org/questions/linux-newbie-8/cant-get-win7-to-see-fedoras-shares-4175497176/)

alemoo 03-05-2014 07:54 PM

Can't Get Win7 to See Fedora's Shares
 
I've been struggling with this on and off for several weeks when I have time after work and am unable to get Win7 to see any shares that I have in Fedora.

Both are part of the workgroup "workgroup" without quotes
I have disabled SELinux as I know nothing of this and it will likely take me several months of studying to understand how to work it.

smb and nmb are currently running.
I have installed system-config-samba
I set up a share name and directory
Under the Security tab, the Authentication Mode is set to User
Authentication Server and Kerberos Realm values are both blank.
Encrypt Passwords: Yes
No Guest account

I have set up a user with the same name as on my Windows PC.
Permissions on my share in system-config-samba are set to Read Only.
Visibility is set to Visible.

Windows 7 Firewall is dropped.
I went into Firewall Configuration and under both the Trusted and Home sections, checked off samba and samba client.

Under /etc/fstab I have my drive's ntfs-3g dmask set to 022,fmask is 133 and umask is 0022.

When I browse Windows Explorer to the Network icon, only my own Windows PC shows up.
It's definitely not a firewall issue as I dropped the firewall service and refreshed the Windows Explorer window and nothing shows up.
Re-enabled the Fedora firewall immediately after since it was not the cause of the problem.
I can ping the server from my desktop.
I should mention they're both on the LAN, in the same subnet.
I'm not sure what else I am missing.

I'm guessing that since I am using system-config-samba, I no longer need to configure the /etc/samba/smb.conf file?
I've noticed that some values in it have been commented out with a ; after I installed system-config-samba.
Regardless, I do see for example:

[global]
hostname lookups = yes
hosts allow = win7pc
workgroup = workgroup
server string = Samba Server Version %v
bind interfaces only = True
interfaces = lo p33p1 10.0.0.0/24
hosts deny = ALL
security = user
;encrypt passwords = yes
smb passwd file = /etc/smbpasswd
guest ok = no
;guest account = nobody

[music]
netbios name = music
path = media/g/music
;read only = yes
;browseable = yes
valid users = alemoo

michaelk 03-06-2014 11:45 AM

Your smb.conf file is a bit of a mess.

Quote:

[global]
hostname lookups = yes
hosts allow = win7pc
workgroup = workgroup
server string = Samba Server Version %v
bind interfaces only = True
interfaces = lo p33p1 10.0.0.0/24
hosts deny = ALL
security = user
;encrypt passwords = yes
smb passwd file = /etc/smbpasswd
guest ok = no
;guest account = nobody

[music]
netbios name = music
path = media/g/music
;read only = yes
;browseable = yes
valid users = alemoo
netbios name belongs in the global section and your path is not absolute. Try the following:

[global]
workgroup = workgroup
netbios name = music
server string = Samba Server Version %v
bind interfaces only = True
;interfaces = lo p33p1 10.0.0.0/24
security = user
passdb backend = tdbsam
guest ok = no
;guest account = nobody

[music]
path = /media/g/music
browseable = yes


testparm is a command line tool to check the syntax of your smb.conf file.

John VV 03-06-2014 01:57 PM

as for SE
LEAVE IT ENABLED !!!!!
set it to "permissive"
look to see if there are any warnings
if any fix them

then set it to ENFORCING !!!

SE has come a long way in the last 8 years

there are almost NO issues any more
the tools for working with it also have come a VERY long way in the last 8 years

and the last 6 or so versions of fedora have almost not had any issues

so for fedora 19 or 20

leave it on and set to ENFORCING

Fedora and Redhat have it installed for a very good reason
YOUR and hence the REST of the webs SECURITY

alemoo 03-06-2014 02:51 PM

Quote:

Originally Posted by michaelk (Post 5130034)
Your smb.conf file is a bit of a mess.



netbios name belongs in the global section and your path is not absolute. Try the following:

[global]
workgroup = workgroup
netbios name = music
server string = Samba Server Version %v
bind interfaces only = True
;interfaces = lo p33p1 10.0.0.0/24
security = user
passdb backend = tdbsam
guest ok = no
;guest account = nobody

[music]
path = /media/g/music
browseable = yes


testparm is a command line tool to check the syntax of your smb.conf file.

I noticed you wanted me to use music for the netbios name but is it not asking me for my computer's hostname which is orion?
Also, testparm only gave me one warning about having one of the shares with a name longer than 12 characters, but I'm assuming that won't cause the entire share process to break.
Here's what I have now.

[global]
workgroup = workgroup
netbios name = music
server string = Samba Server Version %v
bind interfaces only = True
;interfaces = lo p33p1 10.0.0.0/24
security = user
passdb backend = tdbsam
guest ok = no
;guest account = nobody

[music-ro]
browseable = yes
path = /media/g/music

[video-ro]
browseable = yes
path = /media/v

[training-ro]
browseable = yes
path = /media/g/training/Tech

[finished-dl-ro]
browseable = yes
path = /media/g/finished downloads

I restarted smb and nmb, but still can't see anything showing up.

alemoo 03-06-2014 02:57 PM

Thanks Michaelk, it shows up.
I just had to wait a bit for it to refresh.
It says it can not access the path, so I'll have to see what that's about now...

michaelk 03-06-2014 03:12 PM

Then replace
netbios name = music
with
netbios name = orion

Be sure to restart samba.
Can you access any of the shares on windows PC?

alemoo 03-06-2014 03:29 PM

Quote:

Originally Posted by michaelk (Post 5130157)
Then replace
netbios name = music
with
netbios name = orion

Be sure to restart samba.
Can you access any of the shares on windows PC?

No, it shows up the computer name under Network, so I can see Orion there.
When I try to get in, it says Windows can not access \\orion.
Diagnostics simply said to make sure it allows incoming connections for file and printer sharing.
I think I'm going to drop the firewall on the server (orion) real quick to try it out and see if that's where the issue is.

alemoo 03-06-2014 03:30 PM

Yep. It's the firewall!


All times are GMT -5. The time now is 09:36 AM.