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

推荐订阅源

IT之家
IT之家
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
爱范儿
爱范儿
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
宝玉的分享
宝玉的分享
GbyAI
GbyAI
H
Help Net Security
A
About on SuperTechFans
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
D
Docker
博客园 - Franky
有赞技术团队
有赞技术团队
G
Google Developers Blog

博客园 - 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