LPAR 32-bit en/of 64-bit

  Algemeen

AIX 5L Versie 5.1 kan je een 64bit kernel actief hebben maar je kan er ook voor kiezen om met een 32 bit kernel te werken. Met AIX 5.2 word default een 32 bits kernel geïnstalleerd. AIX5.3 en hoger zal default naar je hardware kijken als je een 64-bit processors in je systeem hebt dan word de 64-bit kernel automatische geïnstalleerd.

Je hoeft natuurlijk niet perse een 64 bit OS op een 64 bit processor te draaien. sommigen producten ondersteunen geen 64 bit OS.

Is mijn hardware 64Bit

Om te controleren of je in 32 bit of 64 bit hardware hebt kan je gebruik maken van bootinfo commando.

bootinfo -y 

als het commando als output 32 terug geeft kan je geen 64bit kernel gebruiken op deze hardware.

Heb in nu een 64bit of een 32bit kernel

Om te controleren of AIX nu de 32 of 64 bit kernel

bootinfo -K

Note: Enabling or disabling the 64-bit kernel does not affect the 64-bit application environment. The 64-bit application environment is supported under the 32-bit and 64-bit kernel.

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

Switching from 32Bit to 64Bit

   ln -sf /usr/lib/boot/unix_64 /unix
   ln -sf /usr/lib/boot/unix_64 /usr/lib/boot/unix
   bosboot -ad /dev/ipldevic
   # shutdown -Fr

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.

Switching from 64Bit to 32Bit

   ln -sf /usr/lib/boot/unix_mp /unix
   ln -sf /usr/lib/boot/unix_mp /usr/lib/boot/unix
   bosboot -ad /dev/ipldevice
   shutdown -Fr