欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CentOS7.X 新装后个性化处理

程序员文章站 2022-06-03 17:57:46
...


1、修改HostName

#	设置自定义HostName
hostnamectl set-hostname MyHostName
#	查看一下是否生效
hostnamectl status

2、Shell脚本中文乱码问题解决

vim /etc/locale.conf
##	将默认语言改为中文UTF-8
LANG=zh_CN.UTF-8

3、部分常用开发工具安装

yum -y install nano vim wget curl net-tools lsof unzip unzip

4、常用开发工具安装

systemctl stop firewalld

systemctl disable firewalld

PS:

  • 根据网上资料亲测整理,最终解释权归WMYeah所有!