一)设置centos系统开机默认进入系统级别

centos 6.x

编辑文件 /etc/inittab,修改“id:5:initdefault:”这一行的"id:"后的数字。

0 系统停机
1 单用户模式
2 多用户模式
3 网络多用户模式
4 保留
5 X11模式(即进入图形界面模式)
6 重起



centos 7.x

rm -f /etc/systemd/system/default.target

设置命令行级别方法: 
ln -sf /lib/systemd/system/runlevel3.target /etc/systemd/system/default.target 
或 
ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target 
或 
systemctl set-default multi-user.target


二)安装中文输入法

  1. Applications -- System Tools -- Setting -- Regin & Language

    点击左下角的 “+”号。
    找到Chinese(China) 或者其它Chinese(..)

    Centos系统常用操作

    看到一个Chinese(Intelligent Pinyin)

    Centos系统常用操作

  2. Applications -- System Tools --Device -- Keyboard-- Typing -- Switch to next input resource进行输入法快捷键按钮的设置


三)截图软件(shutter)安装

    # yun install epel-release

    # rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
    # yum install shutter


四)关闭防火墙

启动: systemctl start firewalld

关闭: systemctl stop firewalld

查看状态: systemctl status firewalld 

开机禁用  : systemctl disable firewalld

开机启用  : systemctl enable firewalld


五)释放内存

# echo 3 > /proc/sys/vm/drop_caches

六)


转载于:https://blog.51cto.com/taoismli/2162750

相关文章:

  • 2021-11-13
  • 2021-12-09
  • 2021-04-16
  • 2021-11-25
  • 2022-12-23
  • 2021-08-06
  • 2021-06-09
  • 2021-04-25
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-24
  • 2021-10-14
  • 2021-05-01
  • 2021-12-30
  • 2021-04-15
相关资源
相似解决方案