Sponsored Content
Operating Systems AIX How to convert a partition usin 64 bits kernel to 32 bits kernel? Post 97409 by bakunin on Monday 30th of January 2006 04:47:50 AM
Old 01-30-2006
There is a link in the root directory called /unix. It points to the kernel you are using (in case of a 64-bit-kernel this is /usr/lib/boot/unix_64). Remove the link and create a new one to the kernel of your liking, then reboot.

You may have to install the 32-bit-kernel images first, check with "lslpp -l bos.mp*" and "lslpp -l bos.up*" (mp=multiprocessor, up=uniprocessor kernels) which kernels are installed.

bakunin
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Changing 24 bits to 8 bits display

Hello all, I was wondering if anyone can tell me how to change 24 bits depth display to 8 bits depth display for Sun Ultra1, running Solaris 8? THANKS in advance. I think that the command is ffbconfig, but it has nothing about depth. (4 Replies)
Discussion started by: larry
4 Replies

2. SuSE

max number of slabs per kernel module (kernel 2.6.17, suse)

Hi All, Is there a max number of slabs that can be used per kernel module? I'm having a tough time finding out that kind of information, but the array 'node_zonelists' (mmzone.h) has a size of 5. I just want to avoid buffer overruns and other bad stuff. Cheers, Brendan (4 Replies)
Discussion started by: Brendan Kennedy
4 Replies

3. Solaris

Which file is read by kernel to set its default system kernel parameters values?

Hi gurus Could anybody tell me which file is read by kernel to set its default system kernal parameters values in solaris. Here I am not taking about /etc/system file which is used to load kernal modules or to change any default system kernal parameter value Is it /dev/kmem file or something... (1 Reply)
Discussion started by: girish.batra
1 Replies

4. UNIX for Dummies Questions & Answers

32 bits procesaor with 64 bits Solaris

people i have a problem i have a 32 bits sparc processor, and solaris 64 bits processor, i install a oracle data base 64 bits, but my oracle will not run because my processor is from 32 bits this is ok??, i know if i have x86 i cannot install a 64 bits operatin system in a 32 bits processor. ... (0 Replies)
Discussion started by: enkei17
0 Replies

5. UNIX for Dummies Questions & Answers

How to select correct partition and kernel argument for grub?

I use command-line mode of GRUB to load kernel, but I can not know how to chose the partition and kernel argument, as followed : please tell me how to do deal with , thanks! (0 Replies)
Discussion started by: cqlouis
0 Replies

6. What is on Your Mind?

Place Bits & Win Bits!!! - 17th Annual Satellite Awards

Ten movies have been nominated as best motion picture by the International Press Academy, presentation of the 2012 Satellite Awards will be held on 16th December at Los Angeles, CA. Place your bits here on one of the below nominated movie of your choice:- Argo ... (0 Replies)
Discussion started by: Yoda
0 Replies

7. Linux

Unload kernel module at boot time (Debian Wheezy 7.2, 3.2.0-4-686-pae kernel)

Hi everyone, I am trying to prevent the ehci_hcd kernel module to load at boot time. Here's what I've tried so far: 1) Add the following line to /etc/modprobe.d/blacklist.conf (as suggested here): 2) Blacklisted the module by adding the following string to 3) Tried to blacklist the module... (0 Replies)
Discussion started by: gacanepa
0 Replies
VM_PAGE_AFLAG(9)					   BSD Kernel Developer's Manual					  VM_PAGE_AFLAG(9)

NAME
vm_page_aflag_clear, vm_page_aflag_set, vm_page_reference -- change page atomic flags SYNOPSIS
#include <sys/param.h> #include <vm/vm.h> #include <vm/vm_page.h> void vm_page_aflag_clear(vm_page_t m, uint8_t bits); void vm_page_aflag_set(vm_page_t m, uint8_t bits); void vm_page_reference(vm_page_t m); DESCRIPTION
The vm_page_aflag_clear() atomically clears the specified bits on the page's aflags. The vm_page_aflag_set() atomically sets the specified bits on the page's aflags. The vm_page_reference(m) call is the same as vm_page_aflag_set(m, PGA_REFERENCED); and is the recommended way to mark the page as referenced from third-party kernel modules. These functions neither block nor require any locks to be held around the calls for correctness. The functions arguments are: m The page whose aflags are updated. bits The bits that are set or cleared on the page's flags. The following aflags can be set or cleared: PGA_REFERENCED The bit may be set to indicate that the page has been recently accessed. For instance, pmap(9) sets this bit to reflect the accessed attribute of the page mapping typically updated by processor's memory management unit on the page access. PGA_WRITEABLE A writeable mapping for the page may exist. Both PGA_REFERENCED and PGA_WRITEABLE bits are only valid for the managed pages. AUTHORS
This manual page was written by Chad David <davidc@acns.ab.ca>. BSD
August 31, 2011 BSD
All times are GMT -4. The time now is 11:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy