As of the kernel crash dump? You can analyze them using "mdb".
In /var/crash/<hostname> you have multiple files all with a number as extention, just use the number as argument to mdb:
example:
# cd /var/crash
# ls
unix.0 vmcore.0
# mdb 0
A good command to "mdb" is then "$c" to see the stack trace.
7/M
Something like this?
panicsys(106d70c,71b1ff78,1434628,1,0,0) + 378
vpanic(106d70c,71b1ff78,0,0,0,0) + cc
panic(106d70c,106d670,2,2,0,0) + 1c
ptl1_panic_handler(71b1e590,0,72e58000,4024a148,72e58000,2000) + 68
If you do, try and run:
strings vmcore.<number> |grep MMU
if you see this message:
bad kernel MMU miss at TL 2
.. you are running into the same bug as i am :-) I haven't seen a fix for it, but i suspect that it helps if you add the latest recommended cluster or at least the kernel patches..
7/M.
my out put is just like this
mdb 1
Loading modules: [ unix krtld genunix ip nfs ipc ptm logindmux lofs ]
> $c
vpanic(3, 101468b0, 1, b1fbe, 0, 0)
send_one_mondo+0xb8(1041b2e0, 1, 1041ad20, 1, 18fa7c6d11cd7, b1fbe)
send_mondo_set+0x20(2, 1, 2, 1, 14, 60)
xt_some+0xe8(2, 8, 1041d4bc, c, 0, 0)
xt_sync+0x44(ffffffffffffffff, 0, 2000, 31000ca6568, 0, 3100202b2c0)
hat_pagesync+0x1ec(1, 104eb0a8, 0, 1, 0, ffffffffffffffff)
pvn_getdirty+0xcc(3100202b2c0, 0, 0, 0, 5de8, 1041bd60)
ufs_putpages+0x204(2000, 0, 3000c82f008, 0, 0, 0)
ufs_putpage+0x15c(3000c82ef58, 0, 2000, 0, 30000aad088, 30000029530)
segmap_release+0x248(0, 10441e68, 300005f6b80, 0, 3000c82ef58, 2a7541d0000)
ufs_dirremove+0x538(30005b768f9, 3000c82f088, 3000d70b6b8, 3000c82f008, 4000,
f000)
ufs_remove+0x178(30000aad088, 30005b768f9, 30000aad088, 3000c82ef58, 3000c82eec8, 30004356c40)
vn_remove+0x1e4(1, 30000a9d868, 0, a, 0, 0)
unlink+0xc(bb606, ff35a000, ffbed8e4, 0, 24, ff29bd70)
syscall_trap32+0xa8(bb606, ff35a000, ffbed8e4, 0, 24, ff29bd70)
Hi There
do you know how to retrieve multiple file names, I have 20 input boxes on a form which uploads multiple files, works fine, but now i want ti insert the filenames into the databasse, i have a table for images 1-20(fields image1, image2, through to image20) so i need to do an insert statement eg, insert into tbl_images (image1 ect) VALUES ( '" & image1 & "', ect)
but how do i get the values of the filenames, can anyone help me please