博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
重新编译内核支持 PAE
阅读量:6112 次
发布时间:2019-06-21

本文共 1054 字,大约阅读时间需要 3 分钟。

hot3.png

     摘自  bt5 到  wiki

重新编译内核 花了 2个多小时  ~~~

http://www.backtrack-linux.org/wiki/index.php/PAE_kernel

NOTE: Do not change any other settings in your kernel unless you know exactly what you are doing!

  • In this tutorial we will proceed to enable on Backtrack5 R2.
  • We first prepare our kernel and enter the kernel menuconfig.
root@bt:~# prepare-kernel-sources root@bt:/usr/src/linux# zcat /proc/config.gz > .config root@bt:/usr/src/linux# make menuconfig
  • After we have launched the ncurses menuconfig we proceed in enabling PAE which can be found at the following: Processor type and features -> High Memory Support(4) --> 64GB

  • Once we have enabled PAE from the menuconfig we proceed into building our kernel.
root@bt:/usr/src/linux# make scripts root@bt:/usr/src/linux# make prepare root@bt:/usr/src/linux# make root@bt:/usr/src/linux# update-initramfs -u root@bt:~# update-grub2
  • We than reboot and check to see if PAE is enabled. (Adjust the path to your running kernel)
root@bt:~# cat /boot/config-3.2.6 | grep HIGHMEM

转载于:https://my.oschina.net/sincoder/blog/101649

你可能感兴趣的文章
云时代架构阅读笔记之四
查看>>
WEB请求处理一:浏览器请求发起处理
查看>>
Lua学习笔记(8): 元表
查看>>
PHP经典算法题
查看>>
LeetCode 404 Sum of Left Leaves
查看>>
醋泡大蒜有什么功效
查看>>
hdu 5115(2014北京—dp)
查看>>
数据结构中常见的树(BST二叉搜索树、AVL平衡二叉树、RBT红黑树、B-树、B+树、B*树)...
查看>>
PHP读取日志里数据方法理解
查看>>
第五十七篇、AVAssetReader和AVAssetWrite 对视频进行编码
查看>>
Vivado增量式编译
查看>>
一个很好的幻灯片效果的jquery插件--kinMaxShow
查看>>
微信支付签名配置正确,但返回-1,调不出支付界面(有的手机能调起,有的不能)...
查看>>
第二周例行报告
查看>>
Spring学习(16)--- 基于Java类的配置Bean 之 基于泛型的自动装配(spring4新增)...
查看>>
实验八 sqlite数据库操作
查看>>
四种简单的排序算法(转)
查看>>
Quartz2D之着色器使用初步
查看>>
多线程条件
查看>>
Git [remote rejected] xxxx->xxxx <no such ref>修复了推送分支的错误
查看>>