当前位置:首页 > linux系统知识 > 正文内容

linux系统操作

1、更改主机名

hostnamectl set-hostname+新主机名    永久修改主机名

hostname+新主机名    临时修改主机名

 

2、系统控制

init 0   关闭服务器

reboot now   重启服务器

 

3、更新时间

ntpdate -b ntp.aliyun.com    同步阿里云时间

 

4、查看历史命令

histroy

 

5、终止当前操作命令

ctrl+c

清屏:ctrl l

查看历史命令:history

查看ipip a

 image.png

显示或配置网络设备(网络接口卡):ifconfig 

image.png

补全命令、目录、文件名称:tab

 

6、服务相关

(1)查看服务状

systemctl status+服务名称

2)开启服务

systemctl start+服务名称  

临时开启,重启系统后会失效

systemctl enable+服务名称  

永久开启,重启系统后生效

systemctl disable --now+服务名称

永久开启,现在生效

3)关闭服务

systemctl stop+服务名称   

临时关闭,重启系统后会失效

systemctl disable+服务名称   

永久关闭,重启系统后生效

systemctl disable --now+服务名称

永久关闭,现在生效

4)selinux

getenforce  查看selinux工作状态

setenforce 0   临时关闭selinux

setenforce 1   临时开启selinux

永久关闭:

vim /etc/selinux/config

SELINUX=enforcing改为SELINUX=disabled

5)示例

systemctl start firewalld

systemctl enable firewalld

systemctl enable --now firewalld

systemctl stop firewalld

systemctl disable firewalld  

systemctl disable --now firewalld

 

7、系统安全加固

(1) 修改ssh默认的连接端口 22---1000

vim /etc/ssh/sshd_config

17行:将Port 22改为Port 1000

重启sshdsystemctl restart sshd

(2)禁止root登录

vim /etc/ssh/sshd_config

找到38行:PermitRootLogin yes

在下方输入PermitRootLogin no

(3)询问指令

vim /etc/ssh/ssh_config

35行:#   StrictHostKeyChecking ask

另起一行输入StrictHostKeyChecking no     

去掉询问指令

一般在ansible连接控制其他服务器时进行设置

(4)禁止密码登录(慎用)

vim /etc/ssh/sshd_config
第65行:
设置
PasswordAuthentication  no
允许密码登录:
PasswordAuthentication yes

 

8、绝对路径与相对路径

绝对路径:从/开始   

相对路径:从当前路径开始


扫描二维码推送至手机访问。

版权声明:本文由个人博客发布,如需转载请注明出处。

本文链接:https://opszzfwordpress.club/post/12.html

分享给朋友:

“linux系统操作” 的相关文章

云服务器建立swap分区

云服务器建立swap分区

我们购买的大多数云服务器都是没有swap分区的,为了防止内存溢出,影响系统运行,可以创建swap分区...

du和df查看的数值不一致

du和df查看的数值不一致

我们通过df和du分别查看分区,发现二者的数值有时并不完全一样首先简单介绍一下二者的概念:df:di...

防止DNS配置文件修改

防止DNS配置文件修改

问题描述:DNS配置文件:/etc/resolv.conf 增加配置了:nameserver 114...

openssh升级

openssh升级

根据漏扫报告显示,原版本openssh存在漏洞,需将openssh升级到最新版解决,目前openss...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。