首页 > 代码库 > CentOS6.0 for Mac Parallels Desktop 安装过程

CentOS6.0 for Mac Parallels Desktop 安装过程

一、系统安装

二、系统设置
 
1.关闭SELinux(增强安全性的一项功能)
SELinux是增强安全性的一项功能,默认是启动的。为了配置和管理上的方便,以免安装或配置其他的服务时,发生不必要的错误与困扰,一般系统安装完成后,马上就关闭SELinux。关闭的方法很简单,编辑SELinux的配置文件,将其设置为disabled。完成后必须要重新启动,配置才可以生效。
[root@localhost ~]# vi /etc/sysconfig/selinux          // 用vi编辑SELinux配置文件
# This file controls the state of SELinux on the system.# SELINUX= can take one of these three values:#     enforcing - SELinux security policy is enforced.#     permissive - SELinux prints warnings instead of enforcing.#     disabled - No SELinux policy is loaded.# SELINUX=enforcing // 注释此行,增加下面一行SELINUX=disabled# SELINUXTYPE= can take one of these two values:#     targeted - Targeted processes are protected,#     minimum - Modification of targeted policy. Only selected processes are protected.#     mls - Multi Level Security protection.SELINUXTYPE=targeted
输入【ESC】:wq 【Enter】保存文件并退出

 

CentOS6.0 for Mac Parallels Desktop 安装过程