今天无聊用virtualbox安装centos6.5 , 自己笔记本vm撑不住, 用公司的试试virtualbox先
安装快完成时
没有足够的内存配置kdump”(在英文界面下提示的是“insufficient memory to configure kdump”)
出现这个提示, 解决办法, 按这篇博客可以解决,
简单点来说, 就是终端system-config-kdump, 弹出的页面, 在左边第二个选项, 重新加载下, 点击应用就gameover了
http://blog.sina.com.cn/s/blog_792ca97901019uto.html
安装virtualbox增强工具
centos6.3 Building the main Guest Additions module解决
1.#yum update
关闭SELinux的方法:
修改/etc/selinux/config文件中的SELINUX="" 为 disabled ,然后重启。
如果不想重启系统,使用命令setenforce 0
注:
setenforce 1 设置SELinux 成为enforcing模式
setenforce 0 设置SELinux 成为permissive模式
在lilo或者grub的启动参数中增加:selinux=0,也可以关闭selinux
#---------------------------------------------------------------
查看selinux状态:
/usr/bin/setstatus -v
如下:
SELinux status: enabled
SELinuxfs mount: /selinux
Current mode: permissive
Mode from config file: enforcing
Policy version: 21
Policy from config file: targeted
getenforce/setenforce查看和设置SELinux的当前工作模式
重启后,设置就失效。
如果你希望重启生效,那么你就需要修改配置文件
/etc/selinux/config
SELINUX=disabled
或者你可以运行下面命令
这个时候,你重启机器,再查看selinux的状态
SELinux status: disabled