Linux笔记

2019-06-26  本文已影响0人  慵懒的阳光丶

1.Linux系统目录结构及说明

图片.png

2.常用Linux指令

3.防火墙相关(centerOS6)

3.1 首先需要将用户切换到root用户
3.2 查看防火墙的状态
图片.png
3.3 打开/关闭/重启防火墙

开启防火墙(重启后永久生效):chkconfig iptables on

关闭防火墙(重启后永久生效):chkconfig iptables off

开启防火墙(即时生效,重启后失效):service iptables start

关闭防火墙(即时生效,重启后失效):service iptables stop

重启防火墙:service iptables restart

3.4 打开防火墙后查看状态
图片.png
3.5 增加开放的端口

打开/etc/sysconfig/iptables 进行vim编辑


图片.png

复制一行,并修改要开放的端口号,保存退出即可


图片.png

4.防火墙相关(CenterOS7)

4.1查看防火墙状态
firewall-cmd --state
image.png
4.2关闭防火墙
systemctl stop firewalld.service 
image.png
4.3开启防火墙
systemctl start firewalld.service 
image.png
4.4设置防火墙开机自启
systemctl enable firewalld.service
4.5检查防火墙开机自启是否成功
systemctl is-enabled firewalld.service;echo $?
image.png
4.6重启防火墙
systemctl restart firewalld.service
4.7查看开启的所有端口
netstat -ntlp 或:firewall-cmd --list-ports
4.8开启指定端口
firewall-cmd --zone=public --add-port=80/tcp --permanent

命令含义:
--zone #作用域
--add-port=80/tcp #添加端口,格式为:端口/通讯协议
--permanent #永久生效,没有此参数重启后失效

开启端口后需要重启防火墙使其生效

systemctl restart firewalld.service
image.png

5.vim相关

1、复制
|-单行复制
在命令模式下,将光标移动到将要复制的行处,按“yy”进行复制;
|-多行复制 在命令模式下,将光标移动到将要复制的首行处,按“nyy”复制n行;其中n为1、2、3……

2、粘贴
在命令模式下,将光标移动到将要粘贴的行处,按“p”进行粘贴
3、删除单行

在命令模式下,光标移动到要删除的行,按dd

6.CenterOS7配置IP地址

https://blog.csdn.net/longhongkai/article/details/88544625

https://blog.csdn.net/weiyongle1996/article/details/75050738

7.linux安装git

https://www.cnblogs.com/wulixia/p/11016684.html

8.常见问题

8.1 chmod: changing permissions of 'xxx': Operation not permitted

解决:https://www.cnblogs.com/cpl9412290130/p/11592803.html

参考:
https://blog.csdn.net/zll_0405/article/details/81208606
https://www.cnblogs.com/yhongji/p/9336247.html

上一篇下一篇

猜你喜欢

热点阅读