- 论坛徽章:
- 0
|
如何在安装完的系统上面使用64位核心
If you want to enable the 64-bit kernel after system installation, you will need to
instruct the system to use the 64-bit kernel information stored in the /usr/lib/boot
directory. There are three kernels available in the /usr/lib/boot directory:
unix_up 32-bit kernel for uniprocessor systems
unix_mp 32-bit kernel for multiprocessor systems
unix_64 64-bit kernel for 64-bit processor systems
The following example provides the commands to run to enable the 64-bit kernel
after system installation:
# ln -sf /usr/lib/boot/unix_64 /unix
# ln -sf /usr/lib/boot/unix64 /usr/lib/boot/unix
# bosboot -ad /dev/ipldevice
# shutdown -r
After the system has rebooted, it will be running the 64-bit kernel. To reactivate
the 32-bit kernel, follow the same procedure, substituting unix_up or unix_mp for
unix_64, depending on your system type.
-----------------------------------------------------------------------
以上的命令我没有用过,下面的命令我成功应用过
#ln -sf /usr/lib/boot/unix_64 /unix
#ln -sf /usr/lib/boot/unix64 /usr/lib/boot/unix
#bosboot -ak /usr/lib/boot/unix_64
#shutdown -Fr
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/14736/showart_79029.html |
|