002---Linux系统优化
Posted 爬呀爬Xjm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了002---Linux系统优化相关的知识,希望对你有一定的参考价值。
Linux版本相关命令
- 查看系统版本:
cat /etc/redhat-release
- 查看系统内核版本以及位数:
uname -r
[[email protected] ~]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
[[email protected] ~]# uname -r
3.10.0-957.el7.x86_64
PS1
变量名,系统变量一般都是大写。
[[email protected] ~]# echo $PS1
[[email protected]h W]$
[[email protected] ~]# # u-->当前用户名:whoami
[[email protected] ~]# # h-->当前主机名:hostname
[[email protected] ~]# # W-->当前目录:pwd
[[email protected] ~]# whoami
root
[[email protected] ~]# hostname
hostname1
[[email protected] ~]# pwd
/root
修改PS1:加时间
[[email protected] ~]# PS1='[[email protected]h W ]$'
[[email protected] ~ 20:34:51]#
linux系统优化
添加用户
关闭SELinux
关闭防火墙
以上是关于002---Linux系统优化的主要内容,如果未能解决你的问题,请参考以下文章
adworld MISC002 | Linux的挂载文件系统的运用
优化 C# 代码片段、ObservableCollection 和 AddRange