Operating System - HP-UX
1832591 Members
3156 Online
110043 Solutions
New Discussion

how do I check kernel parameters without root access

 
SOLVED
Go to solution
Charles Li_1
Advisor

how do I check kernel parameters without root access

Can I check kernel parameters without root access? ie not using SAM?

Thanks.
4 REPLIES 4
Dave Hutton
Honored Contributor
Solution

Re: how do I check kernel parameters without root access

You can:
$cat /stand/system

But that will only give you a fraction of what is there.
You can also do check
$/usr/sbin/kmtune
I was able to do it with just my normal generic account.

Dave
Jeff Schussele
Honored Contributor

Re: how do I check kernel parameters without root access

Hi Charles,

To run /usr/sbin/kmtune you don't have to be root. Just run

/usr/sbin/kmtune -q kernel_parm

for whatever parm you wish to check.

Rgds,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
Robert-Jan Goossens_1
Honored Contributor

Re: how do I check kernel parameters without root access

Hi,

# kmtune -l

# cat /stand/system

Hope this helps,
Robert-Jan
Charles Li_1
Advisor

Re: how do I check kernel parameters without root access

.