![]() |
I need help with samba - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Hardware - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=6) +--- Forum: Network (https://www.linuxliteos.com/forums/forumdisplay.php?fid=24) +--- Thread: I need help with samba (/showthread.php?tid=6043) Pages:
1
2
|
I need help with samba - Phobos84 - 03-02-2019 Hello, I really need some help. For whatever reason I struggle with samba every time I have to do anything with it. This time though I am totally lost. So I had an old P4 PC with an older version of Linux Lite that was set up as a media server. After about 40 hours of messing with samba I got it to be visible and accessible by any computer on my network. All was well until I upgraded to a new computer and installed the new version of Lite. I can't get the network to work at all. It can be seen by other computers but not accessed. I have two hard drives in the computer. On has the operating system and the other has the files I need to share on the network. This is my smb.conf file Code: #======================= Global Settings ==================================== I'm clueless, any ideas? Re: I need help with samba - bitsnpcs - 03-02-2019 Hello Phobos84, https://www.tldp.org/HOWTO/SMB-HOWTO-6.html "You can test the correctness of a smb.conf file , using the 'testparm' utility (man page: testparm); if testparm reports no problems, smbd will correctly load the configuration file." Does testparm utility report any problems, or using it enabled you to solve it ? There are some samples of conf here, it may help notice a difference https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Standalone_Server Re: I need help with samba - Phobos84 - 03-03-2019 Ok this is what it came back with Code: chad2 ~ testparm I don't know what any of this means Re: I need help with samba - Phobos84 - 03-03-2019 The thing that bugs me the most about this is I used the same settings from the old smb.conf file. I just changed the directory name to match the new computer. It worked like a charm last time but this time nothing. I would love to see a better way to do this. I really don't like dealing with samba. Re: I need help with samba - bitsnpcs - 03-03-2019 I haven't used Samba so I am not sure either, I am looking around online for likely things to try. On this link have a look at the step number 6 restart Samba (did you do this after changing the directory name ? plus it was for the previous machine.) Code: sudo service smbd restart and number 8, compare the method of #8 to how you set up the network to see if this area is also good. https://help.ubuntu.com/community/How%20to%20Create%20a%20Network%20Share%20Via%20Samba%20Via%20CLI%20%28Command-line%20interface/Linux%20Terminal%29%20-%20Uncomplicated%2C%20Simple%20and%20Brief%20Way%21 Another thing I thought maybe is to check if you have made a rule in UFW to allow Samba, you will have had that on the previous machine, and if it was not added as a rule on the new machine, then it would deny incoming connections. As I have said I am not familiar with Samba, the conf file looks odd to me it seems to contradict itself. It says map guests as a bad user in global settings. But it says %G are valid users in server settings. It could be Samba needs to define the guest so it can map it as a bad user, it would seem more that if it is not a valid user then it doesnt need to be mapped as a bad user. Or it can not be in the valid user group and do map guests as a bad user, in case guests try to access it. Otherwise they look like it could conflict, or at the least slow the code down. Its just an idea. Re: I need help with samba - Phobos84 - 03-03-2019 I followed step 6 and restarted samba. I don't understand step 8. The # List all shares: smbclient -L //<HOST_IP_OR_NAME>/<folder_name> -U <user>. I don't know how to change this line to make it fit my application. What do I put in for host, folder name, and user? Re: I need help with samba - Phobos84 - 03-03-2019 Ok a few tings. I just noticed that in the smb.conf that it has printable = yes. This was making other computers see the server as a printer. So I changed that to "no". This didn't fix the connection problem but now my windows computer sees it as another computer and not a printer. I still can't access anything. I did verify that the firewall does in fact allow samba Re: I need help with samba - bitsnpcs - 03-03-2019 For host it needs the Ip address, folder name is the name of the directory of the shared files, user is the username , as the conf file specifies %U, so the username of admin user on the machine running Samba. During the searches I noticed about the Ip, dns it says on a multiple machine shares then it needs to be different for each one so they can be uniquely identified as which machine they are. I'll look for which link explained it. https://wiki.samba.org/index.php/Multiple_Server_Instances Explains for multiple servers but looking at the adresses format is what I meant. Re: I need help with samba - firenice03 - 03-03-2019 If you're not too far into it... The help manual has an easy set up... https://www.linuxliteos.com/manual/network.html#shares Re: I need help with samba - Phobos84 - 03-03-2019 I used the help manual to get me here. It didn't work. |