- 論壇徽章:
- 0
|
如何在安裝完的系統(tǒng)上面使用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.
-----------------------------------------------------------------------
以上的命令我沒有用過,下面的命令我成功應(yīng)用過
#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博客,如果查看原文請點(diǎn):http://blog.chinaunix.net/u/14736/showart_79029.html |
|