May 17, 2007 #1 dandan123 Technical User Joined Sep 9, 2005 Messages 505 Location US How do you check if the parameters set in /etc/system are in effect. For example I have this set in /etc/system - set noexec_user_stack = 1 Now this will only take effect after a reboot. How do I check if this is now in effect ?
How do you check if the parameters set in /etc/system are in effect. For example I have this set in /etc/system - set noexec_user_stack = 1 Now this will only take effect after a reboot. How do I check if this is now in effect ?
May 17, 2007 1 #2 sbrews Technical User Joined Jun 11, 2003 Messages 413 Location US There may be a better/different way... but then my Solaris knowledge is a bit limited. Try this: adb -k /dev/ksyms /dev/mem This will start a debugger (with no prompt). Now type the parameter you want to check - IE: maxusers/D The /D will give its decimal value. When you are all done, type a Control-D to exit back to a normal prompt. Upvote 0 Downvote
There may be a better/different way... but then my Solaris knowledge is a bit limited. Try this: adb -k /dev/ksyms /dev/mem This will start a debugger (with no prompt). Now type the parameter you want to check - IE: maxusers/D The /D will give its decimal value. When you are all done, type a Control-D to exit back to a normal prompt.
May 18, 2007 Thread starter #3 dandan123 Technical User Joined Sep 9, 2005 Messages 505 Location US Thanks, that worked. Upvote 0 Downvote