ChinaUnix.net
相关文章推荐:

hpux重启命令

quick reference guide system adminstration tools Solaris 8 HP-UX 10.X11.x /opt/SUNWseam/3_0 /bin/admapp /usr/sbin/sam /usr/bin/admintool disk space and info Solaris 8 HP-UX 10.X11.x /usr/sbin/df /usr/sbin/df /usr/sbin/df -k /usr/sbin/bdf /usr/sbin/devinfo /usr/sbin/diskinfo /dev/rdsk/device_file /usr/bin/du /usr/bin/du process status Solaris 8 HP-UX 10.X11.x /usr/bin/ps -ef /usr/bin/ps ...

by 月中井 - HP文档中心 - 2008-06-02 16:13:25 阅读(2355) 回复(0)

相关讨论

那位大哥有hpux命令手册,中英文手册,小弟我不胜感激,谢谢

by stone1978 - HP-UX - 2003-03-20 13:38:10 阅读(4706) 回复(3)

在提示符直接运行nohup命令,如 # nohup sar -d 1 1000&, 此时用户用exit推出系统,则sar命令会停止运行 而采用先编辑一个文件,如zx.sh,在zx.sh文件中写 nohup sar -d 1 1000&,然后执行zx.sh,则用户用exit推出系统后,sar命令继续运行,难道nohup 命令不能直接运行吗?这两个运行方法有什么本质区别吗?

by cust - HP-UX - 2007-10-18 14:18:45 阅读(2137) 回复(2)

# ioscan –fnkC disk # swinstall –s /cdrom/(filename) # swremove # shutdown 0 # init 3 # umount /opt -9 强行关掉命令,5988 进程名 # swlist –l fileset –a state|grep PHKL_18543 # lvextend –L 30 /dev/vg00/lvol5 # extendfs /dev/vg00/rlvol5 # mount /opt # m...

by sz_zte - HP文档中心 - 2007-04-07 11:47:53 阅读(1438) 回复(0)
by leelangco - HP-UX - 2006-11-13 11:12:22 阅读(1813) 回复(5)

(1)查找系统上有多少块磁盘?确定每个磁盘的硬件路径和设备文件名: # ioscan -knfC disk Class I H/W Path Driver S/W State H/W Type Description ===================================================================== disk 0 0/0/1/0.1.0 sdisk CLAIMED DEVICE HP DVD-ROM 305 /dev/dsk/c0t1d0 /dev/rdsk/c0t1d0 disk 1 0/0/2/0.6.0 sdisk CLAIM...

by sz_zte - HP-UX - 2005-07-01 15:40:33 阅读(1582) 回复(1)

闲来无事,share出自己总结的hpux维护命令,有点乱,但是做过的人应该能看明白 常用系统维护命令 uptime bdf dmesg - tail -1000 /var/adm/syslog/syslog.log|egrep 'error|fail' vgdisplay -v|grep -i status ioscan -funC disk ioscan -funC tape ioscan -funC fc cmviewcl -v swapinfo -atm machinfo 查看hp主机硬件情况 glance /var/adm/crash 内核崩溃映像文件 ioscan -funCfc 察看光纖卡的鏈卡有多少個 spmgr disp...

by gaoshixing - HP-UX - 2009-09-30 15:05:07 阅读(3844) 回复(8)

# ioscan –fnkC disk # swinstall –s /cdrom/(filename) ; # swremove ; # shutdown 0 ; # init 3 ; # umount /opt ; ; -9 强行关掉命令,5988 进程名 # swlist –l fileset –a state|grep PHKL_18543 ; # lvextend –L 30 /dev/vg00/lvol5 ; # extendfs /dev/vg00/rlvol5 ; # mount /...

by paulcheung - HP文档中心 - 2008-02-25 15:28:14 阅读(2396) 回复(0)

1、 cd命令的使用 返回上一次的目录(cd -) 2、 Esc键的使用 在命令行中可通过击两次Esc键来匹配当前目录中唯一的文件名,这样可节约击入长文件名的时间 3、 col命令的使用 man cp | col –b >;cp.txt 该命令可将cp命令的联机帮助手册输出为名为cp.txt的文本文件 4、启动机器时执行的工作脚本(/etc/rc.config.d/) 5、which命令的使用(查看某命令的绝对路径) which 命令名 6、显示当前系统补丁安装情况...

by shana - HP文档中心 - 2006-07-20 09:16:59 阅读(1305) 回复(0)

SAR 命令 概览 项目 HP-STANDARD(1) EWS(2) 路径 /usr/sbin /usr/bin /usr/bin 中的为指向 /usr/sbin 的符号链接 /usr/sbin /usr/bin /usr/bin 中的为指向 /usr/sbin 的符号链接 语法 sar [-ubdycwaqvmAMS] [-o file] t [n] sar [-ubdycwaqvmAMS] [-s time] [-e time] [-I sec] [-f file] sar [-P processor_id[,…]|ALL] [-ubdycwaqvtpgrkAR] [-o file] t [n] sar [-P processor_id[,…]|ALL][-ubdycwaqvtmp...

by shiwudao - HP文档中心 - 2006-04-06 13:45:16 阅读(1648) 回复(0)

hpux系统维护日常命令 1. model 查看机器型号,和uname -a 差不多。 2. uptime 查看机器上次启动时间和cpu平均负载 3. top 前几行是cpu个数,型号,和平均负载,下面的十几行信息是进程占用cpu实时状况, 一般占用cpu越多排名就越靠前。 4. sar 2 3 查看系统当前负载, sar -u 查看cpu的负载, sar -d 查看磁盘的负载, 还有其他的参数,查man吧。 5. cd var/adm ll net* tail shut* 查看最后几次关机的休息,包括时间,用户。 6...

by tangle - HP文档中心 - 2006-04-03 11:00:59 阅读(1778) 回复(0)