http://blog.csdn.net/xiao_cs/article/details/7728529 this kernel requires an x86-64 CPU, but only detected an i686 CPU. unable to boot - please ues a kernel appropriate for your CPU. 在虚拟机中安装linux系统,主机为win7 64位系统 启动后提示如上图. 解决方法:(源自网络) 关闭计算机(非重启)-- 进入B…
今天在vbox下安装linux 64bit出现"kernel requires an x86_64 cpu, but only detected "的错误,网上有很多文章介绍如何安装,但经过试验都不成功,搞了半天,最后发现自己是多么的杯具... 通过以下几步10分钟内搞定! 1.你的windows是64位的 2.vbox制作虚拟机是64位 3.你cpu支持vt-d(设置bios->config->cpu->enable,一般默认是disable) 上面3步我都…
问题描述: 1.机器:Linux主机,特别是主机为大内存,比如: 4G内存的使用pae内核的Ubuntu系统的dell电脑. 2.情况:使用VirtualBox安装Linux系统时,比如:通过Virtalbox安装 ChromeOS.安装YLMF OS等. 3.原因:需要安装的linux系统需要启动 pae支持. 4.错误:如下: This kernel requires the following features not present on the CPU: pae Unable to b…
异常处理汇总-开发工具 http://www.cnblogs.com/dunitian/p/4522988.html 修复VirtualBox "This kernel requires the following features not present on the CPU: pae Unable to boot – please use a kernel appropriate for your CPU" 解决方法…
异常处理汇总-开发工具 http://www.cnblogs.com/dunitian/p/4522988.html 修复VirtualBox "This kernel requires the following features not present on the CPU: pae Unable to boot – please use a kernel appropriate for your CPU" 解决方法 作者:毒逆天 出处:http://dunitian.cnblo…
other article on my list: 查看进程 https://i.cnblogs.com/PostDone.aspx?postid=9231604&actiontip=%E4%BF%9D%E5%AD%98%E4%BF%AE%E6%94%B9%E6%88%90%E5%8A%9F inux查看物理CPU个数.核数.逻辑CPU个数 总核数 = 物理CPU个数 X 每颗物理CPU的核数 # 总逻辑CPU数 = 物理CPU个数 X 每颗物理CPU的核数 X 超线程数 (超线程数与这个有什么…
最近下载了kernel的最新源码4.15版,但下载后的linux内核不仅包含了x86架构的函数还包含了如:arm.powerPC等等其他架构的函数,如果直接生成tags文件,将来查找时,多种架构的同名函数会混淆在一起,很不方便.好在,贴心的linux内核组给准备了tags.sh文件,可以自动生成相应的tags(ctags用),和cscope.out(cscope用). 命令如下: make tags ARCH=x86 //生成tags文件,根据系统决定是x86还是x86_64 make csco…