NETWORKING – SYSTEM LINUX AND WINDOWS » Blog Archive » Create Fully accessed directory ( Samba )

NETWORKING – SYSTEM LINUX AND WINDOWS
WwW.vietsystem.org – Cùng nhau xây dựng một cộng đồng IT Việt Nam ngày một phát triển









 
Home Subscribe to Comments via RSS Upload Tong hop Video Training



Create Fully accessed directory ( Samba )



Tổng số xem: 491 Lần, 1 Lần hôm nay



Nội dung liên kết hay

Create a shared directory that anybody can read and write, and authentication is not needed.

1. Configure Samba

[root@lan ~]# mkdir /home/share
[root@lan ~]# chmod 777 /home/share
[root@lan ~]# vi /etc/samba/smb.conf

unix charset = UTF-8// line 24: add the line

workgroup = WORKGROUP// line 27: change (Windows’ default)

security = share// line 35: change

hosts allow = 192.168.0. 127.// line 41: hange IP address you permit

// add these lines at the bottom
[Share]// any name you like
path = /home/share// shared directory
writable = yes// OK to write
guest ok = yes// guest OK
guest only = yes// guest only
create mode = 0777// fully accessed
directory mode = 0777// fully accessed
share modes = yes

[root@lan ~]# /etc/rc.d/init.d/smb start
Starting SMB services:[ OK ]
Starting NMB services:[ OK ]
[root@lan ~]# chkconfig smb on

2. Configure on Windows client. Select [My Computer] – [Tools] – [Map Network Drive] like following example.
null

3. Specify shared folder’s place in Folder section like example and Click ‘Finish’ button to enter.
null

4, Done to access to shared folder.
null

Các bài viết gần đây nhất:



Bài viết có nội dung tương tự

Bài viết được xem nhiều

No Responses to “Create Fully accessed directory ( Samba )”
Sorry, the comment form is closed at this time.