惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

博客园 - Eric Yih

Should be run run adprep when you want to install a higher version of windows controller in an existing forest lsattr command in AIX Consolidate Unix/Linux commands 资料收集 How to block SMB/LDAP/KDC/KPASSWD/NTP ports via firewall svchost.exe占用CPU 100%的解决方法 CVS使用手册 How to: Add a user from the OS X command line, works with Leopard In Mac OS X, how do I create and delete users? Sendmail How to config the AFP Share Server on Mac OS X 10.4/10.5 Server - Eric Yih Dpkg 常用指令操作快速参考 How to create local user use command dscl in Mac 通过 SSH 密钥验证实现在不同系统之间的脚本自动化 How-to: Understanding Mac OS X Open Directory Hands on: Mac OS X Server Mail Service Boot Camp, Part 1: The Basics Hands on: Setting up Mac OS X Open Directory Hands on: Using Apple's Workgroup Manager Configuring Network Information Service server and client on AIX
How to switch 32<->64bit kernel on AIX
Eric Yih · 2010-10-10 · via 博客园 - Eric Yih

Posted on 2010-10-10 22:19  Eric Yih  阅读(324)  评论()    收藏  举报

1. switch to 64bit kernel
#This command shows if the 64bit kernel is active.
     bash-3.00# bootinfo -k        
#Link the 64bit kernel file to default boot kernel file.
     bash-3.00# ln -sf /usr/lib/boot/unix_64 /unix
    
bash-3.00# ln -sf /usr/lib/boot/unix_64 /usr/lib/boot/unix
    
bash-3.00# bosboot -a
#Reboot the AIX machine.
     bash-3.00#
reboot

2. switch to 32bit kernel

#Link the 32bit kernel file to default boot kernel file.
     bash-3.00# ln -sf /usr/lib/boot/unix_mp /unix
    
bash-3.00# ln -sf /usr/lib/boot/unix_mp /usr/lib/boot/unix
    
bash-3.00# bosboot -a
#Reboot the AIX machine.
     bash-3.00#
reboot