博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】centos 6.4 samba 安装配置
阅读量:5926 次
发布时间:2019-06-19

本文共 1113 字,大约阅读时间需要 3 分钟。

  关掉防火墙

    service iptables stop 

    chkconfig iptables off (永久关闭防火墙)

    关闭SELinux

    vi /etc/sysconfig/selinux

    把 SELINUX=enforcing 修改为SELINUX= disabled 

    退出保存,并且重启

    [root@bogon lee]# yum install samba smbfs smbclient
二    创建目录
    [lee@bogon ~]$ mkdir share
    [lee@bogon ~]$ chmod 777 /home/lee/share/
三    修改samba配置文件
    [root@bogon lee]# cp /etc/samba/smb.conf smb_backup.conf
    [root@bogon lee]# vi /etc/samba/smb.conf                 
    将下面部分加入到smb.conf 末尾
        [share]
 path = /share
 available = yes
 browseable = yes
 public = yes
 writable = yes
四    创建samba账户
    [root@bogon lee]# touch /etc/samba/smbpasswd
    [root@bogon lee]# smbpasswd -a lee
如果还不能访问,尝试修改/etc/samba/smb.conf
# ----------------------- Standalone Server Options ------------------------
# Scurity can be set to user, share(deprecated) or server(deprecated)
# Backend to store user information in. New installations should
# use either tdbsam or ldapsam. smbpasswd is available for backwards
# compatibility. tdbsam requires no further configuration.
         security = user
==>  security = share
其他细节参考:
http://www.cnblogs.com/mchina/archive/2012/12/18/2816717.html

转载于:https://www.cnblogs.com/yuliyang/p/3583408.html

你可能感兴趣的文章
Express 源码分析及简易封装
查看>>
前端技术周刊 2018-09-03:parser
查看>>
.net平台下开发以太坊的实战示例(C#)
查看>>
Hystrix命令入门使用
查看>>
纸壳CMS可视化建站系统创建多语言网站
查看>>
Python方法(二) - 类与继承
查看>>
一道算法题:求出异或和为零的最长连续子串
查看>>
纯CSS 常见3D实例
查看>>
最最最常见的Java面试题总结——第二周
查看>>
Java 垃圾回收的一些概念
查看>>
element-ui upload组件
查看>>
MVVM框架理解及其原理实现
查看>>
工作态度的金字塔
查看>>
vue入门笔记体系(四)computed和watch
查看>>
【跃迁之路】【505天】刻意练习系列264(2018.06.25)
查看>>
API接口设计要考虑的因素
查看>>
Java+Netty实现的RESTful框架--netty-rest-server
查看>>
mpvue开发小程序所遇问题及h5转化方案
查看>>
Swift4.1第一章翻译
查看>>
源码阅读(1)ArrayList
查看>>