Samba: Difference between revisions
Line 48: | Line 48: | ||
Once the file has been saved restart the service. | Once the file has been saved restart the service. | ||
<pre> | <pre> | ||
service restart | service smb restart | ||
</pre> | </pre> | ||
[[Category: Linux]] | [[Category: Linux]] |
Revision as of 12:04, 28 November 2007
Description
This page will show you how to create Windows shares on a Linux box. This will allow Windows computers to access files on Linux.
Installation
Firstly install the samba server and client
Installation of Applications
yum install samba samba-client
Configuration of Applications
Once the required applicatons are installed we can add the computer to the domain by running authconfig.
authconfig-tui
Under the User infromation select Use Winbind
Under Authentication select Use Winbind Authentication
Under the Authentication column the "Use MD5 Password" and "Use Shadow Passwords" should be automatically select. Leave them selected.
Security Model is ads
Domain is NETBIOS domain name
Domain Controllers is the name of a Domain Controller
ADS Realm is DNS (FQDN) domain name
by default the /bin/false is selected.
Select Join Domain.
Select Ok.
Now edit the file /etc/samba/smb.conf file.
Create the required shares.
[meetme] comment = comment here path = /var/spool/asterisk/meetme guest ok = no browseable = yes writable = yes
Once the file has been saved restart the service.
service smb restart