[步骤] CentOS Linux & RHEL 系统的优化 (通过 tuned 实现)

步骤一:系统环境要求

服务器系统要配置好可用的软件源

步骤二:安装 tuned 系统优化软件

# yum -y install tuned

步骤三:显示 tuned 推荐的优化模式

# tuned-adm recommend
virtual-guest

步骤四:切换至 tuned 推荐的优化模式

# tuned-adm profile virtual-guest

步骤五:显示当前的优化模式

# tuned-adm active
Current active profile: virtual-guest

补充:取消 tuned 系统优化的方法

# tuned-adm off

[步骤] Linux 系统语言的切换(CentOS Linux & RHEL 版)

步骤一:显示当前的系统语言

# localectl
   System Locale: LANG=en_US.UTF-8
       VC Keymap: us
      X11 Layout: us

步骤二:列出所有可以安装的语言包

# yum list langpacks-*:

步骤三:切换系统语言

3.1 切换系统语言的格式

# localectl set-locale LANG=<language name>

3.2 切换系统语言的案例

# localectl set-locale LANG=zh_CN.utf8

(补充:这里以将系统语言切换为中文为例)

步骤四:显示系统语言是否切换成功

# localectl 
   System Locale: LANG=zh_CN.utf8
       VC Keymap: us
      X11 Layout: us