by 听星星唱歌 - Oracle - 2011-12-21 08:44:01 阅读(646) 回复(0)
Can anyone teach me how to view the current share memory (e.g.: semaphore) usage on Solaris 9??
我是在进入License manager时出现的报错: Brand usage Error,check details for correct usage. 请问这是怎么回事呀??
How to check cable link staus and ndd usage? checking link status with ndd # ndd -set /dev/qfe instance 0 (instance set to "0" checks qfe0 status; "1" for qfe1,etc...) # ndd /dev/qfe link_status 1 ( 1 -up, 0 = down -------------------- ndd /dev/hme ? # list all the parameters for the hme drivers ndd dev/hme link_speed # output the link speed; 0 is 10M, ...
报错 Brand usage Error, check details for correct usage Error: Adding license failed Error Stack: Adding license failed Please enter one of the following: 'r' To retry the operation 'i' To ignore the error, and continue 'ca' To cancel Enter choice: i Unexpected exit code (105) from /etc/licenseMgr
hp-ux: swapinfo -tm solaris: prtconf | grep -i mem linux: free aix: lsdev -C | grep mem 本文来自Chinaunix博客,如果查看原文请点:http://blog.chinaunix.net/u/21444/showart_138718.html
hp-ux: ioscan -C processor | grep processor | wc -l solaris: psrinfo -v | grep "Status of processor" | wc -l linux: cat /proc/cpuinfo | grep processor | wc -l aix: lsdev -C | grep -i processor | wc -l 本文来自Chinaunix博客,如果查看原文请点:http://blog.chinaunix.net/u/21444/showart_138717.html
unix tips: Learn 10 good unix usage habitsBreak bad unix usage patterns Document options Document options requiring JavaScript are not displayed Print this page E-mail this page New forum features Try private messaging, read-tracking, and more --> Rate this page Help us improve this content Level: Intermediate Michael Stutz ( [email=stutz@dsl.org?subject=Learn%2010%20good%20UNI...
wget手册 wget命令使用方法 wget 使用指南 wget是一个从网络上自动下载文件的自由工具。它支持HTTP,HTTPS和FTP协议,可以使用HTTP代理. 所谓的自动下载是指,wget可以在用户退出系统的之后在后台执行。这意味这你可以登录系统,启动一个wget下载任务,然后退出系统,wget将在后台执行直到任务完成,相对于其它大部分浏览器在下载大量数据时需要用户一直的参与,这省去了极大的麻烦。 wget 可以跟踪HTML页面上的链接依次下载来创建...
Python glob模块 2008-12-04 15:26:52 Python glob模块的相关用法 主要方法就是glob,用它在脚本中处理一批文件名非常方便,glob函数根据参数中指定的路径模式[可以使用Shell环境下的通配符wildcard]返回一个 符合该匹配模式的文件路径列表。 [console] >>> import glob >>> dir(glob) ['__all__', '__builtins__', '__doc__', '__file__', '__name__', 'fnmatch', 'glob', 'glob1', 'has_magic', 'magic_check', 'os', 're'] >>> h...