9Linux基础

Posted 丶默箫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9Linux基础相关的知识,希望对你有一定的参考价值。

一 Samba服务

 

1 准备环境
=====>part1:
iptables -F
#systemctl disable firewalld #开机默认关闭
#systemctl stop firewalld #立即关闭
#systemctl status firewalld

setenforce 0
#/etc/sysconfig/selinux
#SELINUX=disabled
=====>part2:
配置ip

2 安装软件包
yum install samba -y
3 修改配置文件
/etc/samba/smb.conf
[public]
comment = Public Stuff
path = /share
public = yes
writable = no
printable = no
write list = alex,lili

 


4 启动服务
systemctl restart smb

 

5 测试
映射网络驱动
\\\\服务端的ip\\用户名 --------》登录到用户的家目录下
\\\\服务端的ip\\public --------》登录到共享目录

 


补充
net use #查看
net use * /del #清除

6. 掌握windows客户端的访问方式

7.掌握Linux客户端的访问方式

二 nginx服务

1 准备环境
=====>part1:
iptables -F
#systemctl disable firewalld #开机默认关闭
#systemctl stop firewalld #立即关闭
#systemctl status firewalld

setenforce 0
#/etc/sysconfig/selinux
#SELINUX=disabled
=====>part2:
配置ip

2 安装软件包
二进制方式安装
yum install epel-release -y
yum install nginx -y
源码安装
yum gcc-* glibc-* make libtool ncurse-devel pcre -y

tar xvf nginx.....tar.gz
cd nginx/
#./configure --prefix=/usr/local/nginx --with-pcre=/usr/lib64/
./configure --prefix=/usr/local/nginx --without-http_rewrite_module
make
make install

3 启动服务
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
#/usr/local/nginx/sbin/nginx -s stop 关闭
#/usr/local/nginx/sbin/nginx -s reload 重新加载配置文件

 

以上是关于9Linux基础的主要内容,如果未能解决你的问题,请参考以下文章

2017-12-9Linux基础知识(16)文本处理工具

9Linux文件系统管理(下)

9Linux驱动的杂项设备

9linux的特殊符

2017-10-9linux文本处理

arm9linux图形界面哪些