在阅读有关加速Linux的内容时,特别是在引导过程中,我发现多个核心PC的并发性是建议的。这个设置似乎很容易在遗留的GRUB中实现,但是我无法发现如何在GRUB2中实现这一点。我的系统:
grub customizer ver 3.0.4
Ubuntu 12.10 session fall back   3.5.0-24-generic
HP desktop with Intel iCore 7 3.2Ghz
12 Gb ram
1 Tb hdd发布于 2013-03-18 15:33:15
您可能发现有人在GRUB2中添加concurrency=shell。截至12.04,这被认为是过时的。
请参阅/etc/init.d/rc并将concurrency更改为makefile。该文件中的备注和选项:
# Specify method used to enable concurrent init.d scripts.
# Valid options are `none` and `makefile`. 
# Obsolete options used earlier are `shell` and `startpar`.
# The obsolete options are aliases for 'makefile' since 2010-05-14.
CONCURRENCY=makefile如果没有,将其设置为makefile。
顺便说一句:先安装引导图,创建一个引导图,编辑rc,如果您想要查看它是否改善了启动时间,就创建一个新的引导图。
https://askubuntu.com/questions/269539
复制相似问题