- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vmunix: WARNING: ioctl: DLKM is not initialize...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 10:18 PM
02-22-2004 10:18 PM
In the syslog of an HP-UX 11.11 system, I am seeing this message, "vmunix: WARNING: ioctl: DLKM is not initialized".
Does anyone knows what is happening? and Who I could resolve it?
Thanks a lot of!,
Carmen.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 10:26 PM
02-22-2004 10:26 PM
Solutionyou need to rebuild the kernel
Just do
#cd /stand/build
#/usr/lbin/sysadm/system_prep -s /stand/build/system
#/usr/sbin/mk_kernel -s /stand/build/system
#mv /stand/system /stand/system.prev
#mv /stand/build/system /stand/system
#kmupdate /stand/build/vmunix_test
#shutdown -r
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 10:41 PM
02-22-2004 10:41 PM
Re: vmunix: WARNING: ioctl: DLKM is not initialized
I agree with TG.
Dynamic Loadable Kernel Modules (DLKM) is about kernel.
It seems that last kernel rebuilding was bad.
Rebuild the kernel (about TG's suggestion) and see what's going on.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2004 11:14 PM
02-22-2004 11:14 PM
Re: vmunix: WARNING: ioctl: DLKM is not initialized
it's because of currently running kernel is bad
You need to create new kernel and boot with that kernel
Thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2004 09:04 AM
10-27-2004 09:04 AM
Re: vmunix: WARNING: ioctl: DLKM is not initialized
I see this message too. All the discussion I see is related to resolving the error message. I'm wondering if there is a real problem (that I can use to tell users that there is a need to reboot), or just an anoying error message?
Asked another way:
I see two small problems, There is an error message and there was a problem with the last kernel rebuild. But is this causing any REAL problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2004 09:33 AM
10-27-2004 09:33 AM
Re: vmunix: WARNING: ioctl: DLKM is not initialized
Kevin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 07:08 AM
07-20-2005 07:08 AM
Re: vmunix: WARNING: ioctl: DLKM is not initialized
sam to build kernels.
Tried to change a kernel parm and left the box unbootable.
Had to boot with vmunix.prev.
Now I can't run sysdef without getting :
ioctl: Function is not available
I noticed during the kernel build that
the vmunix_test grows to the correct vmunix.prev size then goes down to a smaller
size. What's up with that??
27983672 /stand/vmunix
18556184 /stand/build/vmunix_test
I did a test and it boots with the smaller
kernel. ??? The error message went away
also.
The unbootable bad kernel was the same
size as this vmunix_test. ??
I don't understand why any new builds are
creating smaller kernels?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 07:16 AM
07-20-2005 07:16 AM
Re: vmunix: WARNING: ioctl: DLKM is not initialized
Check that.
echo "mod_initialized/D" | adb64 -k /stand/vmunix /dev/kmem. You should not get 0, if 0, that confirms something went wrong when kernel was re-compiled.
Repeat the whole kernel conpile procedure.
cd /stand
cp ./vmunix vmunix.prev
cp ./system ./system.prev
cp -rp dlkm dlkm.prev
cd /stand/build
system_prep -v ./system
kmtune -s kernel_tanable=value -S ./system
or vi ./system and modify kernel tunables you want to change.
mk_kernel -v -s ./system
mv ./system ../.
kmupdate
shutdown -ry 0
echo mod_initialized stuff as mentioned again after reboot.
Anil