Linux_4.day

  1. 不验证访问samba
[[email protected] ~]# service iptables stop#关闭防火墙
[[email protected] ~]# vi /etc/selinux/config#关闭selinux安全
SELINUX=disabled
[[email protected] ~]# setenforce 0
[[email protected] ~]# yum -y install samba samba-client samba-swat#安装samba相关软件
[[email protected] ~]# vi /etc/samba/smb.conf
# ----------------------- Network Related Options -------------------------
workgroup = MYGROUP#更改群组名称
#============================ Share Definitions ==============================
[public]
        comment = Public Stuff
        path = /share#共享路径
        public = yes
[[email protected] /]# mkdir /share
[[email protected] /]# cd share/
[[email protected] share]# touch samba.txt
[[email protected] share]# touch aa.txt
[[email protected] /]# chown -R nobody:nobody share/
[[email protected] /]# service smb restart

2.单群组

[[email protected] ~]# groupadd ts
[[email protected] ~]# useradd -g ts test1
[[email protected] ~]# useradd -g ts test2
[[email protected] ~]# passwd test1
[[email protected] ~]# passwd test2
[[email protected] ~]# mkdir /ts
[[email protected] ~]# touch /ts/ceshi.txt
[[email protected] ~]# yum install samba samba-client samba-swat
[[email protected] ~]# smbpasswd test1
[[email protected] ~]# smbpasswd test2
[[email protected] ~]# vi /etc/samba/smb.conf
# ----------------------- Network Related Options -------------------------
workgroup = MYGROUP#更改群组名称
#============================ Share Definitions ==============================
[public]
        comment = Public Stuff
        path = /share#共享路径
        public = yes
[ts]
        comment = TS
        path = /ts
        valid users = @ts
[[email protected] ~]# service smb restart
时间: 2024-10-20 23:49:06

Linux_4.day的相关文章

【华为云技术分享】Linux内核发展史 (1)

openEuler是基于Linux 内核的企业级Linux 服务器操作系统平台的开源社区发行版.openEuler支持鲲鹏架构,可运行在TaiShan服务器上.本技术连载将会从理论基础.源码分析和实操方法三个方面来比较全面地介绍内核编程与应用编程的基础知识,到2020年8月之前主要介绍内核编程部分.通过本连载的介绍,您将对openEuler内核编程和应用编程的理论和实践知识有一个基本的了解.本小节将从Linux内核发展史出发,带您走进openEuler的世界,一起学习操作系统的基础知识和open