AIX Switching Kernel Bit Modes: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
(Created page with "== Switching to the 32bit Kernel == # <tt>'''# ln -sf /usr/lib/boot/unix_mp /unix'''</tt> # <tt>'''# ln -sf /usr/lib/boot/unix_mp /usr/lib/boot/unix'''</tt> # You will need to...")
 
No edit summary
Line 6: Line 6:
# Change the base operating system boot devices repeat for each disk listed in previous step.
# Change the base operating system boot devices repeat for each disk listed in previous step.
## # <tt>'''# bosboot -ad <hdisk#>'''</tt>
## # <tt>'''# bosboot -ad <hdisk#>'''</tt>
# Restart the server to apply the changes.
# Verify that the server is running the 32 bit kernel.
## <tt>'''# bootinfo -K'''</tt>
== Switching to the 64 bit Kernel ==
# <tt>'''# ln -sf /usr/lib/boot/unix_64 /unix'''</tt>
# <tt>'''# ln -sf /usr/lib/boot/unix_64 /usr/lib/boot/unix'''</tt>
# You will need to note which hdisks that hd5 appears on.
## <tt>'''# lslv -m hd5'''</tt>
# Change the base operating system boot devices repeat for each disk listed in previous step.
## # <tt>'''# bosboot -ad <hdisk#>'''</tt>
# Restart the server to apply the changes.
# Verify that the server is running the 64 bit kernel.
## <tt>'''# bootinfo -K'''</tt>
== Resources ==
# [http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp IBM pSeries and AIX Information Center]
# [http://www.ibm.com/developerworks/aix/library/au-dutta_cmds.html AIX Commands you should not leave home without]
[[Category:AIX]]

Revision as of 13:08, 26 January 2012

Switching to the 32bit Kernel

  1. # ln -sf /usr/lib/boot/unix_mp /unix
  2. # ln -sf /usr/lib/boot/unix_mp /usr/lib/boot/unix
  3. You will need to note which hdisks that hd5 appears on.
    1. # lslv -m hd5
  4. Change the base operating system boot devices repeat for each disk listed in previous step.
    1. # # bosboot -ad <hdisk#>
  5. Restart the server to apply the changes.
  6. Verify that the server is running the 32 bit kernel.
    1. # bootinfo -K

Switching to the 64 bit Kernel

  1. # ln -sf /usr/lib/boot/unix_64 /unix
  2. # ln -sf /usr/lib/boot/unix_64 /usr/lib/boot/unix
  3. You will need to note which hdisks that hd5 appears on.
    1. # lslv -m hd5
  4. Change the base operating system boot devices repeat for each disk listed in previous step.
    1. # # bosboot -ad <hdisk#>
  5. Restart the server to apply the changes.
  6. Verify that the server is running the 64 bit kernel.
    1. # bootinfo -K

Resources

  1. IBM pSeries and AIX Information Center
  2. AIX Commands you should not leave home without