date : 2005-06-10 start time : 09.34.20 stop time : 09.38.34 runtime : 254 layout-version : 1.6.18 hostname : hpux11i domain : openeyet.nl nodename : hpux11i model-id : 9000/897 model : 9000/897/I70 cpu-type : /usr/sam/lib/mo/sched.models:I70 1.1b PA7100 cpu-speed : 96 Mhz serial number : 1385663282 license : unlimited-user license cpu_cnt : 2 OS-name : HP-UX OS-release : B.11.11 OS-version-level : U hpux-trusted : 0 timezone : WET0WEST run level : New_level 3 Old_level S superuser password : 3952653519 memory real : 256 MB memory real (dmesg) : 262144 memory lockable (dmesg) : 165248 memory available (dmesg) : 191432 uptime : 1:35 rclog : -rw-r--r-- 1 root root 18248 Jun 10 08:06 /etc/rc.log shutdownlog : -rw-r--r-- 1 bin bin 1337 Apr 13 14:11 /etc/shutdownlog
09.34.21: 0 : 0 :start of run 09.34.22: 1 : 1 :scc_0000_s_general start of module 09.34.26: 4 : 5 :scc_0000_s_general end of module 09.34.27: 1 : 6 :scc_0100_s_boot start of module 09.34.34: 7 : 13 :scc_0100_s_boot end of module 09.34.34: 0 : 13 :scc_0200_s_hardware start of module 09.34.35: 1 : 14 : scc_0200_s_hardware: end of AutoRAID 09.34.36: 1 : 15 : scc_0200_s_hardware: end of FC60-array 09.36.04: 88 : 103 : scc_0200_s_hardware: end of disk 09.36.09: 5 : 108 : scc_0200_s_hardware: end of ioscan 09.36.10: 96 : 109 :scc_0200_s_hardware end of module 09.36.10: 0 : 109 :scc_0300_s_kernel start of module 09.36.41: 31 : 140 :scc_0300_s_kernel end of module 09.36.41: 0 : 140 :scc_0400_s_vol_mngt start of module 09.36.49: 8 : 148 : scc_0400_s_vol_mngt: end of file systems 09.36.59: 18 : 158 :scc_0400_s_vol_mngt end of module 09.36.59: 0 : 158 :scc_0500_s_network start of module 09.37.18: 19 : 177 :scc_0500_s_network end of module 09.37.18: 0 : 177 :scc_0500_u_named start of module 09.37.18: 0 : 177 :scc_0500_u_named end of module 09.37.18: 0 : 177 :scc_0600_s_software start of module 09.37.23: 5 : 182 : scc_0600_s_software: end of EMS-monitors 09.37.52: 29 : 211 : scc_0600_s_software: end of Ignite-UX 09.38.13: 21 : 232 : scc_0600_s_software: start of SD-UX 09.38.17: 4 : 236 : scc_0600_s_software: end of SD-UX 09.38.19: 61 : 238 :scc_0600_s_software end of module 09.38.19: 0 : 238 :scc_0700_s_hp_ov start of module 09.38.23: 4 : 242 :scc_0700_s_hp_ov end of module 09.38.23: 0 : 242 :scc_0700_u_hp_ovou_srv start of module 09.38.23: 0 : 242 :scc_0700_u_hp_ovou_srv end of module 09.38.23: 0 : 242 :scc_0800_s_oracle start of module 09.38.24: 1 : 243 :scc_0800_s_oracle end of module 09.38.24: 0 : 243 :scc_0900_s_system start of module 09.38.29: 5 : 248 :scc_0900_s_system end of module 09.38.29: 0 : 248 :scc_1000_s_users start of module 09.38.33: 4 : 252 :scc_1000_s_users end of module 09.38.33: 252 : 252 :end of run
trap "" 2
CMDNAME="bcheckrc" # used in the script, later on.
echo "/sbin/bcheckrc:"
if [ -x /sbin/lvmrc ]
then
echo "Checking for LVM volume groups and Activating (if any exist)"
/sbin/lvmrc
fi
if is_local_root
then # root is a local mount
case `/sbin/fstyp /dev/root` in
"hfs") /sbin/fsclean /dev/rroot
status=$?
;;
"vxfs") /sbin/fsck -F vxfs -m /dev/rroot
status=$?
;;
*) status=0
;;
esac
else # root is a diskless client
status=0
fi
if [ $status = 0 ]
then
if [ -x /sbin/eisa_config ]
then
/sbin/eisa_config -a
case $? in
1 | 10) /sbin/reboot ;;
11 | 12) /sbin/reboot -h ;;
esac
else
echo "eisa_config is not present -- cannot check eisa configuration"
fi
fi
itemap_option=""
if [ -f /etc/kbdlang ]
then
read MAP_NAME filler < /etc/kbdlang
if [ $MAP_NAME ]
then
itemap_option="-l $MAP_NAME"
fi
fi
if [ -x /sbin/itemap ] && [ -f /etc/X11/XHPKeymaps ]
then
/sbin/itemap -i -L $itemap_option -w /etc/kbdlang
fi
DEFAULTLIST="hfs vxfs"
IGNORELIST="swap swapfs ignore"
FSTAB="/etc/fstab"
FSLOCATION="/sbin/fs"
FSCK="fsck"
FSTYP="/sbin/fstyp -l"
CONFIGLIST=`$FSTYP 2>/dev/null`
if [ $? -ne 0 ]
then
CONFIGLIST=${CONFIGLIST:-$DEFAULTLIST}
fi
FSTABLIST=`cat $FSTAB | awk '{ if (($0 != "" ) && ($1 != "#"))
TMPLIST[$3]=$3;
} END {
for (i in TMPLIST)
printf("%s ",i);
printf("\n");
}'`
for i in $FSTABLIST
do
IGNOREFLAG=""
for j in $IGNORELIST
do
if [ "$i" = "$j" ]
then
IGNOREFLAG="TRUE"
fi
done
if [ "$IGNOREFLAG" != "TRUE" ]
then
TMPFSTABLIST="$TMPFSTABLIST $i"
fi
done
FSTABLIST="$TMPFSTABLIST"
FSTABLIST=${FSTABLIST:-$CONFIGLIST}
for i in $FSTABLIST
do
if [ -f $FSLOCATION/$i/$FSCK ]
then
FSTYPLIST="$FSTYPLIST $i"
fi
done
trap "echo Interrupt" 2
status=0
for fstype in $FSTYPLIST
do
if [ -f $FSLOCATION/$fstype/$CMDNAME ]
then
echo "Checking $fstype file systems"
. $FSLOCATION/$fstype/$CMDNAME
else
echo "cannot find " $FSLOCATION/$fstype/$CMDNAME
status=1
fi
done
echo # console readability during bootup
if [ $status = 0 ]
then
echo "Cleaning /etc/ptmp..."
PTMP="/etc/ptmp"
PWDF="/etc/passwd"
SAWK="awk"
SMV="mv"
SLS="ls"
if [ -f $PTMP ]
then
if [ -f $PWDF ]
then # /etc/passwd exists
PTMP_SIZE=`$SLS -l $PTMP | $SAWK '{print $5}'`
PWDF_SIZE=`$SLS -l $PWDF | $SAWK '{print $5}'`
if [ $PTMP_SIZE -gt $PWDF_SIZE ]
then
$SMV $PWDF $PWDF.boot
$SMV $PTMP $PWDF
else
$SMV $PTMP $PTMP.boot
fi
else # /etc/passwd files does not exist
$SMV $PTMP $PWDF
fi
fi # ptmp file exists
fi
exit $status
AUTO_VG_ACTIVATE=1
RESYNC="SERIAL"
custom_vg_activation()
{
return 0
}
parallel_vg_sync()
{
for VG in $*
do
{
if /sbin/vgsync $VG > /dev/null
then
echo "Resynchronized volume group $VG"
fi
} &
done
}
if [ -x /sbin/is_local_root ] && /sbin/is_local_root ; then
if [ -c /dev/rroot ]; then
echo "Checking root file system."
case `/sbin/fstyp /dev/root` in
"hfs") /sbin/fsck -F hfs -P -f /dev/rroot
;;
"vxfs") /sbin/fsck -F vxfs -y /dev/rroot
;;
*) :
;;
esac
echo "Root check done."
else
echo "The device file /dev/rroot does not exist or is not correct."
echo "Automatic checks of the root file system not performed."
fi
fi
for CFG_FILE in /etc/rc.config.d/* /etc/TIMEZONE
do
fname=${CFG_FILE##*/} # get file basename
if [ -f $CFG_FILE -a "$fname" != "core" -a "${fname##*[.,~\#]}" = "$fname" ]
then . $CFG_FILE # source a valid config file
fi
done
l /dev/dsk/c2t3d0
autoboot: hpux lifls: volume ISL10 data size 7984 directory size 8 lifls: filename type start size implement created lifls: =============================================================== lifls: ISL -12800 584 306 0 lifls: AUTO -12289 896 1 0 lifls: HPUX -12928 904 848 0 lifls: PAD -12290 1752 1580 0 lifls: LABEL BIN 3336 8 0
lvlnboot: Boot Definitions for Volume Group /dev/vg00: lvlnboot: Physical Volumes belonging in Root Volume Group: lvlnboot: /dev/dsk/c2t3d0 (48.3.0) -- Boot Disk lvlnboot: Boot: lvol1 on: /dev/dsk/c2t3d0 lvlnboot: Root: lvol3 on: /dev/dsk/c2t3d0 lvlnboot: Swap: lvol2 on: /dev/dsk/c2t3d0 lvlnboot: Dump: lvol2 on: /dev/dsk/c2t3d0, 0 lvlnboot:
START_DMI=1 DMI_IGNORECONFIGURECHECK=0
START_RPCD=1
SNMP_HPUNIX_START=1 # Start the hp-unix MIB SNMP subAgent by default. export SNMP_HPUNIX_START
SNMP_MASTER_START=1 # Start the master SNMP agent. export SNMP_MASTER_START
SNMP_MIB2_START=1 # Start the MIB2 SNMP subAgent. export SNMP_MIB2_START
SNMP_TRAPDEST_START=1 # Start the master SNMP agent. export SNMP_TRAPDEST_START
START_ACCT=0
AUDITING=0 PRI_AUDFILE=/.secure/etc/audfile1 PRI_SWITCH=1000 SEC_AUDFILE=/.secure/etc/audfile2 SEC_SWITCH=1000 AUDEVENT_ARGS1="-P -F -e moddac -e login -e admin" AUDEVENT_ARGS2="" AUDEVENT_ARGS3="" AUDOMON_ARGS="-p 20 -t 1 -w 90"
DTMOUNTPOINT=/nfs/
CLEAN_ADM=1 CLEAN_UUCP=1
LIST_TEMPS=1 CLEAR_TMP=0
CLEAN_UUCP=1
TTSYNCD=1
CRASHCONF_ENABLED=1 CRASH_INCLUDED_PAGES="" CRASH_EXCLUDED_PAGES="" CRASHCONF_READ_FSTAB=1 CRASHCONF_REPLACE=0
CRON=1
DCED=0 ACTIVATE_SECVAL=0 AUDITD=0 SECD=0 CDSADV=0 CDSD=0 GDAD=0 DTSD=0 DTS_NULL_PROVIDER=0 DTS_NTP_PROVIDER=0 DTS_SPECTRACOM_PROVIDER=0 PWD_STRENGTHD=0 ILOGIND=0 NTP_HOST= NTP_PROVIDER_POLL= NTP_PROVIDER_INACCURACY= NULL_PROVIDER_POLL= NULL_PROVIDER_INACCURACY= SPEC_DEV= DTSD_SWITCHES= AUDITD_SWITCHES= PWD_STRENGTHD_SWITCHES= DCED_SWITCHES=
EMS_ENABLED=1
AUTOSTART_EMSAGT=1
ENVD=1
RUN_EUSRV=0 EUSRV_CONFIG=/etc/asx/eus/config
HPARAMGR_START_STOP=1
HPARRAY_START_STOP=1
HP_BTLAN_INTERFACE_NAME[0]= HP_BTLAN_STATION_ADDRESS[0]= HP_BTLAN_SPEED[0]= HP_BTLAN_INIT_ARGS="HP_BTLAN_STATION_ADDRESS HP_BTLAN_SPEED"
HP_ETHER_INTERFACE_NAME[0]= HP_ETHER_STATION_ADDRESS[0]= HP_ETHER_INIT_ARGS="HP_ETHER_STATION_ADDRESS"
FCMS_START=1 HP_FCMS_INTERFACE_NAME[0]=
HP_PCIFDDI_INIT_ARGS="HP_PCIFDDI_STATION_ADDRESS HP_PCIFDDI_MTU HP_PCIFDDI_TREQ HP_PCIFDDI_TNOTIFY"
HP_GELAN_INIT_ARGS="HP_GELAN_STATION_ADDRESS HP_GELAN_SPEED HP_GELAN_MTU HP_GELAN_FLOW_CONTROL HP_GELAN_AUTONEG HP_GELAN_SEND_COAL_TICKS HP_GELAN_RECV_COAL_TICKS HP_GELAN_SEND_MAX_BUFS HP_GELAN_RECV_MAX_BUFS" HP_GELAN_INTERFACE_NAME[0]= HP_GELAN_STATION_ADDRESS[0]= HP_GELAN_SPEED[0]= HP_GELAN_MTU[0]= HP_GELAN_FLOW_CONTROL[0]= HP_GELAN_AUTONEG[0]= HP_GELAN_SEND_COAL_TICKS[0]= HP_GELAN_RECV_COAL_TICKS[0]= HP_GELAN_SEND_MAX_BUFS[0]= HP_GELAN_RECV_MAX_BUFS[0]=
START_I4LMD=0
KL=0
KM_INIT=1
LIST_MODE=0 LIST_TIMEOUT=0 USE_COLOR=1
LP=1
export SENDMAIL_SERVER=1 export SENDMAIL_SERVER_NAME=
MWA_START=1 MWA_START_COMMAND="/opt/perf/bin/mwa start"
unset UNIX95 PRE_U95=true;export PRE_U95; NAMED=0 NAMED_ARGS="" NIS_MASTER_SERVER=0 NIS_SLAVE_SERVER=0 NIS_CLIENT=0 NISPLUS_SERVER=0 NISPLUS_CLIENT=0 NIS_DOMAIN= MAX_NISCHECKS=2 EMULYP="" YPSERV_OPTIONS="" YPBIND_OPTIONS="" YPPASSWDD_OPTIONS="/etc/passwd -m passwd PWFILE=/etc/passwd" KEYSERV_OPTIONS="" YPUPDATED_OPTIONS="" YPXFRD_OPTIONS="" RPC_NISD_OPTIONS="$EMULYP" NIS_CACHEMGR_OPTIONS="" YPSET_ADDR="" LONGNAMES_OPTIONS="group.bygid.dir group.bygid.pag group.byname.dir \ group.byname.pag hosts.byaddr.dir hosts.byaddr.pag \ hosts.byname.dir hosts.byname.pag networks.byaddr.dir \ networks.byaddr.pag networks.byname.dir networks.byname.pag \ passwd.byname.dir passwd.byname.pag passwd.byuid.dir \ passwd.byuid.pag protocols.byname.dir protocols.byname.pag \ protocols.bynumber.dir protocols.bynumber.pag \ rpc.bynumber.dir rpc.bynumber.pag services.byname.dir \ services.byname.pag ypservers.dir ypservers.pag" SHORTNAMES_OPTIONS="group.bygi.dir group.bygi.pag group.byna.dir \ group.byna.pag hosts.byad.dir hosts.byad.pag \ hosts.byna.dir hosts.byna.pag netwk.byad.dir \ netwk.byad.pag netwk.byna.dir netwk.byna.pag \ passw.byna.dir passw.byna.pag passw.byui.dir \ passw.byui.pag proto.byna.dir proto.byna.pag \ proto.bynu.dir proto.bynu.pag rpc.bynu.dir \ rpc.bynu.pag servi.byna.dir servi.byna.pag \ ypservers.dir ypservers.pag"
HOSTNAME="hpux11i" OPERATING_SYSTEM=HP-UX LOOPBACK_ADDRESS=127.0.0.1 INTERFACE_NAME[0]="lan1" IP_ADDRESS[0]="192.168.16.14" SUBNET_MASK[0]="255.255.255.0" BROADCAST_ADDRESS[0]="" INTERFACE_STATE[0]="" DHCP_ENABLE[0]=0 ROUTE_DESTINATION[0]="default" ROUTE_MASK[0]="" ROUTE_GATEWAY[0]="192.168.16.7" ROUTE_COUNT[0]="1" ROUTE_ARGS[0]="" GATED=0 GATED_ARGS="" RDPD=0 RARP=0
export INETD_ARGS= START_RBOOTD=1 export RBOOTD_DEVICES= export NTPDATE_SERVER= export XNTPD=0 export XNTPD_ARGS= export MROUTED=0 export MROUTED_ARGS="" export RWHOD=0 export DDFA=0
NETTL=1
: ${NTLCONFFILE:="/etc/nettlgen.conf"}
if test -r $NTLCONFFILE
then
NETTL_CONSOLE=`awk 'BEGIN { FS = ":"; conlog = 1 }
/^LOG:/ { conlog = $2 }
END { print (conlog == 0) ? 0 : 1 }
' $NTLCONFFILE`
else
NETTL_CONSOLE=1
fi
NFS_CLIENT=1 NFS_SERVER=1 NUM_NFSD=16 NUM_NFSIOD=16 PCNFS_SERVER=0 LOCKD_OPTIONS="" STATD_OPTIONS="" MOUNTD_OPTIONS="" AUTOMOUNT=1 AUTO_MASTER="/etc/auto_master" AUTO_OPTIONS="-f $AUTO_MASTER" START_MOUNTD=1 AUTOFS=0 AUTOMOUNT_OPTIONS="" AUTOMOUNTD_OPTIONS=""
PD_ENV=basic PDPRNPATH=/opt/pd/lib/model:/var/opt/pd/lib/model PD_CLIENT=0 PD_OTHER_CLIENTS=" " PD_SPOOLERS=" " PD_SUPERVISORS=" " PD_MEMLIMIT=50000
PTYDAEMON_START=1
PV_START=1
PWGR=1 PWGRD_WITH_NISPLUS=0
SCR_DAEMON=1
DATE_TIMEOUT=0
SLSD_DAEMON=0
SW_DEFERRED_KERNBLD=
SYNCER=1
VTDAEMON_START=1 VTGATEWAY= VTGOPTS= VTGINTERFACES=
WEBADMIN=0
RUN_X_FONT_SERVER=0 CONFIG_FILE_NAME=/etc/X11/fs/config
LOCAL=vxfs
HOMEDIR /home GROUPID 20 INACT -1 EXPIRE
init:3:initdefault: ioin::sysinit:/sbin/ioinitrc >/dev/console 2>&1 tape::sysinit:/sbin/mtinit > /dev/console 2>&1 muxi::sysinit:/sbin/dasetup </dev/console >/dev/console 2>&1 # mux init stty::sysinit:/sbin/stty 9600 clocal icanon echo opost onlcr ixon icrnl ignpar </dev/systty brc1::bootwait:/sbin/bcheckrc </dev/console >/dev/console 2>&1 # fsck, etc. link::wait:/sbin/sh -c "/sbin/rm -f /dev/syscon; \ /sbin/ln /dev/systty /dev/syscon" >/dev/console 2>&1 cprt::bootwait:/sbin/cat /etc/copyright >/dev/syscon # legal req sqnc::wait:/sbin/rc </dev/console >/dev/console 2>&1 # system init cons:123456:respawn:/usr/sbin/getty console console # system console krsd:123456:respawn:/sbin/krsd -i sfd:123456:respawn:/sbin/sfd samd:23456:respawn:/usr/sam/lbin/samd # system mgmt daemon ems1::bootwait:/sbin/rm -f /etc/opt/resmon/persistence/runlevel4_flag ems2::bootwait:/sbin/cat </dev/null >/etc/opt/resmon/persistence/reboot_flag ems3:3456:wait:/usr/bin/touch /etc/opt/resmon/persistence/runlevel4_flag ems4:3456:respawn:/etc/opt/resmon/lbin/p_client
K480syncer -> /sbin/init.d/syncer K650kl -> /sbin/init.d/kl K700vxvm-daemon-kill -> /sbin/init.d/vxvm-daemon-kill K800killall -> /sbin/init.d/killall K888kminit -> /sbin/init.d/kminit K890kmbuild -> /sbin/init.d/kmbuild K900localmount -> /sbin/init.d/localmount
K100ems -> /sbin/init.d/ems K140webadmin -> /sbin/init.d/webadmin K186pv -> /sbin/init.d/pv K190mwa -> /sbin/init.d/mwa K215hub -> /sbin/init.d/hub K220slsd -> /sbin/init.d/slsd K240auditing -> /sbin/init.d/auditing K250envd -> /sbin/init.d/envd K270cron -> /sbin/init.d/cron K278pd -> /sbin/init.d/pd K280lp -> /sbin/init.d/lp K290hparamgr -> /sbin/init.d/hparamgr K290hparray -> /sbin/init.d/hparray K300acct -> /sbin/init.d/acct K340xntpd -> /sbin/init.d/xntpd K352eus -> /sbin/init.d/eus K370vt -> /sbin/init.d/vt K380xfs -> /sbin/init.d/xfs K390rbootd -> /sbin/init.d/rbootd K394scrdaemon -> /sbin/init.d/scrdaemon K395Dmisp -> /sbin/init.d/Dmisp K400iforls -> /sbin/init.d/iforls K410Rpcd -> /sbin/init.d/Rpcd K430dce -> /sbin/init.d/dce K435OspfMib -> /sbin/init.d/OspfMib K435SnmpHpunix -> /sbin/init.d/SnmpHpunix K435SnmpMib2 -> /sbin/init.d/SnmpMib2 K435SnmpTrpDst -> /sbin/init.d/SnmpTrpDst K440SnmpMaster -> /sbin/init.d/SnmpMaster K450ddfa -> /sbin/init.d/ddfa K460sendmail -> /sbin/init.d/sendmail K470rwhod -> /sbin/init.d/rwhod K475rarpd -> /sbin/init.d/rarpd K478ppp -> /sbin/init.d/ppp K480rdpd -> /sbin/init.d/rdpd K490gated -> /sbin/init.d/gated K500inetd -> /sbin/init.d/inetd K510mrouted -> /sbin/init.d/mrouted K560comsec -> /sbin/init.d/comsec K565inetsvcs -> /sbin/init.d/inetsvcs K570nfs.client -> /sbin/init.d/nfs.client K580nis.client -> /sbin/init.d/nis.client K590nis.server -> /sbin/init.d/nis.server K592nisplus.client -> /sbin/init.d/nisplus.client K594nisplus.server -> /sbin/init.d/nisplus.server K600nfs.core -> /sbin/init.d/nfs.core K630named -> /sbin/init.d/named K660net -> /sbin/init.d/net K692hpgelan -> /sbin/init.d/hpgelan K700nettl -> /sbin/init.d/nettl K770ptydaemon -> /sbin/init.d/ptydaemon K780syslogd -> /sbin/init.d/syslogd K900swagentd -> /sbin/init.d/swagentd K992net.init -> /sbin/init.d/net.init S080crashconf -> /sbin/init.d/crashconf S091vxvm-nodes-check -> /sbin/init.d/vxvm-nodes-check S092vxvm-startup2 -> /sbin/init.d/vxvm-startup2 S093vxvm-reconfig -> /sbin/init.d/vxvm-reconfig S100localmount -> /sbin/init.d/localmount S110kmbuild -> /sbin/init.d/kmbuild S112kminit -> /sbin/init.d/kminit S320hostname -> /sbin/init.d/hostname S350kl -> /sbin/init.d/kl S400set_prvgrp -> /sbin/init.d/set_prvgrp S420set_date -> /sbin/init.d/set_date S440savecrash -> /sbin/init.d/savecrash S500swap_start -> /sbin/init.d/swap_start S520syncer -> /sbin/init.d/syncer
K100apache -> /sbin/init.d/apache K900nfs.server -> /sbin/init.d/nfs.server S008net.init -> /sbin/init.d/net.init S095vxvm-recover -> /sbin/init.d/vxvm-recover S120swconfig -> /sbin/init.d/swconfig S200clean_ex -> /sbin/init.d/clean_ex S202clean_uucp -> /sbin/init.d/clean_uucp S204clean_tmps -> /sbin/init.d/clean_tmps S206clean_adm -> /sbin/init.d/clean_adm S220syslogd -> /sbin/init.d/syslogd S230ptydaemon -> /sbin/init.d/ptydaemon S290pci_olar -> /sbin/init.d/pci_olar S300nettl -> /sbin/init.d/nettl S308hpgelan -> /sbin/init.d/hpgelan S320hpether -> /sbin/init.d/hpether S329hppcifddi -> /sbin/init.d/hppcifddi S333hpbtlan -> /sbin/init.d/hpbtlan S340net -> /sbin/init.d/net S370named -> /sbin/init.d/named S400nfs.core -> /sbin/init.d/nfs.core S406nisplus.server -> /sbin/init.d/nisplus.server S408nisplus.client -> /sbin/init.d/nisplus.client S410nis.server -> /sbin/init.d/nis.server S420nis.client -> /sbin/init.d/nis.client S430nfs.client -> /sbin/init.d/nfs.client S440comsec -> /sbin/init.d/comsec S462maclan -> /sbin/init.d/maclan_init S490mrouted -> /sbin/init.d/mrouted S500inetd -> /sbin/init.d/inetd S510gated -> /sbin/init.d/gated S520rdpd -> /sbin/init.d/rdpd S522ppp -> /sbin/init.d/ppp S525rarpd -> /sbin/init.d/rarpd S530rwhod -> /sbin/init.d/rwhod S535inetsvcs -> /sbin/init.d/inetsvcs S540sendmail -> /sbin/init.d/sendmail S550ddfa -> /sbin/init.d/ddfa S560SnmpMaster -> /sbin/init.d/SnmpMaster S565OspfMib -> /sbin/init.d/OspfMib S565SnmpHpunix -> /sbin/init.d/SnmpHpunix S565SnmpMib2 -> /sbin/init.d/SnmpMib2 S565SnmpTrpDst -> /sbin/init.d/SnmpTrpDst S570dce -> /sbin/init.d/dce S590Rpcd -> /sbin/init.d/Rpcd S600iforls -> /sbin/init.d/iforls S605Dmisp -> /sbin/init.d/Dmisp S606scrdaemon -> /sbin/init.d/scrdaemon S610rbootd -> /sbin/init.d/rbootd S620xfs -> /sbin/init.d/xfs S630vt -> /sbin/init.d/vt S648eus -> /sbin/init.d/eus S660xntpd -> /sbin/init.d/xntpd S700acct -> /sbin/init.d/acct S705pwgr -> /sbin/init.d/pwgr S710hparamgr -> /sbin/init.d/hparamgr S710hparray -> /sbin/init.d/hparray S720lp -> /sbin/init.d/lp S722pd -> /sbin/init.d/pd S730cron -> /sbin/init.d/cron S750envd -> /sbin/init.d/envd S760auditing -> /sbin/init.d/auditing S780slsd -> /sbin/init.d/slsd S785hub -> /sbin/init.d/hub S800spa -> /sbin/init.d/spa S810mwa -> /sbin/init.d/mwa S814pv -> /sbin/init.d/pv S860webadmin -> /sbin/init.d/webadmin S870swagentd -> /sbin/init.d/swagentd S900apache -> /sbin/init.d/apache S900ems -> /sbin/init.d/ems S900emsa -> /sbin/init.d/emsa S900hpfcms -> /sbin/init.d/hpfcms
S100nfs.server -> /sbin/init.d/nfs.server S950vmsa_start_srvr -> /sbin/init.d/vmsa_start_srvr
Primary bootpath : 48.3.0 Alternate bootpath : 40.5.0 Autoboot is OFF (disabled) Autosearch is ON (enabled)
absent
absent
/dev/arp: crw-rw-rw- 1 root root 72 0x000007 /dev/c1t0d0_lp: crw------- 1 lp bin 4 0x010000 /dev/c3t0d0_lp: crw------- 1 lp bin 4 0x030000 /dev/config: crw-r--r-- 1 root sys 69 0x000000 /dev/console: crw--w--w- 1 root tty 0 0x000000 /dev/devkrs: crw-r--r-- 1 bin sys 2 0x000000 /dev/diag2: crw------- 1 bin bin 232 0x000000 /dev/dlpi: crw-rw-rw- 1 root sys 72 0x000077 /dev/dlpi0: crw-rw-rw- 1 root sys 119 0x000000 /dev/dlpi1: crw-rw-rw- 1 root sys 119 0x000001 /dev/dlpi2: crw-rw-rw- 1 root sys 119 0x000002 /dev/dlpi3: crw-rw-rw- 1 root sys 119 0x000003 /dev/dlpi4: crw-rw-rw- 1 root sys 119 0x000004 /dev/dmem: crw------- 1 bin bin 27 0x000000 /dev/echo: crw-rw-rw- 1 root other 72 0x000074 /dev/eeprom: crw------- 1 root root 196 0x000000 /dev/ether1: crw-rw-rw- 1 bin bin 185 0x010001 /dev/i4target: crw-rw-rw- 1 root sys 185 0x010000 /dev/ip: crw-rw-rw- 1 root root 72 0x000006 /dev/kepd: crw-r--r-- 1 root other 227 0x000000 /dev/kernlog: crw-r--r-- 1 bin bin 46 0x000002 /dev/klog: crw------- 1 bin bin 189 0x000000 /dev/kmem: crw-r----- 1 bin sys 3 0x000001 /dev/lan0: crw-rw-rw- 1 bin bin 191 0x000000 /dev/lan1: crw-rw-rw- 1 bin bin 185 0x010000 /dev/lantty0: 1 180 0x000000 /dev/lantty0: crw------- bin bin /dev/mem: crw-r----- 1 bin sys 3 0x000000 /dev/mux0: 2 178 0x000080 /dev/mux0: crw------- bin bin /dev/netlog: crw-r--r-- 1 bin bin 46 0x000001 /dev/netqa: crw-rw-rw- 1 root root 72 0x00000e /dev/nettrace: crw-r--r-- 1 bin bin 46 0x000000 /dev/null: crw-rw-rw- 1 bin bin 3 0x000002 /dev/nuls: crw-rw-rw- 1 root root 72 0x00000d /dev/ptmx: crw-rw-rw- 1 root root 72 0x00009c /dev/ptyp0: 2 16 0x000000 /dev/ptyp0: crw-rw-rw- bin tty /dev/ptyp1: 2 16 0x000001 /dev/ptyp1: crw-rw-rw- bin tty /dev/ptyp2: 2 16 0x000002 /dev/ptyp2: crw-rw-rw- bin tty /dev/ptyp3: 2 16 0x000003 /dev/ptyp3: crw-rw-rw- bin tty /dev/ptyp4: 2 16 0x000004 /dev/ptyp4: crw-rw-rw- bin tty /dev/ptyp5: 2 16 0x000005 /dev/ptyp5: crw-rw-rw- bin tty /dev/ptyp6: 2 16 0x000006 /dev/ptyp6: crw-rw-rw- bin tty /dev/ptyp7: 2 16 0x000007 /dev/ptyp7: crw-rw-rw- bin tty /dev/ptyp8: 2 16 0x000008 /dev/ptyp8: crw-rw-rw- bin tty /dev/ptyp9: 2 16 0x000009 /dev/ptyp9: crw-rw-rw- bin tty /dev/ptypa: 2 16 0x00000a /dev/ptypa: crw-rw-rw- bin tty /dev/ptypb: 2 16 0x00000b /dev/ptypb: crw-rw-rw- bin tty /dev/ptypc: 2 16 0x00000c /dev/ptypc: crw-rw-rw- bin tty /dev/ptypd: 2 16 0x00000d /dev/ptypd: crw-rw-rw- bin tty /dev/ptype: 2 16 0x00000e /dev/ptype: crw-rw-rw- bin tty /dev/ptypf: 2 16 0x00000f /dev/ptypf: crw-rw-rw- bin tty /dev/ptyq0: 2 16 0x000010 /dev/ptyq0: crw-rw-rw- bin tty /dev/ptyq1: 2 16 0x000011 /dev/ptyq1: crw-rw-rw- bin tty /dev/ptyq2: 2 16 0x000012 /dev/ptyq2: crw-rw-rw- bin tty /dev/ptyq3: 2 16 0x000013 /dev/ptyq3: crw-rw-rw- bin tty /dev/ptyq4: 2 16 0x000014 /dev/ptyq4: crw-rw-rw- bin tty /dev/ptyq5: 2 16 0x000015 /dev/ptyq5: crw-rw-rw- bin tty /dev/ptyq6: 2 16 0x000016 /dev/ptyq6: crw-rw-rw- bin tty /dev/ptyq7: 2 16 0x000017 /dev/ptyq7: crw-rw-rw- bin tty /dev/ptyq8: 2 16 0x000018 /dev/ptyq8: crw-rw-rw- bin tty /dev/ptyq9: 2 16 0x000019 /dev/ptyq9: crw-rw-rw- bin tty /dev/ptyqa: 2 16 0x00001a /dev/ptyqa: crw-rw-rw- bin tty /dev/ptyqb: 2 16 0x00001b /dev/ptyqb: crw-rw-rw- bin tty /dev/ptyqc: 2 16 0x00001c /dev/ptyqc: crw-rw-rw- bin tty /dev/ptyqd: 2 16 0x00001d /dev/ptyqd: crw-rw-rw- bin tty /dev/ptyqe: 2 16 0x00001e /dev/ptyqe: crw-rw-rw- bin tty /dev/ptyqf: 2 16 0x00001f /dev/ptyqf: crw-rw-rw- bin tty /dev/ptyr0: 2 16 0x000020 /dev/ptyr0: crw-rw-rw- bin tty /dev/ptyr1: 2 16 0x000021 /dev/ptyr1: crw-rw-rw- bin tty /dev/ptyr2: 2 16 0x000022 /dev/ptyr2: crw-rw-rw- bin tty /dev/ptyr3: 2 16 0x000023 /dev/ptyr3: crw-rw-rw- bin tty /dev/ptyr4: 2 16 0x000024 /dev/ptyr4: crw-rw-rw- bin tty /dev/ptyr5: 2 16 0x000025 /dev/ptyr5: crw-rw-rw- bin tty /dev/ptyr6: 2 16 0x000026 /dev/ptyr6: crw-rw-rw- bin tty /dev/ptyr7: 2 16 0x000027 /dev/ptyr7: crw-rw-rw- bin tty /dev/ptyr8: 2 16 0x000028 /dev/ptyr8: crw-rw-rw- bin tty /dev/ptyr9: 2 16 0x000029 /dev/ptyr9: crw-rw-rw- bin tty /dev/ptyra: 2 16 0x00002a /dev/ptyra: crw-rw-rw- bin tty /dev/ptyrb: 2 16 0x00002b /dev/ptyrb: crw-rw-rw- bin tty /dev/ptyrc: 2 16 0x00002c /dev/ptyrc: crw-rw-rw- bin tty /dev/ptyrd: 2 16 0x00002d /dev/ptyrd: crw-rw-rw- bin tty /dev/ptyre: 2 16 0x00002e /dev/ptyre: crw-rw-rw- bin tty /dev/ptyrf: 2 16 0x00002f /dev/ptyrf: crw-rw-rw- bin tty /dev/rawip: crw-rw-rw- 1 root root 72 0x000008 /dev/root: brw-r----- 1 bin sys 255 0xffffff /dev/rroot: crw-r----- 1 bin sys 255 0xffffff /dev/sad: crw-rw-rw- 1 root other 72 0x00004a /dev/stcpmap: crw-rw-rw- 1 root root 72 0x00000c /dev/strlog: crw-rw-rw- 1 root other 72 0x000049 /dev/syscon: crw--w--w- 2 bin bin 0 0x000000 /dev/systty: crw--w--w- 2 bin bin 0 0x000000 /dev/tcp: crw-rw-rw- 1 root root 72 0x00000a /dev/telnetm: crw-rw-rw- 1 root sys 72 0x000012 /dev/tlclts: crw-rw-rw- 1 root sys 72 0x000014 /dev/tlcots: crw-rw-rw- 1 root sys 72 0x000015 /dev/tlcotsod: crw-rw-rw- 1 root sys 72 0x000016 /dev/tty: crw-rw-rw- 1 bin bin 207 0x000000 /dev/tty0p0: 1 178 0x000000 /dev/tty0p0: crw--w--w- bin bin /dev/tty0p1: 1 178 0x000100 /dev/tty0p1: crw--w--w- bin bin /dev/ttyconf: crw------- 1 root sys 0 0x000001 /dev/ttyp0: 2 17 0x000000 /dev/ttyp0: crw-rw-rw- bin tty /dev/ttyp1: 2 17 0x000001 /dev/ttyp1: crw-rw-rw- bin tty /dev/ttyp2: 2 17 0x000002 /dev/ttyp2: crw-rw-rw- bin tty /dev/ttyp3: 2 17 0x000003 /dev/ttyp3: crw-rw-rw- bin tty /dev/ttyp4: 2 17 0x000004 /dev/ttyp4: crw-rw-rw- bin tty /dev/ttyp5: 2 17 0x000005 /dev/ttyp5: crw-rw-rw- bin tty /dev/ttyp6: 2 17 0x000006 /dev/ttyp6: crw-rw-rw- bin tty /dev/ttyp7: 2 17 0x000007 /dev/ttyp7: crw-rw-rw- bin tty /dev/ttyp8: 2 17 0x000008 /dev/ttyp8: crw-rw-rw- bin tty /dev/ttyp9: 2 17 0x000009 /dev/ttyp9: crw-rw-rw- bin tty /dev/ttypa: 2 17 0x00000a /dev/ttypa: crw-rw-rw- bin tty /dev/ttypb: 2 17 0x00000b /dev/ttypb: crw-rw-rw- bin tty /dev/ttypc: 2 17 0x00000c /dev/ttypc: crw-rw-rw- bin tty /dev/ttypd: 2 17 0x00000d /dev/ttypd: crw-rw-rw- bin tty /dev/ttype: 2 17 0x00000e /dev/ttype: crw-rw-rw- bin tty /dev/ttypf: 2 17 0x00000f /dev/ttypf: crw-rw-rw- bin tty /dev/ttyq0: 2 17 0x000010 /dev/ttyq0: crw-rw-rw- bin tty /dev/ttyq1: 2 17 0x000011 /dev/ttyq1: crw-rw-rw- bin tty /dev/ttyq2: 2 17 0x000012 /dev/ttyq2: crw-rw-rw- bin tty /dev/ttyq3: 2 17 0x000013 /dev/ttyq3: crw-rw-rw- bin tty /dev/ttyq4: 2 17 0x000014 /dev/ttyq4: crw-rw-rw- bin tty /dev/ttyq5: 2 17 0x000015 /dev/ttyq5: crw-rw-rw- bin tty /dev/ttyq6: 2 17 0x000016 /dev/ttyq6: crw-rw-rw- bin tty /dev/ttyq7: 2 17 0x000017 /dev/ttyq7: crw-rw-rw- bin tty /dev/ttyq8: 2 17 0x000018 /dev/ttyq8: crw-rw-rw- bin tty /dev/ttyq9: 2 17 0x000019 /dev/ttyq9: crw-rw-rw- bin tty /dev/ttyqa: 2 17 0x00001a /dev/ttyqa: crw-rw-rw- bin tty /dev/ttyqb: 2 17 0x00001b /dev/ttyqb: crw-rw-rw- bin tty /dev/ttyqc: 2 17 0x00001c /dev/ttyqc: crw-rw-rw- bin tty /dev/ttyqd: 2 17 0x00001d /dev/ttyqd: crw-rw-rw- bin tty /dev/ttyqe: 2 17 0x00001e /dev/ttyqe: crw-rw-rw- bin tty /dev/ttyqf: 2 17 0x00001f /dev/ttyqf: crw-rw-rw- bin tty /dev/ttyr0: 2 17 0x000020 /dev/ttyr0: crw-rw-rw- bin tty /dev/ttyr1: 2 17 0x000021 /dev/ttyr1: crw-rw-rw- bin tty /dev/ttyr2: 2 17 0x000022 /dev/ttyr2: crw-rw-rw- bin tty /dev/ttyr3: 2 17 0x000023 /dev/ttyr3: crw-rw-rw- bin tty /dev/ttyr4: 2 17 0x000024 /dev/ttyr4: crw-rw-rw- bin tty /dev/ttyr5: 2 17 0x000025 /dev/ttyr5: crw-rw-rw- bin tty /dev/ttyr6: 2 17 0x000026 /dev/ttyr6: crw-rw-rw- bin tty /dev/ttyr7: 2 17 0x000027 /dev/ttyr7: crw-rw-rw- bin tty /dev/ttyr8: 2 17 0x000028 /dev/ttyr8: crw-rw-rw- bin tty /dev/ttyr9: 2 17 0x000029 /dev/ttyr9: crw-rw-rw- bin tty /dev/ttyra: 2 17 0x00002a /dev/ttyra: crw-rw-rw- bin tty /dev/ttyrb: 2 17 0x00002b /dev/ttyrb: crw-rw-rw- bin tty /dev/ttyrc: 2 17 0x00002c /dev/ttyrc: crw-rw-rw- bin tty /dev/ttyrd: 2 17 0x00002d /dev/ttyrd: crw-rw-rw- bin tty /dev/ttyre: 2 17 0x00002e /dev/ttyre: crw-rw-rw- bin tty /dev/ttyrf: 2 17 0x00002f /dev/ttyrf: crw-rw-rw- bin tty /dev/tun0: crw------- 1 root root 15 0x000000 /dev/tun1: crw------- 1 root root 15 0x000001 /dev/tun10: crw------- 1 root root 15 0x00000a /dev/tun11: crw------- 1 root root 15 0x00000b /dev/tun12: crw------- 1 root root 15 0x00000c /dev/tun13: crw------- 1 root root 15 0x00000d /dev/tun14: crw------- 1 root root 15 0x00000e /dev/tun15: crw------- 1 root root 15 0x00000f /dev/tun2: crw------- 1 root root 15 0x000002 /dev/tun3: crw------- 1 root root 15 0x000003 /dev/tun4: crw------- 1 root root 15 0x000004 /dev/tun5: crw------- 1 root root 15 0x000005 /dev/tun6: crw------- 1 root root 15 0x000006 /dev/tun64: crw------- 1 root root 15 0x000040 /dev/tun65: crw------- 1 root root 15 0x000041 /dev/tun66: crw------- 1 root root 15 0x000042 /dev/tun67: crw------- 1 root root 15 0x000043 /dev/tun68: crw------- 1 root root 15 0x000044 /dev/tun69: crw------- 1 root root 15 0x000045 /dev/tun7: crw------- 1 root root 15 0x000007 /dev/tun70: crw------- 1 root root 15 0x000046 /dev/tun71: crw------- 1 root root 15 0x000047 /dev/tun72: crw------- 1 root root 15 0x000048 /dev/tun73: crw------- 1 root root 15 0x000049 /dev/tun74: crw------- 1 root root 15 0x00004a /dev/tun75: crw------- 1 root root 15 0x00004b /dev/tun76: crw------- 1 root root 15 0x00004c /dev/tun77: crw------- 1 root root 15 0x00004d /dev/tun78: crw------- 1 root root 15 0x00004e /dev/tun79: crw------- 1 root root 15 0x00004f /dev/tun8: crw------- 1 root root 15 0x000008 /dev/tun9: crw------- 1 root root 15 0x000009 /dev/tunip0: crw------- 1 root root 15 0x000080 /dev/tunip1: crw------- 1 root root 15 0x000081 /dev/tunip10: crw------- 1 root root 15 0x00008a /dev/tunip11: crw------- 1 root root 15 0x00008b /dev/tunip12: crw------- 1 root root 15 0x00008c /dev/tunip13: crw------- 1 root root 15 0x00008d /dev/tunip14: crw------- 1 root root 15 0x00008e /dev/tunip15: crw------- 1 root root 15 0x00008f /dev/tunip2: crw------- 1 root root 15 0x000082 /dev/tunip3: crw------- 1 root root 15 0x000083 /dev/tunip4: crw------- 1 root root 15 0x000084 /dev/tunip5: crw------- 1 root root 15 0x000085 /dev/tunip6: crw------- 1 root root 15 0x000086 /dev/tunip7: crw------- 1 root root 15 0x000087 /dev/tunip8: crw------- 1 root root 15 0x000088 /dev/tunip9: crw------- 1 root root 15 0x000089 /dev/udp: crw-rw-rw- 1 root root 72 0x00000b /dev/vxportal: crw-r--r-- 1 root sys 97 0x000000 /dev/zero: crw-rw-rw- 1 bin sys 3 0x000004
/dev/diag/c1t0d0_lp: crw------- 1 bin bin 4 0x010080 /dev/diag/c3t0d0_lp: crw------- 1 bin bin 4 0x030080 /dev/diag/diag0: crw------- 1 bin bin 28 0x000080 /dev/diag/diag1: crw------- 1 bin bin 183 0x000080 /dev/diag/diag2: crw------- 1 bin bin 232 0x000080 /dev/diag/iomem1: crw------- 1 bin bin 38 0x000001 /dev/diag/iomem2: crw------- 1 bin bin 38 0x000002 /dev/diag/iomem4: crw------- 1 bin bin 38 0x000004 /dev/diag/iomem8: crw------- 1 bin bin 38 0x000008 /dev/diag/lan1: crw------- 1 bin bin 185 0x010080 /dev/diag/lantty0: 1 180 0x000100 /dev/diag/lantty0: crw------- bin bin /dev/diag/mux0: 2 178 0x000080 /dev/diag/mux0: crw------- bin bin /dev/diag/rmt/c4t0d0: crw-rw-rw- 1 bin bin 212 0x04003f /dev/diag/tty0p0: 1 178 0x0000c0 /dev/diag/tty0p0: crw--w--w- bin bin /dev/diag/tty0p1: 1 178 0x0001c0 /dev/diag/tty0p1: crw--w--w- bin bin
/dev/dsk/c0t3d0: brw-r----- 1 bin sys 28 0x003000 /dev/dsk/c0t4d0: brw-r----- 1 bin sys 28 0x004000 /dev/dsk/c0t5d0: brw-r----- 1 bin sys 28 0x005000 /dev/dsk/c2t3d0: brw-r----- 1 bin sys 28 0x023000 /dev/dsk/c2t4d0: brw-r----- 1 bin sys 28 0x024000 /dev/dsk/c2t5d0: brw-r----- 1 bin sys 28 0x025000 /dev/dsk/c4t2d0: brw-r----- 1 bin sys 28 0x042000 /dev/dsk/c4t6d0: brw-r----- 1 bin sys 28 0x046000
/dev/floppy/c0t3d0: brw-r----- 1 bin sys 28 0x003000 /dev/floppy/c0t4d0: brw-r----- 1 bin sys 28 0x004000 /dev/floppy/c0t5d0: brw-r----- 1 bin sys 28 0x005000 /dev/floppy/c2t3d0: brw-r----- 1 bin sys 28 0x023000 /dev/floppy/c2t4d0: brw-r----- 1 bin sys 28 0x024000 /dev/floppy/c2t5d0: brw-r----- 1 bin sys 28 0x025000 /dev/floppy/c4t2d0: brw-r----- 1 bin sys 28 0x042000 /dev/floppy/c4t6d0: brw-r----- 1 bin sys 28 0x046000
/dev/gtmp/group: cr--r--r-- 1 root sys 64 0x010000
/dev/pts/0: 1 157 0x000000 /dev/pts/0: crw-rw-rw- root root /dev/pts/1: 1 157 0x000001 /dev/pts/1: crw-rw-rw- root root /dev/pts/10: 1 157 0x00000a /dev/pts/10: crw-rw-rw- root sys /dev/pts/11: 1 157 0x00000b /dev/pts/11: crw-rw-rw- root sys /dev/pts/12: 1 157 0x00000c /dev/pts/12: crw-rw-rw- root sys /dev/pts/13: 1 157 0x00000d /dev/pts/13: crw-rw-rw- root sys /dev/pts/14: 1 157 0x00000e /dev/pts/14: crw-rw-rw- root sys /dev/pts/15: 1 157 0x00000f /dev/pts/15: crw-rw-rw- root sys /dev/pts/16: 1 157 0x000010 /dev/pts/16: crw-rw-rw- root sys /dev/pts/17: 1 157 0x000011 /dev/pts/17: crw-rw-rw- root sys /dev/pts/18: 1 157 0x000012 /dev/pts/18: crw-rw-rw- root sys /dev/pts/19: 1 157 0x000013 /dev/pts/19: crw-rw-rw- root sys /dev/pts/2: 1 157 0x000002 /dev/pts/2: crw-rw-rw- root root /dev/pts/20: 1 157 0x000014 /dev/pts/20: crw-rw-rw- root sys /dev/pts/21: 1 157 0x000015 /dev/pts/21: crw-rw-rw- root sys /dev/pts/22: 1 157 0x000016 /dev/pts/22: crw-rw-rw- root sys /dev/pts/23: 1 157 0x000017 /dev/pts/23: crw-rw-rw- root sys /dev/pts/24: 1 157 0x000018 /dev/pts/24: crw-rw-rw- root sys /dev/pts/25: 1 157 0x000019 /dev/pts/25: crw-rw-rw- root sys /dev/pts/26: 1 157 0x00001a /dev/pts/26: crw-rw-rw- root sys /dev/pts/27: 1 157 0x00001b /dev/pts/27: crw-rw-rw- root sys /dev/pts/28: 1 157 0x00001c /dev/pts/28: crw-rw-rw- root sys /dev/pts/29: 1 157 0x00001d /dev/pts/29: crw-rw-rw- root sys /dev/pts/3: 1 157 0x000003 /dev/pts/3: crw-rw-rw- root sys /dev/pts/30: 1 157 0x00001e /dev/pts/30: crw-rw-rw- root sys /dev/pts/31: 1 157 0x00001f /dev/pts/31: crw-rw-rw- root sys /dev/pts/32: 1 157 0x000020 /dev/pts/32: crw-rw-rw- root sys /dev/pts/33: 1 157 0x000021 /dev/pts/33: crw-rw-rw- root sys /dev/pts/34: 1 157 0x000022 /dev/pts/34: crw-rw-rw- root sys /dev/pts/35: 1 157 0x000023 /dev/pts/35: crw-rw-rw- root sys /dev/pts/36: 1 157 0x000024 /dev/pts/36: crw-rw-rw- root sys /dev/pts/37: 1 157 0x000025 /dev/pts/37: crw-rw-rw- root sys /dev/pts/38: 1 157 0x000026 /dev/pts/38: crw-rw-rw- root sys /dev/pts/39: 1 157 0x000027 /dev/pts/39: crw-rw-rw- root sys /dev/pts/4: 1 157 0x000004 /dev/pts/4: crw-rw-rw- root sys /dev/pts/40: 1 157 0x000028 /dev/pts/40: crw-rw-rw- root sys /dev/pts/41: 1 157 0x000029 /dev/pts/41: crw-rw-rw- root sys /dev/pts/42: 1 157 0x00002a /dev/pts/42: crw-rw-rw- root sys /dev/pts/43: 1 157 0x00002b /dev/pts/43: crw-rw-rw- root sys /dev/pts/44: 1 157 0x00002c /dev/pts/44: crw-rw-rw- root sys /dev/pts/45: 1 157 0x00002d /dev/pts/45: crw-rw-rw- root sys /dev/pts/46: 1 157 0x00002e /dev/pts/46: crw-rw-rw- root sys /dev/pts/47: 1 157 0x00002f /dev/pts/47: crw-rw-rw- root sys /dev/pts/48: 1 157 0x000030 /dev/pts/48: crw-rw-rw- root sys /dev/pts/49: 1 157 0x000031 /dev/pts/49: crw-rw-rw- root sys /dev/pts/5: 1 157 0x000005 /dev/pts/5: crw-rw-rw- root sys /dev/pts/50: 1 157 0x000032 /dev/pts/50: crw-rw-rw- root sys /dev/pts/51: 1 157 0x000033 /dev/pts/51: crw-rw-rw- root sys /dev/pts/52: 1 157 0x000034 /dev/pts/52: crw-rw-rw- root sys /dev/pts/53: 1 157 0x000035 /dev/pts/53: crw-rw-rw- root sys /dev/pts/54: 1 157 0x000036 /dev/pts/54: crw-rw-rw- root sys /dev/pts/55: 1 157 0x000037 /dev/pts/55: crw-rw-rw- root sys /dev/pts/56: 1 157 0x000038 /dev/pts/56: crw-rw-rw- root sys /dev/pts/57: 1 157 0x000039 /dev/pts/57: crw-rw-rw- root sys /dev/pts/58: 1 157 0x00003a /dev/pts/58: crw-rw-rw- root sys /dev/pts/59: 1 157 0x00003b /dev/pts/59: crw-rw-rw- root sys /dev/pts/6: 1 157 0x000006 /dev/pts/6: crw-rw-rw- root sys /dev/pts/7: 1 157 0x000007 /dev/pts/7: crw-rw-rw- root sys /dev/pts/8: 1 157 0x000008 /dev/pts/8: crw-rw-rw- root sys /dev/pts/9: 1 157 0x000009 /dev/pts/9: crw-rw-rw- root sys /dev/pts/t1: 1 19 0x000034 /dev/pts/t1: crw-rw-rw- root sys /dev/pts/t2: 1 19 0x000035 /dev/pts/t2: crw-rw-rw- root sys /dev/pts/t3: 1 19 0x000036 /dev/pts/t3: crw-rw-rw- root sys /dev/pts/t4: 1 19 0x000037 /dev/pts/t4: crw-rw-rw- root sys /dev/pts/t5: 1 19 0x000038 /dev/pts/t5: crw-rw-rw- root sys /dev/pts/t6: 1 19 0x000039 /dev/pts/t6: crw-rw-rw- root sys /dev/pts/t7: 1 19 0x00003a /dev/pts/t7: crw-rw-rw- root sys /dev/pts/t8: 1 19 0x00003b /dev/pts/t8: crw-rw-rw- root sys /dev/pts/tA: 1 19 0x00001a /dev/pts/tA: crw-rw-rw- root sys /dev/pts/tB: 1 19 0x00001b /dev/pts/tB: crw-rw-rw- root sys /dev/pts/tC: 1 19 0x00001c /dev/pts/tC: crw-rw-rw- root sys /dev/pts/tD: 1 19 0x00001d /dev/pts/tD: crw-rw-rw- root sys /dev/pts/tE: 1 19 0x00001e /dev/pts/tE: crw-rw-rw- root sys /dev/pts/tF: 1 19 0x00001f /dev/pts/tF: crw-rw-rw- root sys /dev/pts/tG: 1 19 0x000020 /dev/pts/tG: crw-rw-rw- root sys /dev/pts/tH: 1 19 0x000021 /dev/pts/tH: crw-rw-rw- root sys /dev/pts/tI: 1 19 0x000022 /dev/pts/tI: crw-rw-rw- root sys /dev/pts/tJ: 1 19 0x000023 /dev/pts/tJ: crw-rw-rw- root sys /dev/pts/tK: 1 19 0x000024 /dev/pts/tK: crw-rw-rw- root sys /dev/pts/tL: 1 19 0x000025 /dev/pts/tL: crw-rw-rw- root sys /dev/pts/tM: 1 19 0x000026 /dev/pts/tM: crw-rw-rw- root sys /dev/pts/tN: 1 19 0x000027 /dev/pts/tN: crw-rw-rw- root sys /dev/pts/tO: 1 19 0x000028 /dev/pts/tO: crw-rw-rw- root sys /dev/pts/tP: 1 19 0x000029 /dev/pts/tP: crw-rw-rw- root sys /dev/pts/tQ: 1 19 0x00002a /dev/pts/tQ: crw-rw-rw- root sys /dev/pts/tR: 1 19 0x00002b /dev/pts/tR: crw-rw-rw- root sys /dev/pts/tS: 1 19 0x00002c /dev/pts/tS: crw-rw-rw- root sys /dev/pts/tT: 1 19 0x00002d /dev/pts/tT: crw-rw-rw- root sys /dev/pts/tU: 1 19 0x00002e /dev/pts/tU: crw-rw-rw- root sys /dev/pts/tV: 1 19 0x00002f /dev/pts/tV: crw-rw-rw- root sys /dev/pts/tW: 1 19 0x000030 /dev/pts/tW: crw-rw-rw- root sys /dev/pts/tX: 1 19 0x000031 /dev/pts/tX: crw-rw-rw- root sys /dev/pts/tY: 1 19 0x000032 /dev/pts/tY: crw-rw-rw- root sys /dev/pts/tZ: 1 19 0x000033 /dev/pts/tZ: crw-rw-rw- root sys /dev/pts/ta: 1 19 0x000000 /dev/pts/ta: crw--w---- root tty /dev/pts/tb: 1 19 0x000001 /dev/pts/tb: crw-rw-rw- root root /dev/pts/tc: 1 19 0x000002 /dev/pts/tc: crw-rw-rw- root root /dev/pts/td: 1 19 0x000003 /dev/pts/td: crw-rw-rw- root root /dev/pts/te: 1 19 0x000004 /dev/pts/te: crw-rw-rw- root root /dev/pts/tf: 1 19 0x000005 /dev/pts/tf: crw-rw-rw- root root /dev/pts/tg: 1 19 0x000006 /dev/pts/tg: crw-rw-rw- root root /dev/pts/th: 1 19 0x000007 /dev/pts/th: crw-rw-rw- root root /dev/pts/ti: 1 19 0x000008 /dev/pts/ti: crw-rw-rw- root root /dev/pts/tj: 1 19 0x000009 /dev/pts/tj: crw-rw-rw- root sys /dev/pts/tk: 1 19 0x00000a /dev/pts/tk: crw-rw-rw- root sys /dev/pts/tl: 1 19 0x00000b /dev/pts/tl: crw-rw-rw- root sys /dev/pts/tm: 1 19 0x00000c /dev/pts/tm: crw-rw-rw- root sys /dev/pts/tn: 1 19 0x00000d /dev/pts/tn: crw-rw-rw- root sys /dev/pts/to: 1 19 0x00000e /dev/pts/to: crw-rw-rw- root sys /dev/pts/tp: 1 19 0x00000f /dev/pts/tp: crw-rw-rw- root sys /dev/pts/tq: 1 19 0x000010 /dev/pts/tq: crw-rw-rw- root sys /dev/pts/tr: 1 19 0x000011 /dev/pts/tr: crw-rw-rw- root sys /dev/pts/ts: 1 19 0x000012 /dev/pts/ts: crw-rw-rw- root sys /dev/pts/tt: 1 19 0x000013 /dev/pts/tt: crw-rw-rw- root sys /dev/pts/tu: 1 19 0x000014 /dev/pts/tu: crw-rw-rw- root sys /dev/pts/tv: 1 19 0x000015 /dev/pts/tv: crw-rw-rw- root sys /dev/pts/tw: 1 19 0x000016 /dev/pts/tw: crw-rw-rw- root sys /dev/pts/tx: 1 19 0x000017 /dev/pts/tx: crw-rw-rw- root sys /dev/pts/ty: 1 19 0x000018 /dev/pts/ty: crw-rw-rw- root sys /dev/pts/tz: 1 19 0x000019 /dev/pts/tz: crw-rw-rw- root sys
/dev/pty/ttyp0: 2 17 0x000000 /dev/pty/ttyp0: crw-rw-rw- bin tty /dev/pty/ttyp1: 2 17 0x000001 /dev/pty/ttyp1: crw-rw-rw- bin tty /dev/pty/ttyp2: 2 17 0x000002 /dev/pty/ttyp2: crw-rw-rw- bin tty /dev/pty/ttyp3: 2 17 0x000003 /dev/pty/ttyp3: crw-rw-rw- bin tty /dev/pty/ttyp4: 2 17 0x000004 /dev/pty/ttyp4: crw-rw-rw- bin tty /dev/pty/ttyp5: 2 17 0x000005 /dev/pty/ttyp5: crw-rw-rw- bin tty /dev/pty/ttyp6: 2 17 0x000006 /dev/pty/ttyp6: crw-rw-rw- bin tty /dev/pty/ttyp7: 2 17 0x000007 /dev/pty/ttyp7: crw-rw-rw- bin tty /dev/pty/ttyp8: 2 17 0x000008 /dev/pty/ttyp8: crw-rw-rw- bin tty /dev/pty/ttyp9: 2 17 0x000009 /dev/pty/ttyp9: crw-rw-rw- bin tty /dev/pty/ttypa: 2 17 0x00000a /dev/pty/ttypa: crw-rw-rw- bin tty /dev/pty/ttypb: 2 17 0x00000b /dev/pty/ttypb: crw-rw-rw- bin tty /dev/pty/ttypc: 2 17 0x00000c /dev/pty/ttypc: crw-rw-rw- bin tty /dev/pty/ttypd: 2 17 0x00000d /dev/pty/ttypd: crw-rw-rw- bin tty /dev/pty/ttype: 2 17 0x00000e /dev/pty/ttype: crw-rw-rw- bin tty /dev/pty/ttypf: 2 17 0x00000f /dev/pty/ttypf: crw-rw-rw- bin tty /dev/pty/ttyq0: 2 17 0x000010 /dev/pty/ttyq0: crw-rw-rw- bin tty /dev/pty/ttyq1: 2 17 0x000011 /dev/pty/ttyq1: crw-rw-rw- bin tty /dev/pty/ttyq2: 2 17 0x000012 /dev/pty/ttyq2: crw-rw-rw- bin tty /dev/pty/ttyq3: 2 17 0x000013 /dev/pty/ttyq3: crw-rw-rw- bin tty /dev/pty/ttyq4: 2 17 0x000014 /dev/pty/ttyq4: crw-rw-rw- bin tty /dev/pty/ttyq5: 2 17 0x000015 /dev/pty/ttyq5: crw-rw-rw- bin tty /dev/pty/ttyq6: 2 17 0x000016 /dev/pty/ttyq6: crw-rw-rw- bin tty /dev/pty/ttyq7: 2 17 0x000017 /dev/pty/ttyq7: crw-rw-rw- bin tty /dev/pty/ttyq8: 2 17 0x000018 /dev/pty/ttyq8: crw-rw-rw- bin tty /dev/pty/ttyq9: 2 17 0x000019 /dev/pty/ttyq9: crw-rw-rw- bin tty /dev/pty/ttyqa: 2 17 0x00001a /dev/pty/ttyqa: crw-rw-rw- bin tty /dev/pty/ttyqb: 2 17 0x00001b /dev/pty/ttyqb: crw-rw-rw- bin tty /dev/pty/ttyqc: 2 17 0x00001c /dev/pty/ttyqc: crw-rw-rw- bin tty /dev/pty/ttyqd: 2 17 0x00001d /dev/pty/ttyqd: crw-rw-rw- bin tty /dev/pty/ttyqe: 2 17 0x00001e /dev/pty/ttyqe: crw-rw-rw- bin tty /dev/pty/ttyqf: 2 17 0x00001f /dev/pty/ttyqf: crw-rw-rw- bin tty /dev/pty/ttyr0: 2 17 0x000020 /dev/pty/ttyr0: crw-rw-rw- bin tty /dev/pty/ttyr1: 2 17 0x000021 /dev/pty/ttyr1: crw-rw-rw- bin tty /dev/pty/ttyr2: 2 17 0x000022 /dev/pty/ttyr2: crw-rw-rw- bin tty /dev/pty/ttyr3: 2 17 0x000023 /dev/pty/ttyr3: crw-rw-rw- bin tty /dev/pty/ttyr4: 2 17 0x000024 /dev/pty/ttyr4: crw-rw-rw- bin tty /dev/pty/ttyr5: 2 17 0x000025 /dev/pty/ttyr5: crw-rw-rw- bin tty /dev/pty/ttyr6: 2 17 0x000026 /dev/pty/ttyr6: crw-rw-rw- bin tty /dev/pty/ttyr7: 2 17 0x000027 /dev/pty/ttyr7: crw-rw-rw- bin tty /dev/pty/ttyr8: 2 17 0x000028 /dev/pty/ttyr8: crw-rw-rw- bin tty /dev/pty/ttyr9: 2 17 0x000029 /dev/pty/ttyr9: crw-rw-rw- bin tty /dev/pty/ttyra: 2 17 0x00002a /dev/pty/ttyra: crw-rw-rw- bin tty /dev/pty/ttyrb: 2 17 0x00002b /dev/pty/ttyrb: crw-rw-rw- bin tty /dev/pty/ttyrc: 2 17 0x00002c /dev/pty/ttyrc: crw-rw-rw- bin tty /dev/pty/ttyrd: 2 17 0x00002d /dev/pty/ttyrd: crw-rw-rw- bin tty /dev/pty/ttyre: 2 17 0x00002e /dev/pty/ttyre: crw-rw-rw- bin tty /dev/pty/ttyrf: 2 17 0x00002f /dev/pty/ttyrf: crw-rw-rw- bin tty /dev/pty/ttys0: 1 17 0x000030 /dev/pty/ttys0: crw-rw-rw- bin tty /dev/pty/ttys1: 1 17 0x000031 /dev/pty/ttys1: crw-rw-rw- bin tty /dev/pty/ttys2: 1 17 0x000032 /dev/pty/ttys2: crw-rw-rw- bin tty /dev/pty/ttys3: 1 17 0x000033 /dev/pty/ttys3: crw-rw-rw- bin tty /dev/pty/ttys4: 1 17 0x000034 /dev/pty/ttys4: crw-rw-rw- bin tty /dev/pty/ttys5: 1 17 0x000035 /dev/pty/ttys5: crw-rw-rw- bin tty /dev/pty/ttys6: 1 17 0x000036 /dev/pty/ttys6: crw-rw-rw- bin tty /dev/pty/ttys7: 1 17 0x000037 /dev/pty/ttys7: crw-rw-rw- bin tty /dev/pty/ttys8: 1 17 0x000038 /dev/pty/ttys8: crw-rw-rw- bin tty /dev/pty/ttys9: 1 17 0x000039 /dev/pty/ttys9: crw-rw-rw- bin tty /dev/pty/ttysa: 1 17 0x00003a /dev/pty/ttysa: crw-rw-rw- bin tty /dev/pty/ttysb: 1 17 0x00003b /dev/pty/ttysb: crw-rw-rw- bin tty
/dev/ptym/clone: 1 16 0xffffff /dev/ptym/clone: crw-rw-rw- bin bin /dev/ptym/ptyp0: 2 16 0x000000 /dev/ptym/ptyp0: crw-rw-rw- bin tty /dev/ptym/ptyp1: 2 16 0x000001 /dev/ptym/ptyp1: crw-rw-rw- bin tty /dev/ptym/ptyp2: 2 16 0x000002 /dev/ptym/ptyp2: crw-rw-rw- bin tty /dev/ptym/ptyp3: 2 16 0x000003 /dev/ptym/ptyp3: crw-rw-rw- bin tty /dev/ptym/ptyp4: 2 16 0x000004 /dev/ptym/ptyp4: crw-rw-rw- bin tty /dev/ptym/ptyp5: 2 16 0x000005 /dev/ptym/ptyp5: crw-rw-rw- bin tty /dev/ptym/ptyp6: 2 16 0x000006 /dev/ptym/ptyp6: crw-rw-rw- bin tty /dev/ptym/ptyp7: 2 16 0x000007 /dev/ptym/ptyp7: crw-rw-rw- bin tty /dev/ptym/ptyp8: 2 16 0x000008 /dev/ptym/ptyp8: crw-rw-rw- bin tty /dev/ptym/ptyp9: 2 16 0x000009 /dev/ptym/ptyp9: crw-rw-rw- bin tty /dev/ptym/ptypa: 2 16 0x00000a /dev/ptym/ptypa: crw-rw-rw- bin tty /dev/ptym/ptypb: 2 16 0x00000b /dev/ptym/ptypb: crw-rw-rw- bin tty /dev/ptym/ptypc: 2 16 0x00000c /dev/ptym/ptypc: crw-rw-rw- bin tty /dev/ptym/ptypd: 2 16 0x00000d /dev/ptym/ptypd: crw-rw-rw- bin tty /dev/ptym/ptype: 2 16 0x00000e /dev/ptym/ptype: crw-rw-rw- bin tty /dev/ptym/ptypf: 2 16 0x00000f /dev/ptym/ptypf: crw-rw-rw- bin tty /dev/ptym/ptyq0: 2 16 0x000010 /dev/ptym/ptyq0: crw-rw-rw- bin tty /dev/ptym/ptyq1: 2 16 0x000011 /dev/ptym/ptyq1: crw-rw-rw- bin tty /dev/ptym/ptyq2: 2 16 0x000012 /dev/ptym/ptyq2: crw-rw-rw- bin tty /dev/ptym/ptyq3: 2 16 0x000013 /dev/ptym/ptyq3: crw-rw-rw- bin tty /dev/ptym/ptyq4: 2 16 0x000014 /dev/ptym/ptyq4: crw-rw-rw- bin tty /dev/ptym/ptyq5: 2 16 0x000015 /dev/ptym/ptyq5: crw-rw-rw- bin tty /dev/ptym/ptyq6: 2 16 0x000016 /dev/ptym/ptyq6: crw-rw-rw- bin tty /dev/ptym/ptyq7: 2 16 0x000017 /dev/ptym/ptyq7: crw-rw-rw- bin tty /dev/ptym/ptyq8: 2 16 0x000018 /dev/ptym/ptyq8: crw-rw-rw- bin tty /dev/ptym/ptyq9: 2 16 0x000019 /dev/ptym/ptyq9: crw-rw-rw- bin tty /dev/ptym/ptyqa: 2 16 0x00001a /dev/ptym/ptyqa: crw-rw-rw- bin tty /dev/ptym/ptyqb: 2 16 0x00001b /dev/ptym/ptyqb: crw-rw-rw- bin tty /dev/ptym/ptyqc: 2 16 0x00001c /dev/ptym/ptyqc: crw-rw-rw- bin tty /dev/ptym/ptyqd: 2 16 0x00001d /dev/ptym/ptyqd: crw-rw-rw- bin tty /dev/ptym/ptyqe: 2 16 0x00001e /dev/ptym/ptyqe: crw-rw-rw- bin tty /dev/ptym/ptyqf: 2 16 0x00001f /dev/ptym/ptyqf: crw-rw-rw- bin tty /dev/ptym/ptyr0: 2 16 0x000020 /dev/ptym/ptyr0: crw-rw-rw- bin tty /dev/ptym/ptyr1: 2 16 0x000021 /dev/ptym/ptyr1: crw-rw-rw- bin tty /dev/ptym/ptyr2: 2 16 0x000022 /dev/ptym/ptyr2: crw-rw-rw- bin tty /dev/ptym/ptyr3: 2 16 0x000023 /dev/ptym/ptyr3: crw-rw-rw- bin tty /dev/ptym/ptyr4: 2 16 0x000024 /dev/ptym/ptyr4: crw-rw-rw- bin tty /dev/ptym/ptyr5: 2 16 0x000025 /dev/ptym/ptyr5: crw-rw-rw- bin tty /dev/ptym/ptyr6: 2 16 0x000026 /dev/ptym/ptyr6: crw-rw-rw- bin tty /dev/ptym/ptyr7: 2 16 0x000027 /dev/ptym/ptyr7: crw-rw-rw- bin tty /dev/ptym/ptyr8: 2 16 0x000028 /dev/ptym/ptyr8: crw-rw-rw- bin tty /dev/ptym/ptyr9: 2 16 0x000029 /dev/ptym/ptyr9: crw-rw-rw- bin tty /dev/ptym/ptyra: 2 16 0x00002a /dev/ptym/ptyra: crw-rw-rw- bin tty /dev/ptym/ptyrb: 2 16 0x00002b /dev/ptym/ptyrb: crw-rw-rw- bin tty /dev/ptym/ptyrc: 2 16 0x00002c /dev/ptym/ptyrc: crw-rw-rw- bin tty /dev/ptym/ptyrd: 2 16 0x00002d /dev/ptym/ptyrd: crw-rw-rw- bin tty /dev/ptym/ptyre: 2 16 0x00002e /dev/ptym/ptyre: crw-rw-rw- bin tty /dev/ptym/ptyrf: 2 16 0x00002f /dev/ptym/ptyrf: crw-rw-rw- bin tty /dev/ptym/ptys0: 1 16 0x000030 /dev/ptym/ptys0: crw-rw-rw- bin tty /dev/ptym/ptys1: 1 16 0x000031 /dev/ptym/ptys1: crw-rw-rw- bin tty /dev/ptym/ptys2: 1 16 0x000032 /dev/ptym/ptys2: crw-rw-rw- bin tty /dev/ptym/ptys3: 1 16 0x000033 /dev/ptym/ptys3: crw-rw-rw- bin tty /dev/ptym/ptys4: 1 16 0x000034 /dev/ptym/ptys4: crw-rw-rw- bin tty /dev/ptym/ptys5: 1 16 0x000035 /dev/ptym/ptys5: crw-rw-rw- bin tty /dev/ptym/ptys6: 1 16 0x000036 /dev/ptym/ptys6: crw-rw-rw- bin tty /dev/ptym/ptys7: 1 16 0x000037 /dev/ptym/ptys7: crw-rw-rw- bin tty /dev/ptym/ptys8: 1 16 0x000038 /dev/ptym/ptys8: crw-rw-rw- bin tty /dev/ptym/ptys9: 1 16 0x000039 /dev/ptym/ptys9: crw-rw-rw- bin tty /dev/ptym/ptysa: 1 16 0x00003a /dev/ptym/ptysa: crw-rw-rw- bin tty /dev/ptym/ptysb: 1 16 0x00003b /dev/ptym/ptysb: crw-rw-rw- bin tty
/dev/rdsk/c0t3d0: crw-r----- 1 bin sys 177 0x003000 /dev/rdsk/c0t4d0: crw-r----- 1 bin sys 177 0x004000 /dev/rdsk/c0t5d0: crw-r----- 1 bin sys 177 0x005000 /dev/rdsk/c2t3d0: crw-r----- 1 bin sys 177 0x023000 /dev/rdsk/c2t4d0: crw-r----- 1 bin sys 177 0x024000 /dev/rdsk/c2t5d0: crw-r----- 1 bin sys 177 0x025000 /dev/rdsk/c4t2d0: crw-r----- 1 bin sys 177 0x042000 /dev/rdsk/c4t6d0: crw-r----- 1 bin sys 177 0x046000
/dev/rfloppy/c0t3d0: crw-r----- 1 bin sys 177 0x003000 /dev/rfloppy/c0t4d0: crw-r----- 1 bin sys 177 0x004000 /dev/rfloppy/c0t5d0: crw-r----- 1 bin sys 177 0x005000 /dev/rfloppy/c2t3d0: crw-r----- 1 bin sys 177 0x023000 /dev/rfloppy/c2t4d0: crw-r----- 1 bin sys 177 0x024000 /dev/rfloppy/c2t5d0: crw-r----- 1 bin sys 177 0x025000 /dev/rfloppy/c4t2d0: crw-r----- 1 bin sys 177 0x042000 /dev/rfloppy/c4t6d0: crw-r----- 1 bin sys 177 0x046000
/dev/rmt/0m: crw-rw-rw- 2 bin bin 212 0x040000 /dev/rmt/0mb: crw-rw-rw- 2 bin bin 212 0x040080 /dev/rmt/0mn: crw-rw-rw- 2 bin bin 212 0x040040 /dev/rmt/0mnb: crw-rw-rw- 2 bin bin 212 0x0400c0 /dev/rmt/c4t0d0BEST: crw-rw-rw- 2 bin bin 212 0x040000 /dev/rmt/c4t0d0BESTb: crw-rw-rw- 2 bin bin 212 0x040080 /dev/rmt/c4t0d0BESTn: crw-rw-rw- 2 bin bin 212 0x040040 /dev/rmt/c4t0d0BESTnb: crw-rw-rw- 2 bin bin 212 0x0400c0 /dev/rmt/tape2_config: crw-r--r-- 1 bin bin 212 0xfffffe
/dev/vg00/aap: brw-r----- 1 root sys 64 0x00000b /dev/vg00/group: crw-r----- 1 root sys 64 0x000000 /dev/vg00/lvol1: brw-r----- 1 root sys 64 0x000001 /dev/vg00/lvol10: brw-r----- 1 root sys 64 0x00000a /dev/vg00/lvol2: brw-r----- 1 root sys 64 0x000002 /dev/vg00/lvol3: brw-r----- 1 root sys 64 0x000003 /dev/vg00/lvol4: brw-r----- 1 root sys 64 0x000004 /dev/vg00/lvol5: brw-r----- 1 root sys 64 0x000005 /dev/vg00/lvol6: brw-r----- 1 root sys 64 0x000006 /dev/vg00/lvol7: brw-r----- 1 root sys 64 0x000007 /dev/vg00/lvol8: brw-r----- 1 root sys 64 0x000008 /dev/vg00/lvtest: br--r----- 1 root sys 64 0x000009 /dev/vg00/raap: crw-r----- 1 root sys 64 0x00000b /dev/vg00/rlvol1: crw-r----- 1 root sys 64 0x000001 /dev/vg00/rlvol10: crw-r----- 1 root sys 64 0x00000a /dev/vg00/rlvol2: crw-r----- 1 root sys 64 0x000002 /dev/vg00/rlvol3: crw-r----- 1 root sys 64 0x000003 /dev/vg00/rlvol4: crw-r----- 1 root sys 64 0x000004 /dev/vg00/rlvol5: crw-r----- 1 root sys 64 0x000005 /dev/vg00/rlvol6: crw-r----- 1 root sys 64 0x000006 /dev/vg00/rlvol7: crw-r----- 1 root sys 64 0x000007 /dev/vg00/rlvol8: crw-r----- 1 root sys 64 0x000008 /dev/vg00/rlvtest: cr--r----- 1 root sys 64 0x000009
/dev/vg1m/group: cr--r--r-- 1 root sys 64 0x010000 /dev/vg1m/lv0: brw-r----- 1 root sys 64 0x010002 /dev/vg1m/rlv0: crw-r----- 1 root sys 64 0x010002
/dev/vx/clust: crw-r--r-- 1 root root 100 0x000006 /dev/vx/config: crw-r--r-- 1 root root 100 0x000000 /dev/vx/dmp/c0t3d0: brw------- 1 root root 102 0x000001 /dev/vx/dmp/c0t4d0: brw------- 1 root root 102 0x000002 /dev/vx/dmp/c0t5d0: brw------- 1 root root 102 0x000003 /dev/vx/dmp/c2t3d0: brw------- 1 root root 102 0x000000 /dev/vx/dmp/c2t4d0: brw------- 1 root root 102 0x000004 /dev/vx/dmp/c2t5d0: brw------- 1 root root 102 0x000005 /dev/vx/dmp/c4t6d0: brw------- 1 root root 102 0x000006 /dev/vx/dmpconfig: crw-r--r-- 1 root root 102 0x03ffff /dev/vx/dsk/rootdg/rootvol: brw------- 1 root root 99 0x000005 /dev/vx/dsk/rootvol: brw------- 1 root root 99 0x000005 /dev/vx/dsk/testdg/testvol: brw------- 1 root root 99 0x2a4c20 /dev/vx/info: crw-r--r-- 1 root root 100 0x000003 /dev/vx/iod: crw-r--r-- 1 root root 100 0x000002 /dev/vx/netiod: crw-r--r-- 1 root root 100 0x000007 /dev/vx/rdmp/c0t3d0: crw------- 1 root root 102 0x000001 /dev/vx/rdmp/c0t4d0: crw------- 1 root root 102 0x000002 /dev/vx/rdmp/c0t5d0: crw------- 1 root root 102 0x000003 /dev/vx/rdmp/c2t3d0: crw------- 1 root root 102 0x000000 /dev/vx/rdmp/c2t4d0: crw------- 1 root root 102 0x000004 /dev/vx/rdmp/c2t5d0: crw------- 1 root root 102 0x000005 /dev/vx/rdmp/c4t6d0: crw------- 1 root root 102 0x000006 /dev/vx/rdsk/rootdg/rootvol: crw------- 1 root root 99 0x000005 /dev/vx/rdsk/rootvol: crw------- 1 root root 99 0x000005 /dev/vx/rdsk/testdg/testvol: crw------- 1 root root 99 0x2a4c20 /dev/vx/task: crw-r--r-- 1 root root 100 0x000004 /dev/vx/taskmon: crw-r--r-- 1 root root 100 0x000005 /dev/vx/trace: crw-r--r-- 1 root root 100 0x000001
/dev/vg00/rlvol1: super-block backups (for fsck -b#) at:
16, 2504, 4992, 7480, 9968, 12456, 14944, 17432, 19728, 22216,
24704, 27192, 29680, 32168, 34656, 37144, 39440, 41928, 44416, 46904,
49392, 51880, 54368, 56856, 59152, 61640, 64128, 66616, 69104, 71592,
74080, 76568, 78864, 81352, 83840, 86328, 88816, 91304, 93792, 96280,
98576, 101064, 103552, 106040, 108528, 111016, 113504
diskinfo: SCSI describe of /dev/rdsk/c0t3d0: diskinfo: vendor: HP diskinfo: product id: C3010M1 diskinfo: type: direct access diskinfo: size: 1956086 Kbytes diskinfo: bytes per sector: 512 diskinfo: rev level: 0BP3 diskinfo: blocks per disk: 3912172 diskinfo: ISO version: 0 diskinfo: ECMA version: 0 diskinfo: ANSI version: 2 diskinfo: removable media: no diskinfo: response format: 2 lssf: disc3 card instance 0 SCSI target 3 SCSI LUN 0 section 0 at address 40.3.0 /dev/rdsk/c0t3d0 scsictl: immediate_report = 0; queue_depth = 8 LVM: present PVID:52978B323F49CF11 VGID:52978B323F49CF15
diskinfo: SCSI describe of /dev/rdsk/c0t4d0: diskinfo: vendor: HP diskinfo: product id: C3010M1 diskinfo: type: direct access diskinfo: size: 1956086 Kbytes diskinfo: bytes per sector: 512 diskinfo: rev level: 0BP3 diskinfo: blocks per disk: 3912172 diskinfo: ISO version: 0 diskinfo: ECMA version: 0 diskinfo: ANSI version: 2 diskinfo: removable media: no diskinfo: response format: 2 lssf: disc3 card instance 0 SCSI target 4 SCSI LUN 0 section 0 at address 40.4.0 /dev/rdsk/c0t4d0 scsictl: immediate_report = 0; queue_depth = 8 LVM: absent
diskinfo: SCSI describe of /dev/rdsk/c0t5d0: diskinfo: vendor: HP diskinfo: product id: C3010M1 diskinfo: type: direct access diskinfo: size: 1956086 Kbytes diskinfo: bytes per sector: 512 diskinfo: rev level: 0BW4 diskinfo: blocks per disk: 3912172 diskinfo: ISO version: 0 diskinfo: ECMA version: 0 diskinfo: ANSI version: 2 diskinfo: removable media: no diskinfo: response format: 2 lssf: disc3 card instance 0 SCSI target 5 SCSI LUN 0 section 0 at address 40.5.0 /dev/rdsk/c0t5d0 scsictl: immediate_report = 0; queue_depth = 8 LVM: absent
diskinfo: SCSI describe of /dev/rdsk/c2t3d0: diskinfo: vendor: SEAGATE diskinfo: product id: ST15150N diskinfo: type: direct access diskinfo: size: 4194157 Kbytes diskinfo: bytes per sector: 512 diskinfo: rev level: HP09 diskinfo: blocks per disk: 8388314 diskinfo: ISO version: 0 diskinfo: ECMA version: 0 diskinfo: ANSI version: 2 diskinfo: removable media: no diskinfo: response format: 2 lssf: disc3 card instance 2 SCSI target 3 SCSI LUN 0 section 0 at address 48.3.0 /dev/rdsk/c2t3d0 scsictl: immediate_report = 0; queue_depth = 8 LVM: present PVID:52978B323B25C996 VGID:52978B323B25C997
diskinfo: SCSI describe of /dev/rdsk/c2t4d0: diskinfo: vendor: HP diskinfo: product id: C3010M1 diskinfo: type: direct access diskinfo: size: 1956086 Kbytes diskinfo: bytes per sector: 512 diskinfo: rev level: 0B04 diskinfo: blocks per disk: 3912172 diskinfo: ISO version: 0 diskinfo: ECMA version: 0 diskinfo: ANSI version: 2 diskinfo: removable media: no diskinfo: response format: 2 lssf: disc3 card instance 2 SCSI target 4 SCSI LUN 0 section 0 at address 48.4.0 /dev/rdsk/c2t4d0 scsictl: immediate_report = 0; queue_depth = 8 LVM: absent
diskinfo: SCSI describe of /dev/rdsk/c2t5d0: diskinfo: vendor: HP diskinfo: product id: C3010M1 diskinfo: type: direct access diskinfo: size: 1956086 Kbytes diskinfo: bytes per sector: 512 diskinfo: rev level: 0B04 diskinfo: blocks per disk: 3912172 diskinfo: ISO version: 0 diskinfo: ECMA version: 0 diskinfo: ANSI version: 2 diskinfo: removable media: no diskinfo: response format: 2 lssf: disc3 card instance 2 SCSI target 5 SCSI LUN 0 section 0 at address 48.5.0 /dev/rdsk/c2t5d0 scsictl: immediate_report = 0; queue_depth = 8 LVM: present PVID:52978B323F49E654 VGID:52978B323F49CF15
lssf: disc3 card instance 4 SCSI target 2 SCSI LUN 0 section 0 at address 52.2.0 /dev/rdsk/c4t2d0
diskinfo: SCSI describe of /dev/rdsk/c4t6d0: diskinfo: vendor: HP diskinfo: product id: C2247M1 diskinfo: type: direct access diskinfo: size: 1027432 Kbytes diskinfo: bytes per sector: 512 diskinfo: rev level: 0B04 diskinfo: blocks per disk: 2054864 diskinfo: ISO version: 0 diskinfo: ECMA version: 0 diskinfo: ANSI version: 2 diskinfo: removable media: no diskinfo: response format: 2 lssf: disc3 card instance 4 SCSI target 6 SCSI LUN 0 section 0 at address 52.6.0 /dev/rdsk/c4t6d0 scsictl: immediate_report = 0; queue_depth = 8 LVM: absent
lssf: disc3 card instance 4 SCSI target 2 SCSI LUN 0 section 0 at address 52.2.0 /dev/rdsk/cdrom
Not_Applicable
CS_MACHINE_SERIAL: CLK_TCK: 100 CPU_CHIP_TYPE: 0 HW_CPU_SUPP_BITS: 32 HW_32_64_CAPABLE: 2 KERNEL_BITS: 32
Class I H/W Path Driver S/W State H/W Type Description
===================================================================
bc 0 root CLAIMED BUS_NEXUS
unknown -1 24 UNCLAIMED UNKNOWN HP 36960A - WAN
lan 0 32 fddi UNCLAIMED UNKNOWN HP J2157A - FDDI Interface
ext_bus 0 40 scsi1 CLAIMED INTERFACE HP 28655A - SE SCSI ID=7
target 0 40.3 target CLAIMED DEVICE
disk 0 40.3.0 disc3 CLAIMED DEVICE HP C3010M1
/dev/dsk/c0t3d0 /dev/floppy/c0t3d0 /dev/rdsk/c0t3d0 /dev/rfloppy/c0t3d0
target 1 40.4 target CLAIMED DEVICE
disk 1 40.4.0 disc3 CLAIMED DEVICE HP C3010M1
/dev/dsk/c0t4d0 /dev/floppy/c0t4d0 /dev/rdsk/c0t4d0 /dev/rfloppy/c0t4d0
target 2 40.5 target CLAIMED DEVICE
disk 2 40.5.0 disc3 CLAIMED DEVICE HP C3010M1
/dev/dsk/c0t5d0 /dev/floppy/c0t5d0 /dev/rdsk/c0t5d0 /dev/rfloppy/c0t5d0
ext_bus 1 41 lpr2 CLAIMED INTERFACE HP 28655A - Parallel Interface
/dev/c1t0d0_lp /dev/diag/c1t0d0_lp
ext_bus 2 48 scsi1 CLAIMED INTERFACE HP 28655A - SE SCSI ID=7
target 3 48.3 target CLAIMED DEVICE
disk 3 48.3.0 disc3 CLAIMED DEVICE SEAGATE ST15150N
/dev/dsk/c2t3d0 /dev/floppy/c2t3d0 /dev/rdsk/c2t3d0 /dev/rfloppy/c2t3d0
target 4 48.4 target CLAIMED DEVICE
disk 4 48.4.0 disc3 CLAIMED DEVICE HP C3010M1
/dev/dsk/c2t4d0 /dev/floppy/c2t4d0 /dev/rdsk/c2t4d0 /dev/rfloppy/c2t4d0
target 5 48.5 target CLAIMED DEVICE
disk 5 48.5.0 disc3 CLAIMED DEVICE HP C3010M1
/dev/dsk/c2t5d0 /dev/floppy/c2t5d0 /dev/rdsk/c2t5d0 /dev/rfloppy/c2t5d0
ext_bus 3 49 lpr2 CLAIMED INTERFACE HP 28655A - Parallel Interface
/dev/c3t0d0_lp /dev/diag/c3t0d0_lp
ext_bus 4 52 scsi1 CLAIMED INTERFACE HP 28655A - SE SCSI ID=7
target 6 52.0 target CLAIMED DEVICE
tape 0 52.0.0 tape2 CLAIMED DEVICE HP HP35470A
/dev/diag/rmt/c4t0d0 /dev/rmt/0m /dev/rmt/0mb /dev/rmt/0mn /dev/rmt/0mnb /dev/rmt/c4t0d0BEST /dev/rmt/c4t0d0BESTb /dev/rmt/c4t0d0BESTn /dev/rmt/c4t0d0BESTnb
target 7 52.2 target CLAIMED DEVICE
disk 6 52.2.0 disc3 CLAIMED DEVICE TOSHIBA CD-ROM XM-3301TA
/dev/dsk/c4t2d0 /dev/floppy/c4t2d0 /dev/rdsk/c4t2d0 /dev/rfloppy/c4t2d0
target 8 52.6 target CLAIMED DEVICE
disk 7 52.6.0 disc3 CLAIMED DEVICE HP C2247M1
/dev/dsk/c4t6d0 /dev/floppy/c4t6d0 /dev/rdsk/c4t6d0 /dev/rfloppy/c4t6d0
lanmux 0 56 lanmux0 CLAIMED INTERFACE LAN/Console
tty 0 56.0 mux4 CLAIMED INTERFACE
/dev/diag/mux0 /dev/diag/tty0p0 /dev/diag/tty0p1 /dev/mux0 /dev/tty0p0 /dev/tty0p1
lan 1 56.1 lan3 CLAIMED INTERFACE
/dev/diag/lan1 /dev/ether1 /dev/i4target /dev/lan1
lantty 0 56.2 lantty0 CLAIMED INTERFACE
/dev/diag/lantty0 /dev/lantty0
processor 0 61 processor CLAIMED PROCESSOR Processor
processor 1 62 processor CLAIMED PROCESSOR Processor
memory 0 63 memory CLAIMED MEMORY Memory
-r-xr-xr-x:1:bin:bin:2889:2000-11-14:c720 -r-xr-xr-x:1:bin:bin:2032:2000-09-30:fddi4
11.11
* Drivers and Subsystems DlkmDrv GSCtoPCI PCItoPCI arp asp autofsc btlan cachefsc cb cdfs clone core cxperf dev_config devkrs diag0 diag1 diag2 disc3 dlkm dlpi dmem dmp echo fddi4 ffs gelan hpstreams inet iomem ip kepd kload klog krs lan3 lanmux0 lantty0 lasi ldterm lpr2 lv lvm maclan mux4 netdiag1 netqa nfs_client nfs_core nfs_server nfsm nms nuls pa_generic_psm pa_psm pci pckt pipedev pipemod ptem ptm pts rawip rpcmod sad sc scsi1 sio stcpmap strlog strpty_included strtelnet_included tape2 tape2_included target tcp telm tels timod tirdwr tlclts tlcots tlcotsod token_arp tun udp ufs uipc vol vols vxdmp vxdmp_q4 vxfs vxportal vxvm vxvm_q4 wsio * Kernel Device info dump lvol * Tunable parameters STRMSGSZ 65535 dbc_max_pct 15 dbc_min_pct 15 dnlc_hash_locks 64 maxssiz 0X800000 maxtsiz 0X4000000 nstrpty 60 shmmax 0X4000000
cksum: 2947912216 814
cksum: 4294967295 0
cksum: 4244379524 3373636 $Revision: libaudit.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:44 PDT 2000 $ $Revision: libautofs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:43 PDT 2000 $ $Revision: libbtlan.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:34 PDT 2000 $ $Revision: libcachefs.a: CUPI80_BL2000_1106_2 Mon Nov 6 15:40:04 PST 2000 $ $Revision: libcdfs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:34 PDT 2000 $ $Revision: libclic.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:27 PDT 2000 $ $Revision: libclock-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:38:36 PST 2000 $ $Revision: libdebug.a: CUPI80_BL2000_1026_2 Thu Oct 26 16:24:56 PDT 2000 $ $Revision: libdebug.a: CUPI80_BL2000_1026_2 Thu Oct 26 16:24:56 PDT 2000 $ $Revision: libdevkrs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:27 PDT 2000 $ $Revision: libdlkm-pdk.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:43:26 PDT 2000 $ $Revision: libdlkm.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:27 PDT 2000 $ $Revision: libdump-pdk.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:43:18 PDT 2000 $ $Revision: libfabric-pik.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:17 PDT 2000 $ $Revision: libfddi2-pdk.a: CUPI80_BL2000_1005_2 Thu Oct 5 18:42:49 PDT 2000 $ $Revision: libfddi4.a: vw: vpm_ic27_pcifddi selectors: CUP11_11IC27_BL2000_0929_1 'BE11.11_IC27' 'cup_vpm_ic27_pcifddi' Wed Oct 4 13:52:32 PDT 2000 $ $Revision: libfddicommon.a: vw: lan selectors: CUP11_11IC27_BL2000_0927_1 rchand_fddi02_ic27 'cupi80_ic27base_pb' 'BE11.11_IC27' 'eso_rchand_fddi02_ic27' Wed Oct 4 11:04:53 IST 2000 $ $Revision: libfp-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:38:36 PST 2000 $ $Revision: libfs-pdk.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:43:14 PDT 2000 $ $Revision: libfs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:00 PDT 2000 $ $Revision: libgelan-pdk.a: vw: -proj selectors: CUPI80_BL2000_0824 -c 'Vw for CUPI80_BL2000_0824 build' -- cupi80_bl2000_0824 'CUPI80_BL2000_0824' Fri Aug 25 01:48:35 PDT 2000 $ $Revision: libgelan.a: vw: shirish_ic27a_11.11_PBO selectors: CUP11_11IC27_BL2000_1003_4 'cup_shirish_ic27_11.11' 'BE11.11_IC27' 'cup_shirish_ic27a_11.11_pbo' Tue Oct 10 15:06:52 PDT 2000 $ $Revision: libgraf.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:59 PDT 2000 $ $Revision: libhp-ux.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:53 PDT 2000 $ $Revision: libinet-pdk.a: CUPI80_BL2000_1005_2 Thu Oct 5 18:42:44 PDT 2000 $ $Revision: libinet.a: CUPI80_BL2000_1031_4 Tue Oct 31 17:26:09 PST 2000 $ $Revision: libinit-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:38:23 PST 2000 $ $Revision: libinit.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:47 PDT 2000 $ $Revision: libio-pdk.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:43:13 PDT 2000 $ $Revision: libio.a: CUPI80_BL2000_1106_2 Mon Nov 6 15:39:36 PST 2000 $ $Revision: libipsec.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:38 PDT 2000 $ $Revision: libkgdb-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:38:13 PST 2000 $ $Revision: libkrs-pdk.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:43:04 PDT 2000 $ $Revision: libkrs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:33 PDT 2000 $ $Revision: liblan.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:33 PDT 2000 $ $Revision: liblofs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:31 PDT 2000 $ $Revision: liblvm.a: CUPI80_BL2000_1108_1 Wed Nov 8 02:06:59 PST 2000 $ $Revision: libmaclan.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:28 PDT 2000 $ $Revision: libmtra.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:19 PDT 2000 $ $Revision: libnet.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:25 PDT 2000 $ $Revision: libnfs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:19 PDT 2000 $ $Revision: libnms.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:12 PDT 2000 $ $Revision: libpci.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:12 PDT 2000 $ $Revision: libpdc-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:38:12 PST 2000 $ $Revision: libperf-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:38:08 PST 2000 $ $Revision: libperf.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:07 PDT 2000 $ $Revision: libpm-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:37:48 PST 2000 $ $Revision: libpm.a: CUPI80_BL2000_1030_3 Mon Oct 30 18:54:20 PST 2000 $ $Revision: libpseudo_drivers.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:59 PDT 2000 $ $Revision: libpstat.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:59 PDT 2000 $ $Revision: librdb-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:37:40 PST 2000 $ $Revision: librpc.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:55 PDT 2000 $ $Revision: libscall-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:37:31 PST 2000 $ $Revision: libscall.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:48 PDT 2000 $ $Revision: libshutdown-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:37:19 PST 2000 $ $Revision: libsio.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:55 PDT 2000 $ $Revision: libsioserv.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:47 PDT 2000 $ $Revision: libspmath-pdk.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:42:56 PDT 2000 $ $Revision: libstream.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:41 PDT 2000 $ $Revision: libstrtio.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:33 PDT 2000 $ $Revision: libsvc-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:37:09 PST 2000 $ $Revision: libsvc.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:33 PDT 2000 $ $Revision: libsync-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:36:46 PST 2000 $ $Revision: libtelnet.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:30 PDT 2000 $ $Revision: libtty.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:24 PDT 2000 $ $Revision: libtun.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:24 PDT 2000 $ $Revision: libufs.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:21 PDT 2000 $ $Revision: libuipc.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:17 PDT 2000 $ $Revision: libutil-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:36:39 PST 2000 $ $Revision: libutil.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:40:07 PDT 2000 $ $Revision: libvm-pdk.a: CUPI80_BL2000_1030_1 Mon Oct 30 13:54:42 PST 2000 $ $Revision: libvm.a: CUPI80_BL2000_1106_1 Mon Nov 6 12:17:59 PST 2000 $ $Revision: libvxdmp.a: vw: njl selectors: richie_ic27LR 'CUPI80_11.11_LR' 'BE11.11_IC27' 'njl_vxvm_11i' Tue Nov 21 19:57:32 EST 2000 $ $Revision: libvxfs.a: CUPI80_BL2000_1108_2 Wed Nov 8 10:55:02 PST 2000 $ $Revision: libvxvm.a: vw: njl selectors: richie_ic27LR 'CUPI80_11.11_LR' 'BE11.11_IC27' 'njl_vxvm_11i' Tue Nov 21 19:51:36 EST 2000 $ $Revision: libwsio-pdk.a: vw: -proj selectors: CUPI80_BL2000_1106 -c 'Vw for CUPI80_BL2000_1106 build' -- cupi80_bl2000_1106 'CUPI80_BL2000_1106' Mon Nov 6 20:36:24 PST 2000 $ $Revision: libwsio.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:17:31 PDT 2000 $ $Revision: vmunix: vw: -proj selectors: CUPI80_BL2000_1108 -c 'Vw for CUPI80_BL2000_1108 build' -- cupi80_bl2000_1108 'CUPI80_BL2000_1108' Wed Nov 8 19:05:38 PST 2000 $ $Revision: vmunix: vw: -proj selectors: CUPI80_BL2000_1108 -c 'Vw for CUPI80_BL2000_1108 build' -- cupi80_bl2000_1108 'CUPI80_BL2000_1108' Wed Nov 8 19:05:38 PST 2000 $ /stand/vmunix: A3739A/A3739B PCI FDDI fddi4 libfddi4 B.11.11.01 $Date: 10/04/2000 15:00:00$ Pseudo LLA-MAC retrieval driver ver 1.1 btlan.c unified driver v1.49 2000/02/14 $ gelan 1000Base-SX/T Revision: B.11.11.14 - Oct 10 2000 15:06:29 wsio_olar.c Test Revision1 $
boot_string: disc(48.3.0;0)/stand/vmunix
Character Block Driver Class
0 -1 cn pseudo
2 -1 devkrs pseudo
3 -1 mm pseudo
4 -1 lpr0 printer
5 -1 btlan lan
6 -1 ip pseudo
7 -1 arp pseudo
8 -1 rawip pseudo
10 -1 tcp pseudo
11 -1 udp pseudo
12 -1 stcpmap pseudo
13 -1 nuls pseudo
14 -1 netqa pseudo
15 -1 tun pseudo
16 -1 ptym ptym
17 -1 ptys ptys
18 -1 telm strtelm
19 -1 tels strtels
20 -1 tlclts pseudo
21 -1 tlcots pseudo
22 -1 tlcotsod pseudo
23 -1 btlan0 unknown
25 -1 fcT1_cntl unknown
26 -1 fcp unknown
27 -1 dmem pseudo
28 -1 diag0 diag
31 -1 fddi0 unknown
32 -1 fddi3 unknown
33 -1 fddi4 lan
36 -1 btlan1 unknown
37 -1 pcitr unknown
38 -1 iomem pseudo
44 -1 cxperf pseudo
45 -1 maclan lan
46 -1 netdiag1 unknown
64 64 lv lvm
69 -1 dev_config pseudo
72 -1 clone pseudo
73 -1 strlog pseudo
74 -1 sad pseudo
97 97 vxportal unknown
99 99 vol vxvm
100 100 vols vxvm
102 102 dmp vxvm
116 -1 echo pseudo
119 -1 dlpi pseudo
156 -1 ptm strptym
157 -1 pts strptys
164 -1 pipedev unknown
177 28 disc3 disk
178 -1 mux4 tty
180 -1 lantty0 lantty
183 -1 diag1 diag
185 -1 lan3 lan
189 -1 klog pseudo
207 -1 sy pseudo
212 -1 tape0 tape
227 -1 kepd pseudo
232 -1 diag2 diag
status: /stand/vmunix-/stand/system identical
No module is registered.
No module is registered.
Module Configured Loadable ================================================= CentIf N - CharDrv N - DlkmDrv Y - GSCtoPCI Y - PCItoPCI Y - ac N - arp Y - asio0 N - asp Y - asyncdsk N - asyncdsk_included N - audio N - autofsc Y - autox0 N - beep N - btlan Y - btt N - c720 N - cachefsc Y - cb Y - ccio N - cdfs Y - clone Y - cn N - core Y - cpd N - cxperf Y - dev_config Y - devkrs Y - diag0 Y - diag1 Y - diag2 Y - disc3 Y - dlkm Y - dlpi Y - dm_sample N - dm_sample_fsid N - dmapi N - dmem Y - dmp Y - echo Y - eeprom N - eisa N - esctl N - esdisk N - etest N - fcT1 N - fcT1_cntl N - fcT1_fcp N - fcms N - fcp N - fcp_cdio N - fcparray N - fcpdev N - fcpmux N - fdc N - fddi4 Y - ffs Y - foreign N - framebuf N - gelan Y - graph3 N - hcd N - hid N - hil N - hpstreams Y - hpstreamsqa N - hub N - ica N - idds N - inet Y - install N - iomap N - iomem Y - ip Y - ite N - java N - jolt N - kepd Y - kload Y - klog Y - krio N - krs Y - ktest N - ktestio N - lan2 N - lan3 Y - lanmux0 Y - lantty0 Y - lasi Y - ldterm Y - lmodb N - lmodc N - lmode N - lmodr N - lmodt N - lo N - lofs N - loop N - lpr2 Y - lpr3 N - lv Y - lvm Y - maclan Y - mm N - mux2 N - mux4 Y - netdiag1 Y - netqa Y - nfs_client Y - nfs_core Y - nfs_server Y - nfsm Y - nms Y - nsdiag0 N - nuls Y - onyx N - pa_generic_psm Y - pa_psm Y - pci Y - pckt Y - pepsi N - pflop N - pipedev Y - pipemod Y - pmon N - prm N - ps2 N - ptem Y - ptm Y - pts Y - pty0 N - pty1 N - ram N - rawip Y - rpcmod Y - sad Y - sc Y - schgr N - scsi1 Y - scsi3 N - sctl N - sdisk N - sdm N - sflop N - sio Y - sp N - spt N - spt0 N - ssrfc N - stape N - stcpmap Y - strlog Y - strpty_included Y - strtelnet_included Y - sy N - tape2 Y - tape2_included Y - target Y - tcp Y - telm Y - tels Y - test_weld N - tidg N - timod Y - tirdwr Y - tivc N - tlclts Y - tlcots Y - tlcotsod Y - tlo N - tmx N - token_arp Y - tornade N - ts_1 N - ts_2 N - tun Y - udp Y - ufs Y - uipc Y - usbd N - vol Y - vols Y - vxdmp Y - vxdmp_q4 Y - vxfs Y - vxportal Y - vxvm Y - vxvm_q4 Y - wsio Y -
NSTRBLKSCHED:-:2:2:-:-:-:No NSTREVENT:50:50:50:-:-:-:No NSTRPUSH:16:16:16:-:-:-:No NSTRSCHED:0:0:0:-:-:-:No STRCTLSZ:1024:1024:1024:-:-:-:No STRMSGSZ:65535:65535:0:-:-:-:No acctresume:4:4:4:-:-:-:No acctsuspend:2:2:2:-:-:-:No aio_listio_max:256:256:256:-:-:-:No aio_max_ops:2048:2048:2048:-:-:-:No aio_physmem_pct:10:10:10:-:-:-:No aio_prio_delta_max:20:20:20:-:-:-:No allocate_fs_swapmap:0:0:0:-:-:-:No alwaysdump:0:0:0:-:-:-:No bootspinlocks:-:256:256:-:-:-:No bufcache_hash_locks:128:128:128:-:-:-:No bufpages:0:(NBUF*2):(NBUF*2):-:-:-:No chanq_hash_locks:256:256:256:-:-:-:No core_addshmem_read:0:0:0:-:-:-:Yes core_addshmem_write:0:0:0:-:-:-:Yes create_fastlinks:0:0:0:-:-:-:No dbc_max_pct:15:15:50:-:-:-:No dbc_min_pct:15:15:5:-:-:-:No default_disk_ir:0:0:0:-:-:-:No desfree:-:0:0:-:-:-:No disksort_seconds:0:0:0:-:-:-:No dmp_blk_major:102:102:102:-:-:-:No dmp_char_major:102:102:102:-:-:-:No dmp_rootdev_is_vol:0:0:0:-:-:-:No dmp_swapdev_is_vol:0:0:0:-:-:-:No dnlc_hash_locks:64:64:4*16:-:-:-:No dontdump:0:0:0:-:-:-:No dskless_node:-:0:0:-:-:-:No dst:1:1:1:-:-:-:No effective_maxpid:-:((NPROC<=30000)?30000:(NPROC*5/4)):((NPROC<=30000)?30000:(NPROC*5/4)):-:-:-:No eisa_io_estimate:-:0x300:0x300:-:-:-:No enable_idds:0:0:0:-:-:-:No eqmemsize:15:15:15:-:-:-:No executable_stack:1:1:1:-:-:-:No fcp_large_config:0:0:0:0:-:-:No file_pad:-:10:10:0:-:-:No fs_async:0:0:0:-:-:-:No ftable_hash_locks:64:64:64:-:-:-:No hdlpreg_hash_locks:128:128:128:-:-:-:No hfs_max_ra_blocks:8:8:8:-:-:-:No hfs_max_revra_blocks:8:8:8:-:-:-:No hfs_ra_per_disk:64:64:64:-:-:-:No hfs_revra_per_disk:64:64:64:-:-:-:No hp_hfs_mtra_enabled:1:1:1:-:-:-:No hpux_aes_override:-:0:0:-:-:-:No initmodmax:50:50:50:-:-:-:No io_ports_hash_locks:64:64:64:-:-:-:No iomemsize:-:40000:40000:-:-:-:No ksi_alloc_max:2208:(NPROC*8):(NPROC*8):-:-:-:No ksi_send_max:32:32:32:-:-:-:No lotsfree:-:0:0:-:-:-:No max_async_ports:50:50:50:-:-:-:No max_fcp_reqs:512:512:512:0:-:-:No max_mem_window:0:0:0:-:-:-:No max_thread_proc:64:64:64:-:-:-:No maxdsiz:0x10000000:0x10000000:0x10000000:-:-:-:No maxfiles:60:60:60:0:-:-:No maxfiles_lim:1024:1024:1024:0:-:-:Yes maxqueuetime:-:0:0:-:-:-:No maxssiz:0x800000:0X800000:0x00800000:-:-:-:No maxswapchunks:256:256:256:-:-:-:No maxtsiz:0x4000000:0X4000000:0x04000000:-:-:-:Yes maxuprc:75:75:75:-:-:-:Yes maxusers:32:32:32:-:-:-:No maxvgs:10:10:10:-:-:-:No mesg:1:1:1:-:-:-:No minfree:-:0:0:-:-:-:No modstrmax:500:500:500:-:-:-:No msgmap:42:(2+MSGTQL):(2+MSGTQL):-:-:-:No msgmax:8192:8192:8192:-:-:-:Yes msgmnb:16384:16384:16384:-:-:-:Yes msgmni:50:50:50:-:-:-:No msgseg:2048:2048:2048:-:-:-:No msgssz:8:8:8:-:-:-:No msgtql:40:40:40:-:-:-:No nbuf:0:0:0:-:-:-:No ncallout:515:(16+NKTHREAD):(16+NKTHREAD):-:-:-:No ncdnode:150:150:150:-:-:-:No nclist:612:(100+16*MAXUSERS):(100+16*MAXUSERS):-:-:-:No ncsize:2012:(NINODE+VX_NCSIZE)+(8*DNLC_HASH_LOCKS):(NINODE+VX_NCSIZE)+(8*DNLC_HASH_LOCKS):-:-:-:No ndilbuffers:30:30:30:-:-:-:No netisr_priority:-:-1:-1:-:-:-:No netmemmax:-:0:0:-:-:-:No nfile:910:(16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL)):(16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL)):-:-:-:No nflocks:200:200:200:-:-:-:No nhtbl_scale:0:0:0:-:-:-:No ninode:476:((NPROC+16+MAXUSERS)+32+(2*NPTY)):((NPROC+16+MAXUSERS)+32+(2*NPTY)):-:-:-:No nkthread:499:(((NPROC*7)/4)+16):(((NPROC*7)/4)+16):-:-:-:No nni:-:2:2:-:-:-:No no_lvm_disks:0:0:0:-:-:-:No nproc:276:(20+8*MAXUSERS):(20+8*MAXUSERS):-:-:-:No npty:60:60:60:-:-:-:No nstrpty:60:60:0:-:-:-:No nstrtel:60:60:60:-:-:-:No nswapdev:10:10:10:-:-:-:No nswapfs:10:10:10:1:-:-:No nsysmap:800:((NPROC)>800?2*(NPROC):800):((NPROC)>800?2*(NPROC):800):-:-:-:No o_sync_is_o_dsync:0:0:0:0:-:-:No page_text_to_local:-:0:0:-:-:-:No pfdat_hash_locks:128:128:128:-:-:-:No public_shlibs:1:1:1:-:-:-:No region_hash_locks:128:128:128:-:-:-:No remote_nfs_swap:0:0:0:-:-:-:No rtsched_numpri:32:32:32:-:-:-:No scroll_lines:100:100:100:50:-:-:No scsi_max_qdepth:8:8:8:-:-:-:Yes scsi_maxphys:1048576:1048576:1048576:-:-:-:No sema:1:1:1:-:-:-:No semaem:16384:16384:16384:-:-:-:No semmap:66:(SEMMNI+2):(SEMMNI+2):-:-:-:No semmni:64:64:64:-:-:-:No semmns:128:128:128:-:-:-:No semmnu:30:30:30:-:-:-:No semmsl:2048:2048:2048:-:-:-:Yes semume:10:10:10:-:-:-:No semvmx:32767:32767:32767:-:-:-:No sendfile_max:0:0:0:-:-:-:No shmem:1:1:1:-:-:-:No shmmax:0x4000000:0X4000000:0X4000000:-:-:-:Yes shmmni:200:200:200:-:-:-:No shmseg:120:120:120:-:-:-:Yes spread_UP_drivers:-:1:1:-:-:-:No st_ats_enabled:1:1:1:-:-:-:No st_fail_overruns:0:0:0:-:-:-:No st_large_recs:0:0:0:-:-:-:No streampipes:0:0:0:0:-:-:No swapmem_on:1:1:1:-:-:-:No swchunk:2048:2048:2048:2048:-:-:No sysv_hash_locks:128:128:128:-:-:-:No tcphashsz:0:0:0:-:-:-:No timeslice:10:(100/10):(100/10):-:-:-:No timezone:420:420:420:-:-:-:No unlockable_mem:0:0:0:-:-:-:No vas_hash_locks:128:128:128:-:-:-:No vnode_cd_hash_locks:128:128:128:-:-:-:No vnode_hash_locks:128:128:128:-:-:-:No vol_blk_major:99:99:99:-:-:-:No vol_char_major:99:99:99:-:-:-:No vol_checkpt_default:10240:10240:10240:-:-:-:No vol_default_iodelay:50:50:50:-:-:-:No vol_fmr_logsz:4:4:4:-:-:-:No vol_max_bchain:32:32:32:-:-:-:No vol_max_drv_maj:102:102:102:-:-:-:No vol_max_nconfigs:20:20:20:-:-:-:No vol_max_nlogs:20:20:20:-:-:-:No vol_max_nmpool_sz:4194304:(4*1024*1024):(4*1024*1024):-:-:-:No vol_max_rdback_sz:4194304:(4*1024*1024):(4*1024*1024):-:-:-:No vol_max_vol:8388608:(8*1024*1024):(8*1024*1024):-:-:-:No vol_maxio:256:256:256:-:-:-:No vol_maxioctl:32768:32768:32768:-:-:-:No vol_maxkiocount:2048:2048:2048:-:-:-:No vol_maxparallelio:256:256:256:-:-:-:No vol_maxspecialio:256:256:256:-:-:-:No vol_maxstablebufsize:256:256:256:-:-:-:No vol_mvr_maxround:256:256:256:-:-:-:No vol_rootdev_is_vol:0:0:0:-:-:-:No vol_subdisk_num:4096:4096:4096:-:-:-:No vol_swapdev_is_vol:0:0:0:-:-:-:No volcvm_cluster_size:4:4:4:-:-:-:No voldrl_max_drtregs:2048:2048:2048:-:-:-:No voldrl_min_regionsz:512:512:512:-:-:-:No voliomem_chunk_size:65536:(64*1024):(64*1024):-:-:-:No voliomem_maxpool_sz:4194304:(4*1024*1024):(4*1024*1024):-:-:-:No voliot_errbuf_dflt:16384:16384:16384:-:-:-:No voliot_iobuf_default:8192:8192:8192:-:-:-:No voliot_iobuf_limit:131072:131072:131072:-:-:-:No voliot_iobuf_max:65536:65536:65536:-:-:-:No voliot_max_open:32:32:32:-:-:-:No volraid_rsrtransmax:1:1:1:-:-:-:No vols_blk_major:100:100:100:-:-:-:No vols_char_major:100:100:100:-:-:-:No vps_ceiling:16:16:16:-:-:-:No vps_chatr_ceiling:1048576:1048576:1048576:-:-:-:No vps_pagesize:4:4:4:-:-:-:No vx_fancyra_enable:0:0:0:-:-:-:No vx_maxlink:32767:32767:32767:-:-:-:No vx_ncsize:1024:1024:1024:-:-:-:No vxfs_max_ra_kbytes:1024:1024:1024:-:-:-:No vxfs_ra_per_disk:1024:1024:1024:-:-:-:No vxtask_max_monitors:32:32:32:-:-:-:No
Filesystem kbytes used avail %used Mounted on /dev/vg00/lvol3 143360 69637 69153 50% / /dev/vg00/lvol1 111637 55756 44717 55% /stand /dev/vg00/lvol8 512000 79105 406557 16% /var /dev/vg00/lvol7 1556480 611252 886210 41% /usr /dev/vg00/lvol4 65536 12111 50208 19% /tmp /dev/vg00/lvol6 966656 393002 537861 42% /opt /dev/vg00/lvol5 20480 1219 18058 6% /home
/ on /dev/vg00/lvol3 log /home on /dev/vg00/lvol5 delaylog,nodatainlog /opt on /dev/vg00/lvol6 delaylog,nodatainlog /stand on /dev/vg00/lvol1 defaults /tmp on /dev/vg00/lvol4 delaylog,nodatainlog /usr on /dev/vg00/lvol7 delaylog,nodatainlog /var on /dev/vg00/lvol8 delaylog,nodatainlog
/dev/vg00/lvol1 /stand hfs defaults 0 1 /dev/vg00/lvol3 / vxfs delaylog 0 1 /dev/vg00/lvol4 /tmp vxfs delaylog 0 2 /dev/vg00/lvol5 /home vxfs delaylog 0 2 /dev/vg00/lvol6 /opt vxfs delaylog 0 2 /dev/vg00/lvol7 /usr vxfs delaylog 0 2 /dev/vg00/lvol8 /var vxfs delaylog 0 2
nothing exported
/net -hosts -nosuid,soft
mkfs: mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=4,inosize=256,logsize=1024,nolargefiles /dev/vg00/lvol3 143360 / (/dev/vg00/lvol3 ) : 8192 file system block size 1024 fragment size 143360 total blocks 73723 total free blocks 69153 allocated free blocks 20200 total i-nodes 18427 total free i-nodes 18427 allocated free i-nodes 1073741827 file system id vxfs file system type 0 flags 255 file system name length / file system specific string fsdb: super-block at 00000008.0000 fsdb: magic a501fcf5 version 4 fsdb: ctime 992332204 327468 (Tue Jun 12 08:50:04 2001 WES) fsdb: log_version 9 logstart 0 logend 0 fsdb: bsize 1024 size 143360 dsize 143360 ninode 0 nau 0 fsdb: defiextsize 0 oilbsize 0 immedlen 96 ndaddr 10 fsdb: aufirst 0 emap 0 imap 0 iextop 0 istart 0 fsdb: bstart 0 femap 0 fimap 0 fiextop 0 fistart 0 fbstart 0 fsdb: nindir 2048 aulen 32768 auimlen 0 auemlen 8 fsdb: auilen 0 aupad 0 aublocks 32768 maxtier 15 fsdb: inopb 4 inopau 0 ndiripau 0 iaddrlen 8 bshift 10 fsdb: inoshift 2 bmask fffffc00 boffmask 3ff checksum e0323269 fsdb: free 73723 ifree 1024 fsdb: efree 31 12 19 13 7 7 5 3 3 2 3 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 fsdb: flags 0 mod 0 clean 3c fsdb: time 1118392453 470000 (Fri Jun 10 09:34:13 2005 WES) fsdb: oltext[0] 33 oltext[1] 1282 oltsize 1 fsdb: iauimlen 1 iausize 4 dinosize 256 fsdb: checksum2 62b fsdb: checksum3 0 vxtunefs: Filesystem i/o parameters for / vxtunefs: read_pref_io = 65536 vxtunefs: read_nstream = 1 vxtunefs: read_unit_io = 65536 vxtunefs: write_pref_io = 65536 vxtunefs: write_nstream = 1 vxtunefs: write_unit_io = 65536 vxtunefs: pref_strength = 10 vxtunefs: buf_breakup_size = 131072 vxtunefs: discovered_direct_iosz = 262144 vxtunefs: max_direct_iosz = 131072 vxtunefs: default_indir_size = 8192 vxtunefs: qio_cache_enable = 0 vxtunefs: max_diskq = 1048576 vxtunefs: initial_extent_size = 8 vxtunefs: max_seqio_extent_size = 2048 vxtunefs: max_buf_data_size = 8192
mkfs: mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=4,inosize=256,logsize=1024,nolargefiles /dev/vg00/lvol5 20480 /home (/dev/vg00/lvol5 ) : 8192 file system block size 1024 fragment size 20480 total blocks 19261 total free blocks 18058 allocated free blocks 4844 total i-nodes 4814 total free i-nodes 4814 allocated free i-nodes 1073741829 file system id vxfs file system type 0 flags 255 file system name length /home file system specific string fsdb: super-block at 00000008.0000 fsdb: magic a501fcf5 version 4 fsdb: ctime 992332205 349823 (Tue Jun 12 08:50:05 2001 WES) fsdb: log_version 9 logstart 0 logend 0 fsdb: bsize 1024 size 20480 dsize 20480 ninode 0 nau 0 fsdb: defiextsize 0 oilbsize 0 immedlen 96 ndaddr 10 fsdb: aufirst 0 emap 0 imap 0 iextop 0 istart 0 fsdb: bstart 0 femap 0 fimap 0 fiextop 0 fistart 0 fbstart 0 fsdb: nindir 2048 aulen 32768 auimlen 0 auemlen 8 fsdb: auilen 0 aupad 0 aublocks 32768 maxtier 15 fsdb: inopb 4 inopau 0 ndiripau 0 iaddrlen 8 bshift 10 fsdb: inoshift 2 bmask fffffc00 boffmask 3ff checksum e02ec9bd fsdb: free 19261 ifree 1024 fsdb: efree 3 3 1 2 0 3 1 1 0 1 0 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 fsdb: flags 0 mod 0 clean 3c fsdb: time 1118386799 900000 (Fri Jun 10 07:59:59 2005 WES) fsdb: oltext[0] 33 oltext[1] 1282 oltsize 1 fsdb: iauimlen 1 iausize 4 dinosize 256 fsdb: checksum2 62b fsdb: checksum3 0 vxtunefs: Filesystem i/o parameters for /home vxtunefs: read_pref_io = 65536 vxtunefs: read_nstream = 1 vxtunefs: read_unit_io = 65536 vxtunefs: write_pref_io = 65536 vxtunefs: write_nstream = 1 vxtunefs: write_unit_io = 65536 vxtunefs: pref_strength = 10 vxtunefs: buf_breakup_size = 131072 vxtunefs: discovered_direct_iosz = 262144 vxtunefs: max_direct_iosz = 131072 vxtunefs: default_indir_size = 8192 vxtunefs: qio_cache_enable = 0 vxtunefs: max_diskq = 1048576 vxtunefs: initial_extent_size = 8 vxtunefs: max_seqio_extent_size = 2048 vxtunefs: max_buf_data_size = 8192
mkfs: mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=4,inosize=256,logsize=1024,nolargefiles /dev/vg00/lvol6 966656 /opt (/dev/vg00/lvol6 ) : 8192 file system block size 1024 fragment size 966656 total blocks 573654 total free blocks 537861 allocated free blocks 155716 total i-nodes 143413 total free i-nodes 143413 allocated free i-nodes 1073741830 file system id vxfs file system type 0 flags 255 file system name length /opt file system specific string fsdb: super-block at 00000008.0000 fsdb: magic a501fcf5 version 4 fsdb: ctime 992332205 852057 (Tue Jun 12 08:50:05 2001 WES) fsdb: log_version 9 logstart 0 logend 0 fsdb: bsize 1024 size 966656 dsize 966656 ninode 0 nau 0 fsdb: defiextsize 0 oilbsize 0 immedlen 96 ndaddr 10 fsdb: aufirst 0 emap 0 imap 0 iextop 0 istart 0 fsdb: bstart 0 femap 0 fimap 0 fiextop 0 fistart 0 fbstart 0 fsdb: nindir 2048 aulen 32768 auimlen 0 auemlen 8 fsdb: auilen 0 aupad 0 aublocks 32768 maxtier 15 fsdb: inopb 4 inopau 0 ndiripau 0 iaddrlen 8 bshift 10 fsdb: inoshift 2 bmask fffffc00 boffmask 3ff checksum e0535397 fsdb: free 573654 ifree 1024 fsdb: efree 30 20 8 10 10 6 3 2 3 1 2 0 1 1 0 1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 fsdb: flags 0 mod 0 clean 3c fsdb: time 1118392453 520000 (Fri Jun 10 09:34:13 2005 WES) fsdb: oltext[0] 33 oltext[1] 1538 oltsize 1 fsdb: iauimlen 1 iausize 4 dinosize 256 fsdb: checksum2 72b fsdb: checksum3 0 vxtunefs: Filesystem i/o parameters for /opt vxtunefs: read_pref_io = 65536 vxtunefs: read_nstream = 1 vxtunefs: read_unit_io = 65536 vxtunefs: write_pref_io = 65536 vxtunefs: write_nstream = 1 vxtunefs: write_unit_io = 65536 vxtunefs: pref_strength = 10 vxtunefs: buf_breakup_size = 131072 vxtunefs: discovered_direct_iosz = 262144 vxtunefs: max_direct_iosz = 131072 vxtunefs: default_indir_size = 8192 vxtunefs: qio_cache_enable = 0 vxtunefs: max_diskq = 1048576 vxtunefs: initial_extent_size = 8 vxtunefs: max_seqio_extent_size = 2048 vxtunefs: max_buf_data_size = 8192
mkfs: mkfs -F hfs -L /dev/vg00/lvol1 114688 22 7 8192 1024 16 10 60 6334 /stand (/dev/vg00/lvol1 ) : 8192 file system block size 1024 fragment size 111637 total blocks 55881 total free blocks 44717 allocated free blocks 18048 total i-nodes 17994 total free i-nodes 17994 allocated free i-nodes 1073741825 file system id hfs file system type 0 flags 255 file system name length /stand file system specific string tunefs: super block last mounted on: /stand tunefs: magic 95014 clean FS_OK time Fri Jun 10 09:36:41 2005 tunefs: sblkno 16 cblkno 24 iblkno 32 dblkno 80 tunefs: sbsize 2048 cgsize 2048 cgoffset 24 cgmask 0xfffffff8 tunefs: ncg 47 size 114688 blocks 111637 tunefs: bsize 8192 bshift 13 bmask 0xffffe000 tunefs: fsize 1024 fshift 10 fmask 0xfffffc00 tunefs: frag 8 fragshift 3 fsbtodb 0 tunefs: minfree 10% maxbpg 77 tunefs: maxcontig 1 rotdelay 0ms rps 60 tunefs: csaddr 80 cssize 27648 csshift 9 csmask 0xfffffe00 tunefs: ntrak 7 nsect 22 spc 154 ncyl 745 tunefs: cpg 16 bpg 308 fpg 2464 ipg 384 tunefs: nindir 2048 inopb 64 nspf 1 tunefs: nbfree 6968 ndir 20 nifree 17994 nffree 137 tunefs: cgrotor 21 fmod 0 ronly 0 tunefs: fname fpack tunefs: featurebits 0x1 id 0x0,0x0 tunefs: optimize FS_OPTTIME tunefs: tunefs: cylinders in last group 9 tunefs: blocks in last group 173 tunefs:
mkfs: mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=4,inosize=256,logsize=1024,nolargefiles /dev/vg00/lvol4 65536 /tmp (/dev/vg00/lvol4 ) : 8192 file system block size 1024 fragment size 65536 total blocks 53425 total free blocks 50208 allocated free blocks 13412 total i-nodes 13355 total free i-nodes 13355 allocated free i-nodes 1073741828 file system id vxfs file system type 0 flags 255 file system name length /tmp file system specific string fsdb: super-block at 00000008.0000 fsdb: magic a501fcf5 version 4 fsdb: ctime 992332204 838303 (Tue Jun 12 08:50:04 2001 WES) fsdb: log_version 9 logstart 0 logend 0 fsdb: bsize 1024 size 65536 dsize 65536 ninode 0 nau 0 fsdb: defiextsize 0 oilbsize 0 immedlen 96 ndaddr 10 fsdb: aufirst 0 emap 0 imap 0 iextop 0 istart 0 fsdb: bstart 0 femap 0 fimap 0 fiextop 0 fistart 0 fbstart 0 fsdb: nindir 2048 aulen 32768 auimlen 0 auemlen 8 fsdb: auilen 0 aupad 0 aublocks 32768 maxtier 15 fsdb: inopb 4 inopau 0 ndiripau 0 iaddrlen 8 bshift 10 fsdb: inoshift 2 bmask fffffc00 boffmask 3ff checksum e0379ddc fsdb: free 53425 ifree 1024 fsdb: efree 9 14 11 16 12 15 9 10 6 2 3 4 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 fsdb: flags 0 mod 0 clean 3c fsdb: time 1118392602 910000 (Fri Jun 10 09:36:42 2005 WES) fsdb: oltext[0] 33 oltext[1] 1282 oltsize 1 fsdb: iauimlen 1 iausize 4 dinosize 256 fsdb: checksum2 62b fsdb: checksum3 0 vxtunefs: Filesystem i/o parameters for /tmp vxtunefs: read_pref_io = 65536 vxtunefs: read_nstream = 1 vxtunefs: read_unit_io = 65536 vxtunefs: write_pref_io = 65536 vxtunefs: write_nstream = 1 vxtunefs: write_unit_io = 65536 vxtunefs: pref_strength = 10 vxtunefs: buf_breakup_size = 131072 vxtunefs: discovered_direct_iosz = 262144 vxtunefs: max_direct_iosz = 131072 vxtunefs: default_indir_size = 8192 vxtunefs: qio_cache_enable = 0 vxtunefs: max_diskq = 1048576 vxtunefs: initial_extent_size = 8 vxtunefs: max_seqio_extent_size = 2048 vxtunefs: max_buf_data_size = 8192
mkfs: mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=4,inosize=256,logsize=1024,nolargefiles /dev/vg00/lvol7 1556480 /usr (/dev/vg00/lvol7 ) : 8192 file system block size 1024 fragment size 1556480 total blocks 945228 total free blocks 886210 allocated free blocks 260520 total i-nodes 236307 total free i-nodes 236307 allocated free i-nodes 1073741831 file system id vxfs file system type 0 flags 255 file system name length /usr file system specific string fsdb: super-block at 00000008.0000 fsdb: magic a501fcf5 version 4 fsdb: ctime 992332206 383741 (Tue Jun 12 08:50:06 2001 WES) fsdb: log_version 9 logstart 0 logend 0 fsdb: bsize 1024 size 1556480 dsize 1556480 ninode 0 nau 0 fsdb: defiextsize 0 oilbsize 0 immedlen 96 ndaddr 10 fsdb: aufirst 0 emap 0 imap 0 iextop 0 istart 0 fsdb: bstart 0 femap 0 fimap 0 fiextop 0 fistart 0 fbstart 0 fsdb: nindir 2048 aulen 32768 auimlen 0 auemlen 8 fsdb: auilen 0 aupad 0 aublocks 32768 maxtier 15 fsdb: inopb 4 inopau 0 ndiripau 0 iaddrlen 8 bshift 10 fsdb: inoshift 2 bmask fffffc00 boffmask 3ff checksum e05e2e3c fsdb: free 945228 ifree 1024 fsdb: efree 798 15 6 11 14 6 8 10 6 5 2 1 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 fsdb: flags 0 mod 0 clean 3c fsdb: time 1118387260 490001 (Fri Jun 10 08:07:40 2005 WES) fsdb: oltext[0] 33 oltext[1] 1538 oltsize 1 fsdb: iauimlen 1 iausize 4 dinosize 256 fsdb: checksum2 72b fsdb: checksum3 0 vxtunefs: Filesystem i/o parameters for /usr vxtunefs: read_pref_io = 65536 vxtunefs: read_nstream = 1 vxtunefs: read_unit_io = 65536 vxtunefs: write_pref_io = 65536 vxtunefs: write_nstream = 1 vxtunefs: write_unit_io = 65536 vxtunefs: pref_strength = 10 vxtunefs: buf_breakup_size = 131072 vxtunefs: discovered_direct_iosz = 262144 vxtunefs: max_direct_iosz = 131072 vxtunefs: default_indir_size = 8192 vxtunefs: qio_cache_enable = 0 vxtunefs: max_diskq = 1048576 vxtunefs: initial_extent_size = 8 vxtunefs: max_seqio_extent_size = 2048 vxtunefs: max_buf_data_size = 8192
mkfs: mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=4,inosize=256,logsize=1024,nolargefiles /dev/vg00/lvol8 512000 /var (/dev/vg00/lvol8 ) : 8192 file system block size 1024 fragment size 512000 total blocks 432895 total free blocks 406556 allocated free blocks 113804 total i-nodes 108223 total free i-nodes 108223 allocated free i-nodes 1073741832 file system id vxfs file system type 0 flags 255 file system name length /var file system specific string fsdb: super-block at 00000008.0000 fsdb: magic a501fcf5 version 4 fsdb: ctime 992332206 916689 (Tue Jun 12 08:50:06 2001 WES) fsdb: log_version 9 logstart 0 logend 0 fsdb: bsize 1024 size 512000 dsize 512000 ninode 0 nau 0 fsdb: defiextsize 0 oilbsize 0 immedlen 96 ndaddr 10 fsdb: aufirst 0 emap 0 imap 0 iextop 0 istart 0 fsdb: bstart 0 femap 0 fimap 0 fiextop 0 fistart 0 fbstart 0 fsdb: nindir 2048 aulen 32768 auimlen 0 auemlen 8 fsdb: auilen 0 aupad 0 aublocks 32768 maxtier 15 fsdb: inopb 4 inopau 0 ndiripau 0 iaddrlen 8 bshift 10 fsdb: inoshift 2 bmask fffffc00 boffmask 3ff checksum e0467010 fsdb: free 432895 ifree 2138964832 fsdb: efree 221 149 144 51 34 34 25 21 18 12 9 2 2 0 0 6 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 fsdb: flags 0 mod 0 clean 3c fsdb: time 1118392607 150000 (Fri Jun 10 09:36:47 2005 WES) fsdb: oltext[0] 33 oltext[1] 1282 oltsize 1 fsdb: iauimlen 1 iausize 4 dinosize 256 fsdb: checksum2 62b fsdb: checksum3 0 vxtunefs: Filesystem i/o parameters for /var vxtunefs: read_pref_io = 65536 vxtunefs: read_nstream = 1 vxtunefs: read_unit_io = 65536 vxtunefs: write_pref_io = 65536 vxtunefs: write_nstream = 1 vxtunefs: write_unit_io = 65536 vxtunefs: pref_strength = 10 vxtunefs: buf_breakup_size = 131072 vxtunefs: discovered_direct_iosz = 262144 vxtunefs: max_direct_iosz = 131072 vxtunefs: default_indir_size = 8192 vxtunefs: qio_cache_enable = 0 vxtunefs: max_diskq = 1048576 vxtunefs: initial_extent_size = 8 vxtunefs: max_seqio_extent_size = 2048 vxtunefs: max_buf_data_size = 8192
LVM: vg00 total 272 MB LVM: vg00 /dev/dsk/c2t3d0 272 MB LVM: vg1m total 3818 MB LVM: vg1m /dev/dsk/c0t3d0 1909 MB LVM: vg1m /dev/dsk/c2t5d0 1909 MB
vgdisplay VG Name /dev/vg00 vgdisplay VG Write Access read/write vgdisplay VG Status available vgdisplay Max LV 255 vgdisplay Cur LV 11 vgdisplay Open LV 11 vgdisplay Max PV 16 vgdisplay Cur PV 1 vgdisplay Act PV 1 vgdisplay Max PE per PV 2500 vgdisplay VGDA 2 vgdisplay PE Size (Mbytes) 4 vgdisplay Total PE 1023 vgdisplay Alloc PE 955 vgdisplay Free PE 68 vgdisplay Total PVG 0 vgdisplay Total Spare PVs 0 vgdisplay Total Spare PVs in use 0 raw device: /dev/vg00/aap raw device: /dev/vg00/lvtest raw device: /dev/vg00/lvol10 device-file crw-r----- 1 root sys 64 0x000000 /dev/vg00/group
total 272 MB /dev/dsk/c2t3d0 272 MB Cnt PE Start End /dev/dsk/c2t3d0 68 956 1023
LV FS-type Size Mirrors Mountpoint aap raw 0 MB NO - lvtest raw 8 MB NO - lvol1 hfs 112 MB NO /stand lvol2 swap 512 MB NO - lvol3 vxfs4 140 MB NO / lvol4 vxfs4 64 MB NO /tmp lvol5 vxfs4 20 MB NO /home lvol6 vxfs4 944 MB NO /opt lvol7 vxfs4 1520 MB NO /usr lvol8 vxfs4 500 MB NO /var lvol10 raw 0 MB NO -
LV Disk Cnt PE start end aap - - - - lvtest c2t3d0 2 953 954 lvol1 c2t3d0 28 0 27 lvol2 c2t3d0 128 28 155 lvol3 c2t3d0 35 156 190 lvol4 c2t3d0 16 191 206 lvol5 c2t3d0 5 207 211 lvol6 c2t3d0 236 212 447 lvol7 c2t3d0 380 448 827 lvol8 c2t3d0 125 828 952 lvol10 - - - -
VGsize VGfree PVG Disk Alternate Size Free 4092 MB 272 MB c2t3d0 4092 MB 272 MB
LV Name /dev/vg00/aap VG Name /dev/vg00 LV Permission read-only LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 0 Current LE 0 Allocated PE 0 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default device-file brw-r----- 1 root sys 64 0x00000b /dev/vg00/aap device-file crw-r----- 1 root sys 64 0x00000b /dev/vg00/raap
LV Name /dev/vg00/lvtest VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 8 Current LE 2 Allocated PE 2 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 2 2 device-file br--r----- 1 root sys 64 0x000009 /dev/vg00/lvtest device-file cr--r----- 1 root sys 64 0x000009 /dev/vg00/rlvtest
LV Name /dev/vg00/lvol1 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 112 Current LE 28 Allocated PE 28 Stripes 0 Stripe Size (Kbytes) 0 Bad block off Allocation strict/contiguous IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 28 28 device-file brw-r----- 1 root sys 64 0x000001 /dev/vg00/lvol1 device-file crw-r----- 1 root sys 64 0x000001 /dev/vg00/rlvol1
LV Name /dev/vg00/lvol2 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 512 Current LE 128 Allocated PE 128 Stripes 0 Stripe Size (Kbytes) 0 Bad block off Allocation strict/contiguous IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 128 128 device-file brw-r----- 1 root sys 64 0x000002 /dev/vg00/lvol2 device-file crw-r----- 1 root sys 64 0x000002 /dev/vg00/rlvol2
LV Name /dev/vg00/lvol3 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 140 Current LE 35 Allocated PE 35 Stripes 0 Stripe Size (Kbytes) 0 Bad block off Allocation strict/contiguous IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 35 35 device-file brw-r----- 1 root sys 64 0x000003 /dev/vg00/lvol3 device-file crw-r----- 1 root sys 64 0x000003 /dev/vg00/rlvol3
LV Name /dev/vg00/lvol4 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 64 Current LE 16 Allocated PE 16 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 16 16 device-file brw-r----- 1 root sys 64 0x000004 /dev/vg00/lvol4 device-file crw-r----- 1 root sys 64 0x000004 /dev/vg00/rlvol4
LV Name /dev/vg00/lvol5 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 20 Current LE 5 Allocated PE 5 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 5 5 device-file brw-r----- 1 root sys 64 0x000005 /dev/vg00/lvol5 device-file crw-r----- 1 root sys 64 0x000005 /dev/vg00/rlvol5
LV Name /dev/vg00/lvol6 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 944 Current LE 236 Allocated PE 236 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 236 236 device-file brw-r----- 1 root sys 64 0x000006 /dev/vg00/lvol6 device-file crw-r----- 1 root sys 64 0x000006 /dev/vg00/rlvol6
LV Name /dev/vg00/lvol7 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 1520 Current LE 380 Allocated PE 380 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 380 380 device-file brw-r----- 1 root sys 64 0x000007 /dev/vg00/lvol7 device-file crw-r----- 1 root sys 64 0x000007 /dev/vg00/rlvol7
LV Name /dev/vg00/lvol8 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 500 Current LE 125 Allocated PE 125 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default --- Distribution of logical volume --- PV Name LE on PV PE on PV /dev/dsk/c2t3d0 125 125 device-file brw-r----- 1 root sys 64 0x000008 /dev/vg00/lvol8 device-file crw-r----- 1 root sys 64 0x000008 /dev/vg00/rlvol8
LV Name /dev/vg00/lvol10 VG Name /dev/vg00 LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 0 Current LE 0 Allocated PE 0 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default device-file brw-r----- 1 root sys 64 0x00000a /dev/vg00/lvol10 device-file crw-r----- 1 root sys 64 0x00000a /dev/vg00/rlvol10
PV Name /dev/dsk/c2t3d0 PV Status available Allocatable yes VGDA 2 Cur LV 9 PE Size (Mbytes) 4 Total PE 1023 Free PE 68 Allocated PE 955 Stale PE 0 IO Timeout default Autoswitch On --- Distribution of physical volume --- LV Name LE of LV PE for LV /dev/vg00/lvol1 28 28 /dev/vg00/lvol2 128 128 /dev/vg00/lvol3 35 35 /dev/vg00/lvol4 16 16 /dev/vg00/lvol5 5 5 /dev/vg00/lvol6 236 236 /dev/vg00/lvol7 380 380 /dev/vg00/lvol8 125 125 /dev/vg00/lvtest 2 2
vgdisplay VG Name /dev/vg1m vgdisplay VG Write Access read/write vgdisplay VG Status available vgdisplay Max LV 255 vgdisplay Cur LV 1 vgdisplay Open LV 1 vgdisplay Max PV 16 vgdisplay Cur PV 2 vgdisplay Act PV 2 vgdisplay Max PE per PV 1910 vgdisplay VGDA 4 vgdisplay PE Size (Mbytes) 1 vgdisplay Total PE 3818 vgdisplay Alloc PE 0 vgdisplay Free PE 3818 vgdisplay Total PVG 0 vgdisplay Total Spare PVs 0 vgdisplay Total Spare PVs in use 0 raw device: /dev/vg1m/lv0 device-file cr--r--r-- 1 root sys 64 0x010000 /dev/vg1m/group
total 3818 MB /dev/dsk/c0t3d0 1909 MB Cnt PE Start End /dev/dsk/c0t3d0 1909 1 1909 /dev/dsk/c2t5d0 1909 MB Cnt PE Start End /dev/dsk/c2t5d0 1909 1 1909
LV FS-type Size Mirrors Mountpoint lv0 raw 0 MB NO -
LV Disk Cnt PE start end lv0 - - - -
VGsize VGfree PVG Disk Alternate Size Free 3818 MB 3818 MB c0t3d0 1909 MB 1909 MB c2t5d0 1909 MB 1909 MB
LV Name /dev/vg1m/lv0 VG Name /dev/vg1m LV Permission read/write LV Status available/syncd Mirror copies 0 Consistency Recovery MWC Schedule parallel LV Size (Mbytes) 0 Current LE 0 Allocated PE 0 Stripes 0 Stripe Size (Kbytes) 0 Bad block on Allocation strict IO Timeout (Seconds) default device-file brw-r----- 1 root sys 64 0x010002 /dev/vg1m/lv0 device-file crw-r----- 1 root sys 64 0x010002 /dev/vg1m/rlv0
PV Name /dev/dsk/c0t3d0 PV Status available Allocatable yes VGDA 2 Cur LV 0 PE Size (Mbytes) 1 Total PE 1909 Free PE 1909 Allocated PE 0 Stale PE 0 IO Timeout default Autoswitch On
PV Name /dev/dsk/c2t5d0 PV Status available Allocatable yes VGDA 2 Cur LV 0 PE Size (Mbytes) 1 Total PE 1909 Free PE 1909 Allocated PE 0 Stale PE 0 IO Timeout default Autoswitch On
/etc/lvmtab: /dev/vg00 /etc/lvmtab: /dev/dsk/c2t3d0 /etc/lvmtab: /dev/vg1m /etc/lvmtab: /dev/dsk/c0t3d0 /etc/lvmtab: /dev/dsk/c2t5d0
/usr/conf/lib/liblan.a: $Revision: liblan.a: CUPI80_BL2000_1028_1 Sat Oct 28 12:41:33 PDT 2000 $
status: inactive /etc/gated.conf: rip yes ;
test:\ bf=C2300B:\ hd=/usr/lib/X11/700X/bin:\ hn:\ ht=ether:\ vm=rfc1048:\ ha=080009000000:\ ip=192.30.103.01
192.168.16.14 hpux11i hpux11i.openeyet.nl 127.0.0.1 localhost loopback
c99.qnh.nl
udp tpi_clts v inet udp /dev/udp - tcp tpi_cots_ord v inet tcp /dev/tcp - ticlts tpi_clts v loopback - /dev/tlclts libstraddr.1 ticotsord tpi_cots_ord v loopback - /dev/tlcotsod libstraddr.1 ticots tpi_cots v loopback - /dev/tlcots libstraddr.1
LOG:1:8:1000:/var/adm/nettl:/var/adm/conslog.opts KL:1000:5000:1M:/var/adm/kl:0 SS:127:FORMATTER:12:u:libfmtutil.sl:netfmt:subsys_GENERIC_format:subsys_127_get_options:FORMATTER SS:512:KL_FORMATTER:12:u:libfmtutil.sl:netfmt:subsys_GENERIC_format:subsys_512_get_options:FORMATTER SS:0:NS_LS_LOGGING:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:1:NS_LS_NFT:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:2:NS_LS_LOOPBACK:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:3:NS_LS_NI:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:4:NS_LS_IPC:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:5:NS_LS_SOCKREGD:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:6:NS_LS_TCP:12:s:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:7:NS_LS_PXP:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:8:NS_LS_UDP:12:s:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:9:NS_LS_IP:12:s:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:10:NS_LS_PROBE:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:11:NS_LS_DRIVER:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:LAN/9000 NETWORKING SS:12:NS_LS_RLBD:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:13:NS_LS_BUFS:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:14:NS_LS_CASE21:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:15:NS_LS_ROUTER21:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:16:NS_LS_NFS:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:17:NS_LS_NETISR:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:19:NS_LS_NSE:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:20:NS_LS_STRLOG:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:21:NS_LS_TIRDWR:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:22:NS_LS_TIMOD:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:23:NS_LS_ICMP:12:s:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:26:FILTER:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:27:NAME:12:k:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:29:NS_LS_IGMP:12:s:libnsfmt.sl:nsfmt:subsys_ns_format:subsys_ns_get_options:ARPA/9000 NETWORKING SS:513:KL_VM:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:514:KL_PKM:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:515:KL_DLKM:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:516:KL_PM:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:517:KL_VFS:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:518:KL_VXFS:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:519:KL_UFS:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:520:KL_NFS:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:521:KL_FSVM:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:522:KL_WSIO:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:523:KL_SIO:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:524:KL_NET:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:525:KL_MC:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:526:KL_DYNTUNE:8:k:NULL:klfmt:NULL:NULL:Kernel Logging SS:210:btlan:12:k:libfmtbtlan.sl:fmtbtlan:subsys_btlan_format::100 Mb/s LAN/9000 Networking SS:129:STREAMS:12:k:libstrfmt.sl:strfmt:subsys_streams_format:subsys_streams_get_options:STREAMS/UX SS:176:PCI_FDDI:12:k:libfddifmt4.sl:fddi4:subsys_176_format::PCI_FDDI SS:185:GELAN:12:k:libfmgelan.sl:fmgelan:subsys_gelan_format::Gigabit Ethernet LAN/9000 Networking
loopback 127 arpanet 10 arpa
ip 0 IP # internet protocol, pseudo protocol number icmp 1 ICMP # internet control message protocol igmp 2 IGMP # internet group management protocol ggp 3 GGP # gateway-gateway protocol tcp 6 TCP # transmission control protocol egp 8 EGP # exterior gateway protocol pup 12 PUP # PARC universal packet protocol udp 17 UDP # user datagram protocol hmp 20 HMP # host monitoring protocol xns-idp 22 XNS-IDP # Xerox NS IDP rdp 27 RDP # "reliable datagram" protocol
rpcbind 100000 portmap sunrpc rpcbind rstatd 100001 rstat rup perfmeter rusersd 100002 rusers nfs 100003 nfsprog ypserv 100004 ypprog mountd 100005 mount showmount ypbind 100007 walld 100008 rwall shutdown yppasswdd 100009 yppasswd etherstatd 100010 etherstat rquotad 100011 rquotaprog quota rquota sprayd 100012 spray selection_svc 100015 selnsvc pcnfsd 150001 pcnfs rexd 100017 rex llockmgr 100020 nlockmgr 100021 status 100024 3270_mapper 100013 rje_mapper 100014 database_svc 100016 alis 100018 sched 100019 x25.inr 100022 statmon 100023 bootparam 100026 ypupdated 100028 ypupdate keyserv 100029 keyserver tfsd 100037 nsed 100038 nsemntd 100039 ypxfrd 100069 nisd 100300 rpc.nisd nispasswd 100303 rpc.nispasswdd nis_cachemgr 100301 nisd_resolv 100302 rpc.nisd_resolv automountd 100099 ttdbserver 100083
dtspc allow 127.0.0.1 loopback hpux11i
tcpmux 1/tcp # TCP port multiplexer (RFC 1078) echo 7/tcp # Echo echo 7/udp # discard 9/tcp sink null # Discard discard 9/udp sink null # systat 11/tcp users # Active Users daytime 13/tcp # Daytime daytime 13/udp # qotd 17/tcp quote # Quote of the Day chargen 19/tcp ttytst source # Character Generator chargen 19/udp ttytst source # ftp-data 20/tcp # File Transfer Protocol (Data) ftp 21/tcp # File Transfer Protocol (Control) telnet 23/tcp # Virtual Terminal Protocol smtp 25/tcp # Simple Mail Transfer Protocol time 37/tcp timeserver # Time time 37/udp timeserver # rlp 39/udp resource # Resource Location Protocol whois 43/tcp nicname # Who Is domain 53/tcp nameserver # Domain Name Service domain 53/udp nameserver # bootps 67/udp # Bootstrap Protocol Server bootpc 68/udp # Bootstrap Protocol Client tftp 69/udp # Trivial File Transfer Protocol rje 77/tcp netrjs # private RJE Service finger 79/tcp # Finger http 80/tcp www # World Wide Web HTTP http 80/udp www # World Wide Web HTTP link 87/tcp ttylink # private terminal link kerberos5 88/udp kdc # Kerberos 5 kdc supdup 95/tcp # hostnames 101/tcp hostname # NIC Host Name Server tsap 102/tcp iso_tsap iso-tsap # ISO TSAP (part of ISODE) pop 109/tcp postoffice pop2 # Post Office Protocol - Version 2 pop3 110/tcp pop-3 # Post Office Protocol - Version 3 portmap 111/tcp sunrpc # SUN Remote Procedure Call portmap 111/udp sunrpc # ident 113/tcp authentication # RFC1413 sftp 115/tcp # Simple File Transfer Protocol uucp-path 117/tcp # UUCP Path Service nntp 119/tcp readnews untp # Network News Transfer Protocol ntp 123/udp # Network Time Protocol netbios_ns 137/tcp # NetBIOS Name Service netbios_ns 137/udp # netbios_dgm 138/tcp # NetBIOS Datagram Service netbios_dgm 138/udp # netbios_ssn 139/tcp # NetBIOS Session Service netbios_ssn 139/udp # bftp 152/tcp # Background File Transfer Protocol snmp 161/udp snmpd # Simple Network Management Protocol Agent snmp-trap 162/udp trapd # Simple Network Management Protocol Traps bgp 179/tcp # Border Gateway Protocol pvserver 382/tcp # PV server pvalarm 383/tcp # PV alarm management isakmp 500/tcp isakmp # IPSec Key Management (ISAKMP) isakmp 500/udp isakmp # IPSec Key Management (ISAKMP) biff 512/udp comsat # mail notification exec 512/tcp # remote execution, passwd required login 513/tcp # remote login who 513/udp whod # remote who and uptime shell 514/tcp cmd # remote command, no passwd used syslog 514/udp # remote system logging printer 515/tcp spooler # remote print spooling talk 517/udp # conversation ntalk 518/udp # new talk, conversation efs 520/tcp # Extended file name server route 520/udp router routed # routing information protocol timed 525/udp timeserver # remote clock synchronization tempo 526/tcp newdate # courier 530/tcp rpc # conference 531/tcp chat # netnews 532/tcp readnews # netwall 533/udp # Emergency broadcasting uucp 540/tcp uucpd # uucp daemon klogin 543/tcp # Kerberos rlogin -kfall kshell 544/tcp krcmd # Kerberos remote shell -kfall ekshell 545/tcp krcmd # Kerberos encrypted remote shell -kfall remotefs 556/tcp rfs_server rfs # Brunhoff remote filesystem lansrm 570/udp # SRM/UX Server kerberos 750/tcp kdc # Kerberos (server) tcp -kfall kerberos 750/udp kdc # Kerberos (server) udp -kfall kerberos_master 751/tcp kadmin # Kerberos kadmin krbupdate 760/tcp kreg # Kerberos registration -kfall kpasswd 761/tcp kpwd # Kerberos "passwd" -kfall DAServer 987/tcp # SQL distributed access instl_boots 1067/udp # installation bootstrap protocol server instl_bootc 1068/udp # installation bootstrap protocol client nfsd-keepalive 1110/udp # Client status info nfsd-status 1110/tcp # Cluster status info msql 1111/tcp # Mini SQL database server rlb 1260/tcp # remote loopback diagnostic clvm-cfg 1476/tcp # HA LVM configuration diagmond 1508/tcp # Diagnostic System Manager ingreslock 1524/tcp # nft 1536/tcp # NS network file transfer sna-cs 1553/tcp # SNAplus client/server sna-cs 1553/udp # SNAplus client/server ncpm-pm 1591/udp # NCPM Policy Manager ncpm-hip 1683/udp # NCPM Host Information Provider cvmon 1686/udp # Clusterview cvmon-cvmap communication registrar 1712/tcp # resource monitoring service registrar 1712/udp # resource monitoring service ncpm-ft 1744/udp # NCPM File Transfer psmond 1788/tcp # Predictive Monitor psmond 1788/udp # Hardware Predictive Monitor pmlockd 1889/tcp # SynerVision locking daemon pmlockd 1889/udp # nfsd 2049/tcp # NFS remote file system nfsd 2049/udp # NFS remote file system eklogin 2105/tcp # Kerberos encrypted rlogin -kfall netdist 2106/tcp # update(1m) network distribution service cvmmon 2300/tcp # ClusterView Management cluster support samd 3275/tcp # sam daemon hp-clic 3384/tcp #Cluster Management Services hp-clic 3384/udp #Hardware Management rfa 4672/tcp # NS remote file access veesm 4789/tcp # HP VEE service manager hacl-hb 5300/tcp # High Availability (HA) Cluster heartbeat hacl-gs 5301/tcp # HA Cluster General Services hacl-cfg 5302/tcp # HA Cluster TCP configuration hacl-cfg 5302/udp # HA Cluster UDP configuration hacl-probe 5303/tcp # HA Cluster TCP probe hacl-probe 5303/udp # HA Cluster UDP probe hacl-local 5304/tcp # HA Cluster Commands hacl-test 5305/tcp # HA Cluster Test hpoms-ci-lstn 5403/tcp #SAP spooler support hpoms-dps-lstn 5404/tcp #SAP spooler support hacl-dlm 5408/tcp # HA Cluster distributed lock manager omni 5555/tcp # HP OpenView OmniBack lanmgrx.osB 5696/tcp # LAN Manager/X for B.00.00 OfficeShare r4-sna-cs 5707/tcp # SNA client/server (up to Release 4.1) SNAplus 5708/udp # SNA logical network A (up to Release 4.1) r4-sna-ft 5709/tcp # SNA file transfer (up to Release 4.1) hcserver 5710/tcp # HP Cooperative Services grmd 5999/tcp # graphics resource manager spc 6111/tcp # sub-process control dtspc 6112/tcp #subprocess control SrpSiteDaemon 6178/tcp # acceSS7 Statistics Remote Site query daemon SrpCentralDaemon 6179/tcp # acceSS7 Statistics Central Server query daemon desmevt 6868/tcp # DE/ Services Monitor, Event Service pdclientd 6874/tcp # Palladium print client daemon pdeventd 6875/tcp # Palladium print event daemon iasqlsvr 7489/tcp # Information Access recserv 7815/tcp # SharedX Receiver Service p7_c33upd 8545/tcp #TSD acceSS7 configuration update RPC server p7_c33 8546/tcp #TSD acceSS7 configuration RPC server p7_c32 8547/tcp #TSD acceSS7 communications status RPC server p7_c35 8548/tcp #TSD acceSS7 communications configuration RPC server p7_g06 8549/tcp #TSD acceSS7 application version registration RPC server p7_e30 8550/tcp #TSD acceSS7 event manager RPC server comms_normal 8551/tcp # acceSS7 normal priority messages comms_high 8552/tcp # acceSS7 high priority messages c34_main 8553/udp # acceSS7 Inter-Server messages ftp-ftam 8868/tcp # FTP->FTAM Gateway eusrv 9142/tcp # eusrv daemon mcsemon 9999/tcp # MC/System Environment monitor console 10000/tcp # MC/System Environment console multiplexor hp-sco 19410/tcp # HP SCO port number hp-sco 19410/udp # HP SCO port number hp-sca 19411/tcp # HP SCA port number hp-sca 19411/udp # HP SCA port number actcp 31766/tcp # ACT Call Processing Server erdb_svr 35100/tcp # acceSS7 Statistics Central Database erdb_bck 35101/tcp # acceSS7 Statistics Database Backup
echo 7 discard 9 daytime 13 chargen 19 ftp 21 telnet 23 smtp 25 time 37 http 80 portmap 111 ident 113 135 135 pvserver 382 exec 512 who 513 syslog 514 printer 515 klogin 543 kshell 544 818 818 registrar 1712 nfsd 2049 2121 2121 samd 3275 4045 4045 dtspc 6112 7161 7161 recserv 7815 49152 49152 49153 49153 49154 49154 49155 49155 49156 49156 49157 49157 49159 49159 49164 49164 49170 49170 49172 49172
shared-memory: IPC status from /dev/kmem as of Fri Jun 10 09:37:05 2005 shared-memory: T ID KEY MODE OWNER GROUP CREATOR CGROUP NATTCH SEGSZ CPID LPID ATIME DTIME CTIME shared-memory: Shared Memory: shared-memory: m 0 0x411c05c2 --rw-rw-rw- root root root root 0 348 408 408 8:05:02 8:05:02 8:04:55 shared-memory: m 1 0x4e0c0002 --rw-rw-rw- root root root root 2 61760 408 410 8:05:15 8:05:02 8:04:55 shared-memory: m 2 0x412005a4 --rw-rw-rw- root root root root 2 8192 408 410 8:05:15 8:04:55 8:04:55 shared-memory: m 3 0x301c3de0 --rw-rw-rw- root root root root 2 1048576 907 933 8:05:48 no-entry 8:05:42 shared-memory: m 4 0x00000000 D-rw------- root root root root 3 213272 1182 1182 8:06:28 no-entry 8:06:28 message-queue: IPC status from /dev/kmem as of Fri Jun 10 09:37:05 2005 message-queue: T ID KEY MODE OWNER GROUP CREATOR CGROUP CBYTES QNUM QBYTES LSPID LRPID STIME RTIME CTIME message-queue: Message Queues: message-queue: q 0 0x3c1c054b -Rrw--w--w- root root root root 0 0 16384 0 0 no-entry no-entry 8:04:53 message-queue: q 1 0x3e1c054b --rw-r--r-- root root root root 0 0 264 0 0 no-entry no-entry 8:04:53 semaphores: IPC status from /dev/kmem as of Fri Jun 10 09:37:05 2005 semaphores: T ID KEY MODE OWNER GROUP CREATOR CGROUP NSEMS OTIME CTIME semaphores: Semaphores: semaphores: s 0 0x411c05c2 --ra-ra-ra- root root root root 1 8:05:02 8:04:55 semaphores: s 1 0x4e0c0002 --ra-ra-ra- root root root root 2 8:04:59 8:04:55 semaphores: s 2 0x412005a4 --ra-ra-ra- root root root root 2 8:05:15 8:04:55 semaphores: s 3 0x00446f6e --ra-r--r-- root root root root 1 no-entry 8:05:09 semaphores: s 4 0x00446f6d --ra-r--r-- root root root root 1 no-entry 8:05:09 semaphores: s 5 0x01090522 --ra-r--r-- root root root root 1 no-entry 8:05:11 semaphores: s 6 0x311c3de0 --ra-ra-ra- root root root root 1 8:05:49 8:05:42 semaphores: s 7 0x42a93bcc --ra-ra-ra- root root root root 1 no-entry 8:05:48 semaphores: s 8 0x42a93bcd --ra-ra-ra- root root root root 1 8:05:49 8:05:48 semaphores: s 9 0x45181937 --ra-ra-ra- root root root root 1 no-entry 8:06:18 semaphores: s 10 0x41181937 --ra-ra-ra- root root root root 1 no-entry 8:06:18 semaphores: s 75 0x410c01e9 --ra-ra-ra- root root root root 1 8:06:27 8:06:27 semaphores: s 12 0x00000000 --ra------- root root root root 1 no-entry 8:06:28 semaphores: s 13 0x00000000 --ra------- www other root root 1 8:06:28 8:06:28
nslookup: Name Server: c99.openeyet.nl nslookup: Address: 192.168.16.1 nslookup: Trying DNS nslookup: Name: hpux11i.openeyet.nl nslookup: Address: 192.168.16.14
domain: binding: is-master-server: 0 is-slave-server: 0 is-client: 0
nobody c3d91f44568fbbefada50d336d9bd67b16e7016f987bb607
Use "passwd" for map "passwd.byname" Use "group" for map "group.byname" Use "networks" for map "networks.byaddr" Use "hosts" for map "hosts.byaddr" Use "protocols" for map "protocols.bynumber" Use "services" for map "services.byname" Use "aliases" for map "mail.aliases" Use "ethers" for map "ethers.byname"
status: inactive version: /usr/sbin/named: version: named 8.1.2 Tue Feb 15 06:58:53 GMT 2000
0001: domain openeyet.nl 0002: nameserver 192.168.16.1
chargen dgram udp nowait root internal chargen stream tcp nowait root internal daytime dgram udp nowait root internal daytime stream tcp nowait root internal discard dgram udp nowait root internal discard stream tcp nowait root internal dtspc stream tcp nowait root /usr/dt/bin/dtspcd /usr/dt/bin/dtspcd echo dgram udp nowait root internal echo stream tcp nowait root internal exec stream tcp nowait root /usr/lbin/rexecd rexecd ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l ident stream tcp wait bin /usr/lbin/identd identd instl_boots dgram udp wait root /opt/ignite/lbin/instl_bootd instl_bootd klogin stream tcp nowait root /usr/lbin/rlogind rlogind -K kshell stream tcp nowait root /usr/lbin/remshd remshd -K login stream tcp nowait root /usr/lbin/rlogind rlogind ntalk dgram udp wait root /usr/lbin/ntalkd ntalkd printer stream tcp nowait root /usr/sbin/rlpdaemon rlpdaemon -i recserv stream tcp nowait root /usr/lbin/recserv recserv -display :0 registrar stream tcp nowait root /etc/opt/resmon/lbin/registrar /etc/opt/resmon/lbin/registrar rpc xti tcp swait root /usr/dt/bin/rpc.ttdbserver 100083 1 /usr/dt/bin/rpc.ttdbserver shell stream tcp nowait root /usr/lbin/remshd remshd telnet stream tcp nowait root /usr/lbin/telnetd telnetd tftp dgram udp wait root /usr/lbin/tftpd tftpd\ /opt/ignite\ /var/opt/ignite time stream tcp nowait root internal
------------------------------------------------------------------------------- Hardware Station Crd Hdw Net-Interface NM MAC HP-DLPI DLPI Path Address In# State NamePPA ID Type Support Mjr# 56.1 0x0800095405F7 1 UP lan1 snap1 1 ETHER Yes 119 Extended Station LLC Encapsulation Address Methods 0x0800095405F7 IEEE HPEXTIEEE SNAP ETHER NOVELL Driver Specific Information lan3 -------------------------------------------------------------------------------
ifconfig: lan1: flags=843<UP,BROADCAST,RUNNING,MULTICAST> ifconfig: inet 192.168.16.14 netmask ffffff00 broadcast 192.168.16.255 netstat: Name Mtu Network Address netstat: lan1 1500 192.168.16.0 192.168.16.14 lanadmin: Station Address = 0x0800095405f7 lanadmin: MTU Size = 1500 lanadmin: Speed = 10000000
hpux11i hpux11i
rpcbind rpc keyserv keyserv autofs autofs statd statd lockd lockd nfs nfs
hpux11i hpux11i
rpcbind rpc keyserv keyserv autofs autofs statd statd lockd lockd nfs nfs
hpux11i hpux11i
rpcbind rpc keyserv keyserv autofs autofs statd statd lockd lockd nfs nfs
program vers proto service 100000 2 tcp rpcbind 100000 2 udp rpcbind 100000 3 tcp rpcbind 100000 3 udp rpcbind 100000 4 tcp rpcbind 100000 4 udp rpcbind 100003 2 tcp nfs 100003 2 udp nfs 100003 3 tcp nfs 100003 3 udp nfs 100005 1 tcp mountd 100005 1 udp mountd 100005 3 tcp mountd 100005 3 udp mountd 100020 1 tcp llockmgr 100020 1 udp llockmgr 100021 1 tcp nlockmgr 100021 1 udp nlockmgr 100021 2 tcp nlockmgr 100021 3 tcp nlockmgr 100021 3 udp nlockmgr 100021 4 tcp nlockmgr 100021 4 udp nlockmgr 100024 1 tcp status 100024 1 udp status 100083 1 tcp ttdbserver
arp_debug: 0 arp_cleanup_interval: 300000 arp_dl_sap: 2054 arp_dl_snap_sap: 170 arp_probe_count: 0 arp_announce_count: 1 arp_resend_interval: 2000 arp_defend_interval: 0 arp_redefend_interval: 5000
ip_fragment_timeout: 60000 ip_loopback_bypass: 0 ip_reass_mem_limit: 2000000 ip_forwarding: 2 ip_respond_to_address_mask_broadcast: 0 ip_respond_to_echo_broadcast: 1 ip_respond_to_timestamp: 0 ip_respond_to_timestamp_broadcast: 0 ip_send_redirects: 1 ip_forward_directed_broadcasts: 1 ip_debug: 0 ip_mrtdebug: 0 ip_ire_cleanup_interval: 300000 ip_ire_flush_interval: 1200000 ip_ire_redirect_interval: 300000 ip_def_ttl: 255 ip_forward_src_routed: 1 ip_wroff_extra: 32 ip_local_cksum: 0 ip_ire_pathmtu_interval: 600000 ip_icmp_return_data_bytes: 64 ip_send_source_quench: 1 ip_dl_sap: 2048 ip_dl_snap_sap: 170 ip_bogus_sap: 1800 ip_encap_ttl: 64 ip_encap_mc_only: 1 ip_ire_gw_probe: 1 ip_ire_gw_probe_interval: 180000 ip_check_subnet_addr: 0 ip_strong_es_model: 0 ip_max_bcast_ttl: 1 ip_pmtu_strategy: 1
tcp_time_wait_interval: 60000 tcp_conn_request_max: 20 tcp_conn_grace_period: 500 tcp_debug: 0 tcp_smallest_nonpriv_port: 1024 tcp_ip_abort_cinterval: 75000 tcp_ip_abort_interval: 600000 tcp_ip_notify_cinterval: 10000 tcp_ip_notify_interval: 10000 tcp_ip_ttl: 64 tcp_ip6_hop_limit: 64 tcp_keepalive_interval: 7200000 tcp_mss_def: 536 tcp_mss_max: 65495 tcp_mss_min: 108 tcp_naglim_def: 65535 tcp_old_urp_interpretation: 1 tcp_rexmit_interval_initial: 1500 tcp_rexmit_interval_max: 60000 tcp_rexmit_interval_min: 500 tcp_wroff_xtra: 32 tcp_deferred_ack_interval: 50 tcp_deferred_ack_max: 22 tcp_snd_lowat_fraction: 0 tcp_sth_rcv_hiwat: 0 tcp_sth_rcv_lowat: 0 tcp_dupack_fast_retransmit: 3 tcp_rwin_credit_pct: 50 tcp_rcv_push_wait: 16384 tcp_keepalives_kill: 1 tcp_smallest_anon_port: 49152 tcp_largest_anon_port: 65535 tcp_keepalive_detached_interval: 120000 tcp_text_in_resets: 1 tcp_xmit_hiwater_def: 32768 tcp_xmit_lowater_def: 8192 tcp_recv_hiwater_def: 32768 tcp_xmit_hiwater_lfp: 65536 tcp_xmit_lowater_lfp: 16384 tcp_recv_hiwater_lfp: 65536 tcp_xmit_hiwater_lnp: 8192 tcp_xmit_lowater_lnp: 2048 tcp_recv_hiwater_lnp: 8192 tcp_rexmit_interval_initial_lnp: 1500 tcp_syn_rcvd_max: 500 tcp_tw_cleanup_interval: 60000 tcp_do_conn_options: 1 tcp_fin_wait_2_timeout: 0 tcp_ts_enable: 2 tcp_sack_enable: 2 tcp_xmit_hiwater_max: 2147483647 tcp_recv_hiwater_max: 1073725440 tcp_cwnd_initial: 4 tcp_spec_port: 80 tcp_smoothed_rtt: 1
udp_wroff_extra: 32 udp_def_ttl: 64 udp_smallest_nonpriv_port: 1024 udp_do_checksum: 1 udp_smallest_anon_port: 49152 udp_largest_anon_port: 65535 udp_pass_up_options: 0 udp_pass_up_icmp: 2 udp_def_hop_limit: 64 udp_pass_up_icmp6: 1 udp_recv_hiwater_max: 2147483647 udp_debug: 0
routing:tables:: dest/netmask:gateway:flags:interface localhost/255.255.255.255:localhost:uh:lo0 hpux11i.openeyet.nl/255.255.255.255:hpux11i.openeyet.nl:uh:lan1 192.168.16.0/255.255.255.0:hpux11i.openeyet.nl:u:lan1 127.0.0.0/255.0.0.0:localhost:u:lo0 default/*:c007.openeyet.nl:ug:lan1
; commentaar
-D APACHE_MPM_DIR="%s" -D APR_HAS_SENDFILE -D APR_HAS_MMAP -D APR_USE_SYSVSEM_SERIALIZE -D APR_USE_PTHREAD_SERIALIZE -D APR_HAS_OTHER_CHILD -D AP_HAVE_RELIABLE_PIPED_LOGS -D HTTPD_ROOT="/opt/apache2" -D SUEXEC_BIN="/opt/apache2/bin/suexec" -D DEFAULT_ERRORLOG="logs/error_log" -D SERVER_CONFIG_FILE="etc/httpd.conf"
ServerRoot "/opt/apache2"
<IfModule !mpm_winnt.c>
<IfModule !mpm_netware.c>
</IfModule>
</IfModule>
<IfModule !mpm_netware.c>
<IfModule !perchild.c>
</IfModule>
</IfModule>
<IfModule !mpm_netware.c>
PidFile adm/httpd.pid
</IfModule>
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
<IfModule prefork.c>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
<IfModule perchild.c>
NumServers 5
StartThreads 5
MinSpareThreads 5
MaxSpareThreads 10
MaxThreadsPerChild 20
MaxRequestsPerChild 0
</IfModule>
<IfModule mpm_winnt.c>
ThreadsPerChild 250
MaxRequestsPerChild 0
</IfModule>
<IfModule beos.c>
StartThreads 10
MaxClients 50
MaxRequestsPerThread 10000
</IfModule>
<IfModule mpm_netware.c>
ThreadStackSize 65536
StartThreads 250
MinSpareThreads 25
MaxSpareThreads 250
MaxThreads 1000
MaxRequestsPerChild 0
</IfModule>
Listen 80
LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so
LoadModule auth_anon_module modules/mod_auth_anon.so
LoadModule auth_dbm_module modules/mod_auth_dbm.so
LoadModule include_module modules/mod_include.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule env_module modules/mod_env.so
LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule unique_id_module modules/mod_unique_id.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule status_module modules/mod_status.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule asis_module modules/mod_asis.so
LoadModule info_module modules/mod_info.so
LoadModule cgid_module modules/mod_cgid.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule dir_module modules/mod_dir.so
LoadModule imap_module modules/mod_imap.so
LoadModule actions_module modules/mod_actions.so
LoadModule speling_module modules/mod_speling.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
<IfModule !mpm_winnt.c>
<IfModule !mpm_netware.c>
User www
Group other
</IfModule>
</IfModule>
ServerAdmin you@your.address
UseCanonicalName Off
DocumentRoot "/opt/apache2/lib/htdocs"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/opt/apache2/lib/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "/opt/apache2/lib/htdocs/applications/scc">
Options -Indexes FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
ScriptAliasMatch "^/(.*)/cgi-bin/scc-wrapper.cgi" "/var/opt/scc-srv/data/www/$1/cgi-bin/scc-wrapper.cgi"
UserDir public_html
DirectoryIndex index.html index.html.var
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
TypesConfig etc/mime.types
DefaultType text/plain
<IfModule mod_mime_magic.c>
MIMEMagicFile etc/magic
</IfModule>
HostnameLookups Off
ErrorLog adm/error_log
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog adm/access_log common
ServerSignature On
Alias /icons/ "/opt/apache2/lib/icons/"
<Directory "/opt/apache2/lib/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
Alias /manual "/opt/apache2/lib/manual"
<Directory "/opt/apache2/lib/manual">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin/ "/opt/apache2/lib/cgi-bin/"
<IfModule mod_cgid.c>
</IfModule>
<Directory "/opt/apache2/lib/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
IndexOptions FancyIndexing VersionSort
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
DefaultIcon /icons/unknown.gif
ReadmeName README.html
HeaderName HEADER.html
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .et
AddLanguage fr .fr
AddLanguage de .de
AddLanguage he .he
AddLanguage el .el
AddLanguage it .it
AddLanguage ja .ja
AddLanguage pl .po
AddLanguage kr .kr
AddLanguage pt .pt
AddLanguage nn .nn
AddLanguage no .no
AddLanguage pt-br .pt-br
AddLanguage ltz .ltz
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .se
AddLanguage cz .cz
AddLanguage ru .ru
AddLanguage tw .tw
AddLanguage zh-tw .tw
AddLanguage hr .hr
LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ltz ca es sv tw
ForceLanguagePriority Prefer Fallback
AddDefaultCharset ISO-8859-1
AddCharset ISO-8859-1 .iso8859-1 .latin1
AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen
AddCharset ISO-8859-3 .iso8859-3 .latin3
AddCharset ISO-8859-4 .iso8859-4 .latin4
AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru
AddCharset ISO-8859-6 .iso8859-6 .latin6 .arb
AddCharset ISO-8859-7 .iso8859-7 .latin7 .grk
AddCharset ISO-8859-8 .iso8859-8 .latin8 .heb
AddCharset ISO-8859-9 .iso8859-9 .latin9 .trk
AddCharset ISO-2022-JP .iso2022-jp .jis
AddCharset ISO-2022-KR .iso2022-kr .kis
AddCharset ISO-2022-CN .iso2022-cn .cis
AddCharset Big5 .Big5 .big5
AddCharset WINDOWS-1251 .cp-1251 .win-1251
AddCharset CP866 .cp866
AddCharset KOI8-r .koi8-r .koi8-ru
AddCharset KOI8-ru .koi8-uk .ua
AddCharset ISO-10646-UCS-2 .ucs2
AddCharset ISO-10646-UCS-4 .ucs4
AddCharset UTF-8 .utf8
AddCharset GB2312 .gb2312 .gb
AddCharset utf-7 .utf7
AddCharset utf-8 .utf8
AddCharset big5 .big5 .b5
AddCharset EUC-TW .euc-tw
AddCharset EUC-JP .euc-jp
AddCharset EUC-KR .euc-kr
AddCharset shift_jis .sjis
AddType application/x-tar .tgz
AddHandler type-map var
<IfModule mod_negotiation.c>
<IfModule mod_include.c>
Alias /error/ "/opt/apache2/lib/error/"
<Directory "/opt/apache2/lib/error">
AllowOverride None
Options IncludesNoExec
AddOutputFilter Includes html
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority en es de fr
ForceLanguagePriority Prefer Fallback
</Directory>
ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
ErrorDocument 410 /error/HTTP_GONE.html.var
ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.var
ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
</IfModule>
</IfModule>
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
<IfModule mod_ssl.c>
Include etc/ssl.conf
</IfModule>
<IfDefine SSL>
Listen 443
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
SSLPassPhraseDialog builtin
SSLSessionCache dbm:logs/ssl_scache
SSLSessionCacheTimeout 300
SSLMutex file:logs/ssl_mutex
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
SSLLog logs/ssl_engine_log
SSLLogLevel info
<VirtualHost _default_:443>
DocumentRoot "/opt/apache2/htdocs"
ServerName new.host.name:443
ServerAdmin you@your.address
ErrorLog logs/error_log
TransferLog logs/access_log
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /opt/apache2/conf/ssl.crt/server.crt
SSLCertificateKeyFile /opt/apache2/conf/ssl.key/server.key
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/opt/apache2/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
</IfDefine>
HP92453-01 A.11.01.21 HP C (Bundled) Compiler
/var/adm/cron/queuedefs: a.4j1n /var/adm/cron/queuedefs: b.2j2n90w /var/adm/cron/.proto: cd $d /var/adm/cron/.proto: ulimit $l /var/adm/cron/.proto: umask $m /var/adm/cron/.proto: $< /var/adm/cron/at.allow: adm /var/adm/cron/at.allow: root /var/adm/cron/at.allow: sys /var/adm/cron/at.allow: uucp /var/adm/cron/cron.allow: adm /var/adm/cron/cron.allow: root /var/adm/cron/cron.allow: uucp
0 0 * * * /opt/scc/bin/scc -s scc-transfer
05,15,25,35,45,55 * * * * /usr/sbin/dmesg - >>/var/adm/messages
Contacting Registrar on hpux11i NAME: / DESCRIPTION: This is the top level of the Resource Dictionary TYPE: / is a Resource Class. There are 3 resources configured below /: Resource Class /system /cluster /net
# No graphics found on this system #NIS_DOMAIN_NAME not configured ARCH 800 DNS_IP_ADDR 192.168.16.1 DOM "June 12, 2001, 05:48:40 EDT" DOMAIN_NAME openeyet.nl GATEWAY 192.168.16.7 HOSTNAME hpux11i HW_BIT 32 IGNITE_REVISION B.3.0.502 INCLUDE STRMSGSZ 65535 INCLUDE dbc_max_pct 15 INCLUDE dbc_min_pct 15 INCLUDE dnlc_hash_locks 64 INCLUDE maxssiz 0X800000 INCLUDE maxtsiz 0X4000000 INCLUDE nstrpty 60 INCLUDE shmmax 0X4000000 INTERFACE ext_bus 40 scsi1 "HP 28655A - SE SCSI ID=7 " INTERFACE ext_bus 41 lpr2 "HP 28655A - Parallel Interface " INTERFACE ext_bus 48 scsi1 "HP 28655A - SE SCSI ID=7 " INTERFACE ext_bus 49 lpr2 "HP 28655A - Parallel Interface " INTERFACE ext_bus 52 scsi1 "HP 28655A - SE SCSI ID=7 " INTERFACE lan 56.1 lan3 "" INTERFACE lanmux 56 lanmux0 "LAN/Console " INTERFACE lantty 56.2 lantty0 "" INTERFACE tty 56.0 mux4 "" IP_ADDRESS 192.168.16.14 JFS KERN_BIT 32 KEYBOARD Not_Applicable LAN 0x0800095405F7 LVM LVM_LAYOUT /dev/vg00 unallocated 272 " " LVM_LAYOUT /dev/vg00/aap " " 0 unused LVM_LAYOUT /dev/vg00/lvol1 /stand 112 hfs LVM_LAYOUT /dev/vg00/lvol10 " " 0 unused LVM_LAYOUT /dev/vg00/lvol2 swap 512 " " LVM_LAYOUT /dev/vg00/lvol3 / 140 vxfs LVM_LAYOUT /dev/vg00/lvol4 /tmp 64 vxfs LVM_LAYOUT /dev/vg00/lvol5 /home 20 vxfs LVM_LAYOUT /dev/vg00/lvol6 /opt 944 vxfs LVM_LAYOUT /dev/vg00/lvol7 /usr 1520 vxfs LVM_LAYOUT /dev/vg00/lvol8 /var 500 vxfs LVM_LAYOUT /dev/vg00/lvtest " " 8 unused LVM_LAYOUT /dev/vg00: " " " " " " LVM_LAYOUT /dev/vg1m unallocated 3818 " " LVM_LAYOUT /dev/vg1m/lv0 " " 0 unused LVM_LAYOUT /dev/vg1m: " " " " " " MODEL 9000/897/I70 OS_REV B.11.11 PROC 2 RAM 256 SOFTWARE B3693AA_TRY C.03.20.00 "Trial HP GlancePlus/UX for s800 11i " SOFTWARE B4967AA_TRY C.03.20.00 "Trial HP MeasureWare Server Agent for s800 11i " SOFTWARE B5013AA_TRY C.02.00.01 "Trial HP PerfView for s800 11i " SOFTWARE B5725AA B.3.0.502 "HP-UX Installation Utilities (Ignite-UX) " SOFTWARE B6834AA B.01.03.01 "HP-UX Security Patch Check Tool " SOFTWARE B7961AA B.03.10.6 "Base HP VERITAS Volume Manager 3.1 " SOFTWARE BUNDLE11i B.11.11.0102.2 "Required Patch Bundle for HP-UX 11i, February 2001 " SOFTWARE FDDI-00 B.11.11.01 "PCI FDDI;Supptd HW=A3739A/A3739B;SW=J3626AA " SOFTWARE GigEther-00 B.11.11.14 "PCI/HSC GigEther;Supptd HW=A4926A/A4929A/A4924A/A4925A;SW=J1642AA " SOFTWARE HPUXBase32 B.11.11 "HP-UX 32-bit Base OS " SOFTWARE HPUXBaseAux B.11.11 "HP-UX Base OS Auxiliary " SOFTWARE Ignite-UX-11-11 B.3.0.502 "HP-UX Installation Utilities for Installing 11.11 Systems " SOFTWARE perl D.5.8.0.A "Perl Programming Language " SUBNET_MASK 255.255.255.0 SWAP dev 512 1 /dev/vg00/lvol2 SW_ID 1385663282 TIMEZONE WET0WEST
cfg "HP-UX B.11.11 Default" {
description "This selection supplies the default system configuration that HP supplies for the B.11.11 release."
"/opt/ignite/data/Rel_B.11.11/config"
"/opt/ignite/data/Rel_B.11.11/hw_patches_cfg"
"/var/opt/ignite/config.local"
}
release="B.11.11"
is_hppa {
_hp_disk_layout +={
"Whole disk (not LVM) with HFS",
"Logical Volume Manager (LVM) with HFS",
"Logical Volume Manager (LVM) with VxFS"
}
}
(_hp_primary_path != "" & !(_hp_root_disk ~ ".*"))
{
init _hp_root_disk=_hp_primary_path
}
init _hp_pri_swap = disk[_hp_root_disk].size
init _hp_pri_swap = _hp_disk_layout
init _hp_pri_swap = MEMORY * 2
_hp_pri_swap > 1024Mb {
disk[_hp_root_disk].size < 5120Mb {
init _hp_pri_swap = 1024Mb
} else {
_hp_pri_swap > 4096Mb {
init _hp_pri_swap = 4096Mb
}
}
}
(_hp_pri_swap < 128Mb)
{ init _hp_pri_swap = 128Mb }
_hp_min_swap = _hp_pri_swap
(_hp_min_swap > 512Mb & disk[_hp_root_disk].size < 3000Mb)
{ _hp_min_swap = 512Mb }
(_hp_min_swap > 192Mb & disk[_hp_root_disk].size < 1800Mb)
{ _hp_min_swap = 192Mb }
(_hp_min_swap > 96Mb & disk[_hp_root_disk].size < 700Mb)
{ _hp_min_swap = 96Mb }
(_hp_min_swap > 68Mb & disk[_hp_root_disk].size < 600Mb)
{ _hp_min_swap = 68Mb }
_hp_pri_swap = { 128Mb, 256Mb, 512Mb, 1024Mb,
1536Mb, 2048Mb, 3072Mb, 4096Mb }
_hp_sec_swap ={ 0Mb, 128Mb, 256Mb, 512Mb, 1024Mb,
1536Mb, 2048Mb, 3072Mb, 4096Mb }
init _hp_sec_swap = 0Mb
_hp_sec_swap help_text "Secondary Swap space (KB)"
init _hp_disk_layout = disk[_hp_root_disk].model
is_hppa {
HARDWARE_MODEL ~ "9000/7.*" {
init _hp_disk_layout = "Logical Volume Manager (LVM) with VxFS"
} else {
disk[_hp_root_disk].size >= 600Mb |
HARDWARE_MODEL ~ "9000/825.*" |
HARDWARE_MODEL ~ "9000/834.*" |
HARDWARE_MODEL ~ "9000/835.*" |
HARDWARE_MODEL ~ "9000/635.*" |
HARDWARE_MODEL ~ "9000/845.*" |
HARDWARE_MODEL ~ "9000/645.*" |
HARDWARE_MODEL ~ "9000/822.*" |
HARDWARE_MODEL ~ "9000/832.*" |
HARDWARE_MODEL ~ "9000/842.*" |
HARDWARE_MODEL ~ "9000/852.*"
{
init _hp_disk_layout = "Logical Volume Manager (LVM) with VxFS"
} else {
init _hp_disk_layout = "Whole disk (not LVM) with HFS"
}
}
disk[_hp_root_disk].size > 2097452K {
init _hp_disk_layout = "Logical Volume Manager (LVM) with VxFS"
}
} else {
init _hp_disk_layout = "VxVM with VxFS"
}
enum _hp_root_grp_striped
_hp_root_grp_striped = { "YES", "NO" }
init _hp_root_grp_striped = "NO"
_hp_root_grp_striped help_text "Stripe root VG disks?"
INIT "Create /export volume" = false
init _hp_root_grp_disks = (disk[_hp_root_disk].size+0) # +0 convert to int
enum _hp_root_grp_disks
_hp_root_grp_disks = { 1..num_disks }
init _hp_root_grp_disks = 1
_hp_root_grp_disks help_text "# of disks in root VG"
disk[_hp_root_disk].size < 600Mb & num_disks == 2
{
init _hp_disk_layout = "Logical Volume Manager (LVM) with VxFS"
init _hp_root_grp_disks = 2
}
INIT "Create separate volumes (/usr, /var, ...)" =
((disk[_hp_root_disk].size >= 800Mb) | (_hp_root_grp_disks > 1))
_hp_disk_layout == "Whole disk (not LVM) with HFS"
{
partitioned_disk
{
physical_volume disk[_hp_root_disk]
fs_partition {
usage = HFS
size = remaining
mount_point = "/"
disk[_hp_root_disk].size < 300Mb {
minfree = 5
}
}
swap_partition {
usage = SWAP
mount_point = "primary"
size = _hp_min_swap | remaining | _hp_pri_swap
}
}
}
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" |
_hp_disk_layout == "Logical Volume Manager (LVM) with VxFS"
{
volume_group "vg00"
{
physical_volume disk[*=_hp_root_grp_disks]
max_physical_extents = 2500
(disk[_hp_root_disk].size > 21504MB) # >21GB
{
physical_extent_size=8
}
(disk[_hp_root_disk].size > 44032MB) # >43GB
{
physical_extent_size=16
}
(disk[_hp_root_disk].size > 84992MB) # >83GB
{
physical_extent_size=32
}
(disk[_hp_root_disk].size > 179200MB) # >175GB
{
physical_extent_size=64
}
logical_volume {
mount_point = "/"
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
usage = HFS
} else {
usage = VxFS
}
"Create separate volumes (/usr, /var, ...)" {
size = 140Mb
} else {
size = remaining | 1200Mb
}
contiguous_allocation = true
bad_block_relocate = false
}
logical_volume {
usage = SWAP_DUMP
mount_point = "primary"
contiguous_allocation = true
bad_block_relocate = false
size = _hp_min_swap | remaining | _hp_pri_swap
}
_hp_sec_swap > 0Mb {
logical_volume {
usage = SWAP
mount_point = "secondary"
_hp_root_grp_striped == "YES" {
stripes = *
}
else
{
contiguous_allocation = true # allows use as dump
bad_block_relocate = false # allows use as dump
}
size = _hp_sec_swap
}
}
logical_volume {
mount_point = "/stand"
usage = HFS
size = 112Mb
contiguous_allocation = true
bad_block_relocate = false
}
"Create separate volumes (/usr, /var, ...)" {
logical_volume {
mount_point = "/usr"
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
usage = HFS
} else {
usage = VxFS
}
disk[_hp_root_disk].size < 1800Mb {
size = 332Mb | remaining | 20% free
} else {
disk[_hp_root_disk].size > 3072MB {
size = 500Mb | remaining | 20% free
} else {
size = 400Mb | remaining | 20% free
}
}
_hp_root_grp_striped == "YES" {
stripes = *
}
}
logical_volume {
mount_point = "/opt"
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
usage = HFS
} else {
usage = VxFS
}
disk[_hp_root_disk].size < 1800Mb {
size = 100Mb | remaining | 100Mb free
} else {
disk[_hp_root_disk].size > 3072MB {
size = 100Mb | remaining | 252Mb free
} else {
size = 100Mb | remaining | 152Mb free
}
}
_hp_root_grp_striped == "YES" {
stripes = *
}
}
logical_volume {
mount_point = "/var"
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
nbpi = 2048
usage = HFS
} else {
usage = VxFS
}
size = 72Mb | remaining | 500Mb
_hp_root_grp_striped == "YES" {
stripes = *
}
}
logical_volume {
mount_point = "/tmp"
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
usage = HFS
nbpi = 2048
} else {
usage = VxFS
}
size = 64Mb
_hp_root_grp_striped == "YES" {
stripes = *
}
}
} # "Create separate volumes (/usr, /var, ...)"
"Create /export volume" {
logical_volume {
mount_point = "/export"
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
usage = HFS
} else {
usage = VxFS
}
size = remaining | 100Mb
_hp_root_grp_striped == "YES" {
stripes = *
}
}
}
logical_volume {
mount_point = "/home"
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
usage = HFS
} else {
usage = VxFS
}
size = remaining | 20Mb
_hp_root_grp_striped == "YES" {
stripes = *
}
}
} # root group
} # Volume Manager disk layout.
_hp_locale visible_if false
_hp_cfg_detail_level visible_if false
_hp_pri_swap visible_if false
_hp_min_swap visible_if false
_hp_disk_layout visible_if false
_hp_default_cur_lan_dev visible_if false
_hp_default_final_lan_dev visible_if false
_hp_keyboard visible_if false
_hp_root_disk visible_if false
_hp_boot_dev_path visible_if false
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" |
_hp_disk_layout == "Logical Volume Manager (LVM) with VxFS"
{
"Create /export volume" visible_if true
"Create separate volumes (/usr, /var, ...)" visible_if true
_hp_sec_swap visible_if true
_hp_root_grp_striped visible_if (_hp_root_grp_disks > 1)
_hp_root_grp_disks visible_if true
}
else
{
"Create /export volume" visible_if false
"Create separate volumes (/usr, /var, ...)" visible_if false
_hp_sec_swap visible_if false
_hp_root_grp_striped visible_if false
_hp_root_grp_disks visible_if false
}
init sw_sel "impact by scripts" {
sw_source = "core"
visible_if = false
impacts = "/var" 60Mb
impacts = "/stand" 20Mb
} = TRUE
enum _hp_force_autoboot
_hp_force_autoboot = { "YES", "NO" }
init _hp_force_autoboot = "YES"
_hp_force_autoboot help_text "Force Ignite-UX autoboot?"
enum _disable_dhcp
_disable_dhcp = { "YES", "NO" }
init _disable_dhcp = "NO"
_disable_dhcp help_text "Disable DHCP?"
_disable_dhcp == "YES" {
DISABLE_DHCP=TRUE
}
sd_command_line += " -x os_release=" +${release}
(_hp_os_bitness == "64")
{
(!can_run_64bit)
{
ERROR += "This system model: \"" +${model}+ "\" is not supported for running 64bit HP-UX, you must select the 32bit selection"
}
sd_command_line += " -x os_name=HP-UX:64 "
}
else
{
(_hp_os_bitness == "32")
{
(!can_run_32bit)
{
ERROR += "This system model: \"" +${model}+ "\" is not supported for running 32bit HP-UX, you must select the 64bit selection"
}
sd_command_line += " -x os_name=HP-UX:32 "
}
else
{
ERROR += "The _hp_os_bitness variable is not set to \"32\" or \"64\". This variable must be set in the config file that supplies the core archive or depot. If using an archive, make sure you start with the core11.cfg example config file. When using a depot, make_config will set this automatically."
}
}
_hp_os_bitness visible_if false
enum _hp_patch_save_files
_hp_patch_save_files = { "YES", "NO" }
init _hp_patch_save_files = "YES"
_hp_patch_save_files help_text "Save patched files?"
init sw_sel "General Patches"
{
sw_source = "core"
description = "Mark to load all patches, unmark for just critical & HW patches."
sw_category = "HPUXAdditions"
} = TRUE
sw_source "core"
{
(sw_sel "General Patches")
{
sd_command_line += " -xpatch_filter=*.* "
}
else # Don't load all patches, just HW/critical:
{
sd_command_line += " -xpatch_filter=*.*,c=critical|hardware_enablement "
}
(_hp_patch_save_files == "NO")
{
sd_command_line += " -xpatch_save_files=false "
}
else
{
sd_command_line += " -xpatch_save_files=true "
}
}
sw_source "core2"
{
(sw_sel "General Patches")
{
sd_command_line += " -xpatch_filter=*.* "
}
else # Don't load all patches, just HW/critical:
{
sd_command_line += " -xpatch_filter=*.*,c=critical|hardware_enablement "
}
(_hp_patch_save_files == "NO")
{
sd_command_line += " -xpatch_save_files=false "
}
else
{
sd_command_line += " -xpatch_save_files=true "
}
}
sw_sel "HPUXBase32" {
(sw_sel "General Patches") & (_hp_patch_save_files == "YES")
{
impacts = "/usr/forpatches" 0Kb
impacts = "/var/adm/sw/save" 0Kb
}
!( sw_sel "General Patches") & (_hp_patch_save_files == "YES")
{
impacts = "/var/adm/sw/save" 0Kb
}
}
sw_sel "HPUXBase64" {
(sw_sel "General Patches") & (_hp_patch_save_files == "YES")
{
impacts = "/usr/forpatches" 0Kb
impacts = "/var/adm/sw/save" 0Kb
}
!( sw_sel "General Patches") & (_hp_patch_save_files == "YES")
{
impacts = "/var/adm/sw/save" 0Kb
}
}
client_timeout 20 halt_when_done false ignite_welcome true itool_welcome true move_to_history_when_done false new_client_notification true print_enhanced_manifest false full_recovery_info true
# Bundle(s): B3693AA_TRY C.03.20.00 Trial HP GlancePlus/UX for s800 11i B4967AA_TRY C.03.20.00 Trial HP MeasureWare Server Agent for s800 11i B5013AA_TRY C.02.00.01 Trial HP PerfView for s800 11i B5725AA B.3.0.502 HP-UX Installation Utilities (Ignite-UX) B6834AA B.01.03.01 HP-UX Security Patch Check Tool B7961AA B.03.10.6 Base HP VERITAS Volume Manager 3.1 BUNDLE11i B.11.11.0102.2 Required Patch Bundle for HP-UX 11i, February 2001 FDDI-00 B.11.11.01 PCI FDDI;Supptd HW=A3739A/A3739B;SW=J3626AA GigEther-00 B.11.11.14 PCI/HSC GigEther;Supptd HW=A4926A/A4929A/A4924A/A4925A;SW=J1642AA HPUXBase32 B.11.11 HP-UX 32-bit Base OS HPUXBaseAux B.11.11 HP-UX Base OS Auxiliary Ignite-UX-11-11 B.3.0.502 HP-UX Installation Utilities for Installing 11.11 Systems perl D.5.8.0.A Perl Programming Language # Product(s) not contained in a Bundle: apache2 2.0.35 apache2 scc 1.6.18 System Configuration Collector scc-srv 1.4.9 System Configuration Collector Server
# Accounting B.11.11 Accounting Accounting.ACCOUNTNG B.11.11 ACCOUNTNG Accounting.ACCT-ENG-A-MAN B.11.11 ACCT-ENG-A-MAN Accounting.ACCT-JPN-E-MAN B.11.11 ACCT-JPN-E-MAN Accounting.ACCT-JPN-S-MAN B.11.11 ACCT-JPN-S-MAN # Asian-Core A.03.00 Asian Core Asian-Core.ASX-JPN-E-MAN A.03.00 Japanese (EUC) localized manual pages for ASX-MAN Asian-Core.ASX-JPN-MAN A.03.00 Manual pages for Japanese specific ASX utilities Asian-Core.ASX-JPN-NOTES A.03.00 ASX ReleaseNotes - Japan Asian-Core.ASX-JPN-S-MAN A.03.00 Japanese (Shift-JIS) localized manual pages for ASX-MAN Asian-Core.ASX-KOR-NOTES A.03.00 ASX ReleaseNotes - Korea Asian-Core.ASX-MAN A.03.00 Manual pages for ASX utilities Asian-Core.ASX-SCH-NOTES A.03.00 ASX ReleaseNotes - China Asian-Core.ASX-TCH-NOTES A.03.00 ASX ReleaseNotes - Taiwan # Asian-PRINTER A.03.00 Asian Printer Asian-PRINTER.PRNTR-JPN-RUN A.03.00 Runtime module of filters and fonts for Japanese printers Asian-PRINTER.PRNTR-KOR-RUN A.03.00 Runtime module of filters and fonts for Korean printers Asian-PRINTER.PRNTR-RUN A.03.00 Runtime module of filters for Asian printers Asian-PRINTER.PRNTR-SCH-RUN A.03.00 Runtime module of filters and fonts for Simplified Chinese printers Asian-PRINTER.PRNTR-TCH-RUN A.03.00 Runtime module of filters and fonts for Traditional Chinese printers Asian-PRINTER.PRT-LP-JPN-RUN A.03.00 Runtime module of lp models and filters for Japanese printers Asian-PRINTER.PRT-LP-KOR-RUN A.03.00 Runtime module of lp models and filters for Korean printers Asian-PRINTER.PRT-LP-RUN A.03.00 Runtime module of lp models and filters for Asian printers Asian-PRINTER.PRT-LP-SCH-RUN A.03.00 Runtime module of lp models and filters for Simplified Chinese printers Asian-PRINTER.PRT-LP-TCH-RUN A.03.00 Runtime module of lp models and filters for Traditional Chinese printers Asian-PRINTER.PRT-PD-JPN-RUN A.03.00 Runtime module of HP DPS models for Japanese printers Asian-PRINTER.PRT-PD-KOR-RUN A.03.00 Runtime module of HP DPS models for Korean printers Asian-PRINTER.PRT-PD-RUN A.03.00 Runtime module of HP DPS models for Asian printers Asian-PRINTER.PRT-PD-SCH-RUN A.03.00 Runtime module of HP DPS models for Simplified Chinese printers Asian-PRINTER.PRT-PD-TCH-RUN A.03.00 Runtime module of HP DPS models for Traditional Chinese printers # Asian-TERM A.03.00 Asian TERM Asian-TERM.IMTERM-RUN A.03.00 Runtime module of code conversion and line discipline for Asian terminals Asian-TERM.IMTERM-SCH-RUN A.03.00 Code conversion and line discipline for Simplified Chinese terminals Asian-TERM.IMTERM-TCH-RUN A.03.00 Code conversion and line discipline for Traditional Chinese terminals # Asian-UTILITY A.03.00 Asian Utility Asian-UTILITY.EUS-JPN-RUN A.03.00 Japanese specific configuration for EUS-RUN Asian-UTILITY.EUS-RUN A.03.00 Asian UDC Server Runtime Asian-UTILITY.MFCONV-JPN-RUN A.03.00 Code Convertion Tools Runtime - Japan Asian-UTILITY.STK-SCH-H-MAN A.03.00 Simplified Chinese Toolkit Manuals (HP15) Asian-UTILITY.STK-SCH-MAN A.03.00 Simplified Chinese Toolkit Manuals Asian-UTILITY.STK-SCH-RUN A.03.00 Simplified Chinese Toolkit Runtime Asian-UTILITY.TTK-TCH-B-MAN A.03.00 TSDO Toolkit Manuals - Taiwan BIG5 codeset Asian-UTILITY.TTK-TCH-C-MAN A.03.00 TSDO Toolkit Manuals - Taiwan ccdc codeset Asian-UTILITY.TTK-TCH-E-MAN A.03.00 TSDO Toolkit Manuals - Taiwan CNS codeset Asian-UTILITY.TTK-TCH-MAN A.03.00 TSDO Toolkit Manuals - Taiwan Asian-UTILITY.TTK-TCH-RUN A.03.00 TSDO Toolkit Runtime - Taiwan Asian-UTILITY.UDC-JPN-RUN A.03.00 User Defined Character Tools Runtime - Japan Asian-UTILITY.UDC-KOR-RUN A.03.00 User Defined Character Tools Runtime - Korea Asian-UTILITY.UDC-RUN A.03.00 User Defined Character Tools Runtime - Asian Common Asian-UTILITY.UDC-SCH-RUN A.03.00 User Defined Character Tools Runtime - China Asian-UTILITY.UDC-TCH-RUN A.03.00 User Defined Character Tools Runtime - Taiwan Asian-UTILITY.UTILS-RUN A.03.00 Runtime module of commands for Asian terminals and printers Asian-UTILITY.UTILS-SCH-RUN A.03.00 Simplified Chinese localized messages for UTILS-RUN Asian-UTILITY.UTILS-TCH-RUN A.03.00 Traditional Chinese localized messages for UTILS-RUN # CDE B.11.11 HP-UX CDE User Interface CDE.CDE-DTTERM B.11.11 CDE Terminal Emulator CDE.CDE-ENG-A-MSG B.11.11 English Localized Message Catalog CDE.CDE-FRE-I-MSG B.11.11 French Localized Message Catalogs CDE.CDE-GER-I-MSG B.11.11 German Localized Message Catalog CDE.CDE-ITA-I-MSG B.11.11 Italian Localized Message Catalog CDE.CDE-JPN-E-MSG B.11.11 Japanese Localized Message Catalog CDE.CDE-JPN-S-MSG B.11.11 Japanese SJIS Localized Message Catalog CDE.CDE-KOR-E-MSG B.11.11 Korean Localized Message Catalog CDE.CDE-MIN B.11.11 CDE Minimum Runtime CDE.CDE-SCH-H-MSG B.11.11 Chinese Localized Message Catalog CDE.CDE-SHLIBS B.11.11 CDE Shared Libraries CDE.CDE-SPA-I-MSG B.11.11 Spanish Localized Message Catalog CDE.CDE-SWE-I-MSG B.11.11 Swedish Localized Message Catalog CDE.CDE-TCH-B-MSG B.11.11 Chinese Big5 Localized Message Catalog CDE.CDE-TCH-E-MSG B.11.11 Chinese Localized Message Catalog CDE.CDE-TT B.11.11 CDE Messaging # CPS B.11.11 Compiler Parallel Support Library CPS.CPS-32SLIB B.11.11 CPS-32SLIB CPS.CPS-64SLIB B.11.11 CPS-64SLIB CPS.CPS-MIN B.11.11 CPS-MIN # Curses-Color B.11.11 Curses library with color support Curses-Color.CURS-ENG-A-MAN B.11.11 CURS-ENG-A-MAN Curses-Color.CURS-JPN-E-MAN B.11.11 CURS-JPN-E-MAN Curses-Color.CURS-JPN-S-MAN B.11.11 CURS-JPN-S-MAN Curses-Color.CURSES-MIN B.11.11 Color Curses Runtime environment Curses-Color.CURSES-PRG B.11.11 Color Curses Programming environment # DCE-Core B.11.11 HP DCE/9000 Core Client Software DCE-Core.DCE-COR-64SLIB B.11.11 DCE-COR-64SLIB DCE-Core.DCE-CORE-DTS B.11.11 DCE-CORE-DTS DCE-Core.DCE-CORE-HELP B.11.11 DCE-CORE-HELP DCE-Core.DCE-CORE-NOTES B.11.11 DCE-CORE-NOTES DCE-Core.DCE-CORE-RUN B.11.11 DCE-CORE-RUN DCE-Core.DCE-CORE-SHLIB B.11.11 DCE-CORE-SHLIB DCE-Core.DCE-JPN-E-MSG B.11.11 DCE-JPN-E-MSG DCE-Core.DCE-JPN-S-MSG B.11.11 DCE-JPN-S-MSG DCE-Core.DCEC-ENG-A-MAN B.11.11 DCEC-ENG-A-MAN DCE-Core.MACR-ENG-A-MAN B.11.11 MACR-ENG-A-MAN # DMI B.11.11.30 Desktop Management Interface for HP-UX DMI.DMI-ITO B.11.11.30 ITO Edition DMI Monitoring Templates DMI.DMI-PRG B.11.11.30 DMI Software Development Tool Kit for HP-UX DMI.DMI-PRG-MAN B.11.11.30 DMI Software Development Tool Kit for HP-UX Man Pages DMI.DMI-RUN B.11.11.30 DMI Runtime Environment for HP-UX DMI.DMI-RUN-MAN B.11.11.30 DMI Runtime Environment for HP-UX Man Pages DMI.DMI-SDCI B.11.11.30 Super Dome Component Interface Daemon DMI.DMI-SDCI-MAN B.11.11.30 Super Dome Component Interface Man Pages DMI.DMI-SHLIBS B.11.11.30 DMI Shared Libraries for HP-UX DMI.DMI-SWCI B.11.11.30 HP-UX Software Distributor DMI Component Interface Daemon DMI.DMI-SWCI-MAN B.11.11.30 HP-UX Software Distributor DMI Component Interface Man Pages DMI.DMI-UXCI B.11.11.30 HP-UX Standard Groups Component Instrumentation DMI.DMI-UXCI-MAN B.11.11.30 HP-UX Standard Groups Component Instrumentation Man Pages # DiskQuota B.11.11 DiskQuota DiskQuota.DQUO-ENG-A-MAN B.11.11 DQUO-ENG-A-MAN DiskQuota.DQUO-JPN-E-MAN B.11.11 DQUO-JPN-E-MAN DiskQuota.DQUO-JPN-S-MAN B.11.11 DQUO-JPN-S-MAN DiskQuota.DQUOTA B.11.11 DQUOTA # DistributedPrint B.11.11 DistributedPrint DistributedPrint.PD-CLIENT B.11.11 PD-CLIENT DistributedPrint.PD-COMMON B.11.11 PD-COMMON DistributedPrint.PD-ENG-A-MAN B.11.11 PD-ENG-A-MAN DistributedPrint.PD-JPN-E-MAN B.11.11 PD-JPN-E-MAN DistributedPrint.PD-JPN-S-MAN B.11.11 PD-JPN-S-MAN DistributedPrint.PD-SERVCOMMON B.11.11 PD-SERVCOMMON DistributedPrint.PD-SPOOLER B.11.11 PD-SPOOLER DistributedPrint.PD-SUPERVISOR B.11.11 PD-SUPERVISOR # EMS-Config A.03.20.01 EMS Config EMS-Config.EMS-GUI A.03.20.01 EMS GUI # EMS-Core A.03.20.01 EMS Core Product EMS-Core.EMS-CORE A.03.20.01 Event Monitoring Services Core Files EMS-Core.EMS-MX A.03.20.01 Event Monitoring Services SCMgr Tools # EMS-MIBMonitor A.03.20.01 EMS MIB Resource Monitor Product EMS-MIBMonitor.MIBMON-RUN A.03.20.01 MIB Resource Monitor # FCMassStorage B.11.11 Fibre Channel Mass Storage FCMassStorage.FCMS-ENG-A-MAN B.11.11 FCMS-ENG-A-MAN FCMassStorage.FCMS-INIT B.11.11 Fibre Channel Mass Storage Utilities FCMassStorage.FCMS-JPN-E-MAN B.11.11 FCMS-JPN-E-MAN FCMassStorage.FCMS-JPN-S-MAN B.11.11 FCMS-JPN-S-MAN FCMassStorage.FCMS-KRN B.11.11 Fibre Channel Mass Storage Drivers FCMassStorage.FCMS-RUN B.11.11 Fibre Channel Mass Storage Utilities # FDDI-KRN-COM B.11.11.01 HP HP-PB/CORE/PCI FDDI Kernel Component FDDI-KRN-COM.FDDI467-KRN B.11.11.01 FDDI Kernel Component # FDDI-PCI B.11.11.01 HP PCI FDDI Driver FDDI-PCI.FDAD-ENG-A-MAN B.11.11.01 PCI FDDI manpage fileset FDDI-PCI.FDDI4-KRN B.11.11.01 PCI FDDI Kernel Software Distribution FDDI-PCI.FDDI4-RUN B.11.11.01 PCI FDDI Runtime Software Distribution # GE-DRV B.11.11.14 HP PCI/GSC Gigabit Ethernet Driver GE-DRV.GE-KRN B.11.11.14 Gigabit Ethernet Kernel Software Distribution GE-DRV.GE-RUN B.11.11.14 Gigabit Ethernet Runtime Software Distribution # GSS-API B.11.11 GSS-API Version 1.0 GSS-API.GSS-ENG-A-MAN B.11.11 GSS-ENG-A-MAN GSS-API.GSS-JPN-E-MAN B.11.11 GSS-JPN-E-MAN GSS-API.GSS-JPN-S-MAN B.11.11 GSS-JPN-S-MAN GSS-API.GSSAPI-64SLIB B.11.11 GSSAPI-64SLIB GSS-API.GSSAPI-PRG B.11.11 GSSAPI-PRG GSS-API.GSSAPI-RUN B.11.11 GSSAPI-RUN GSS-API.GSSAPI-SHLIB B.11.11 GSSAPI-SHLIB # Glance C.03.20.00 HP GlancePlus/UX Glance.GLANCE C.03.20.00 HP GlancePlus files Glance.GPM C.03.20.00 HP GlancePlus Motif interface files # HPvmsa B.03.10.6 HP VERITAS Volume Manager 3.1 Storage Administrator HPvmsa.VMSA-CLASSES B.03.10.6 HP VERITAS VMSA 3.1 Base Classes and JRE HPvmsa.VMSA-CLIENT B.03.10.6 HP VERITAS VMSA 3.1 Client Specific Files HPvmsa.VMSA-ENG-A-MAN B.03.10.6 HP VERITAS VMSA 3.1 English Manual Pages HPvmsa.VMSA-ENG-HELP B.03.10.6 HP VERITAS VMSA 3.1 Server Specific Files HPvmsa.VMSA-GIFS B.03.10.6 HP VERITAS VMSA 3.1 Gif Files HPvmsa.VMSA-SERVER B.03.10.6 HP VERITAS VMSA 3.1 Server Specific Files HPvmsa.VMSA-VENDOR B.03.10.6 HP VERITAS VMSA 3.1 Vendor Classes # HPvxvm B.03.10.6 Base HP VERITAS Volume Manager 3.1 HPvxvm.VXVM-ENG-A-MAN B.03.10.6 HP VERITAS Volume Manager 3.1 Man Pages HPvxvm.VXVM-HELP B.03.10.6 HP VERITAS Volume Manager 3.1 Help Files HPvxvm.VXVM-KRN B.03.10.6 HP VERITAS Volume Manager 3.1 Kernel and Library Files HPvxvm.VXVM-RUN B.03.10.6 HP VERITAS Volume Manager 3.1 Commands and Scripts # Ignite-UX B.3.0.502 HP-UX System Installation Services Ignite-UX.BOOT-KERNEL B.3.0.502 Installation Boot Kernel for S700/S800 clients Ignite-UX.BOOT-SERVICES B.3.0.502 Network Boot Services for System Installations Ignite-UX.FILE-SRV-11-11 B.3.0.502 File Archives Used By Clients During HP-UX Install Ignite-UX.IGNITE B.3.0.502 Graphical Ignite User Interface for Installations Ignite-UX.IGNT-ENG-A-MAN B.3.0.502 Ignite-UX Manual Pages Ignite-UX.MGMT-TOOLS B.3.0.502 Tools for Managing Data Files on an Ignition Server Ignite-UX.OBAM-RUN B.3.0.502 User Interface Libraries Needed for Older Systems Ignite-UX.RECOVERY B.3.0.502 System disaster recovery tools # ImagingSubsystem B.11.11 HP-UX Image Viewer Subsystem ImagingSubsystem.IMAGE-SHLIBS B.11.11 IMAGE-SHLIBS # IntegratedLogin B.11.11 Integrated Login for HP-UX and DCE IntegratedLogin.ILOGIN-COMMON B.11.11 ILOGIN-COMMON IntegratedLogin.ILOGIN-DCE B.11.11 ILOGIN-DCE # International B.11.11 International International.ARABIC B.11.11 ARABIC International.BULGARIAN B.11.11 BULGARIAN International.CHINESES B.11.11 CHINESES International.CHINESET B.11.11 CHINESET International.CZECH B.11.11 CZECH International.DANISH B.11.11 DANISH International.DUTCH B.11.11 DUTCH International.ENGLISH B.11.11 ENGLISH International.FINNISH B.11.11 FINNISH International.FRENCH B.11.11 FRENCH International.GERMAN B.11.11 GERMAN International.GREEK B.11.11 GREEK International.HEBREW B.11.11 HEBREW International.HUNGARIAN B.11.11 HUNGARIAN International.ICELANDIC B.11.11 ICELANDIC International.ITALIAN B.11.11 ITALIAN International.JAPANESE B.11.11 JAPANESE International.KOREAN B.11.11 KOREAN International.NORWEGIAN B.11.11 NORWEGIAN International.POLISH B.11.11 POLISH International.PORTUGUESE B.11.11 PORTUGUESE International.RUMANIAN B.11.11 RUMANIAN International.RUSSIAN B.11.11 RUSSIAN International.SERBOCROATIAN B.11.11 SERBOCROATIAN International.SLOVAKIAN B.11.11 SLOVAKIAN International.SLOVENIAN B.11.11 SLOVENIAN International.SPANISH B.11.11 SPANISH International.SWEDISH B.11.11 SWEDISH International.THAI B.11.11 THAI International.TURKISH B.11.11 TURKISH # InternetSrvcs B.11.11 General network applications and daemons InternetSrvcs.INET-ENG-A-MAN B.11.11 INET-ENG-A-MAN InternetSrvcs.INET-JPN-E-MAN B.11.11 INET-JPN-E-MAN InternetSrvcs.INET-JPN-S-MAN B.11.11 INET-JPN-S-MAN InternetSrvcs.INETSVCS-BOOT B.11.11 INETSVCS-BOOT InternetSrvcs.INETSVCS-DTC B.11.11 INETSVCS-DTC InternetSrvcs.INETSVCS-INC B.11.11 INETSVCS-INC InternetSrvcs.INETSVCS-INETD B.11.11 INETSVCS-INETD InternetSrvcs.INETSVCS-RUN B.11.11 INETSVCS-RUN InternetSrvcs.RBTD-ENG-A-MAN B.11.11 RBTD-ENG-A-MAN InternetSrvcs.RBTD-JPN-E-MAN B.11.11 RBTD-JPN-E-MAN InternetSrvcs.RBTD-JPN-S-MAN B.11.11 RBTD-JPN-S-MAN # JFS B.11.11 The Base VxFS File System JFS.JFS-ENG-A-MAN B.11.11 JFS-ENG-A-MAN JFS.JFS-JPN-E-MAN B.11.11 JFS-JPN-E-MAN JFS.JFS-JPN-S-MAN B.11.11 JFS-JPN-S-MAN JFS.VXFS-BASE-KRN B.11.11 The Base VxFS File System Kernel files JFS.VXFS-BASE-RUN B.11.11 VXFS-BASE-RUN JFS.VXFS-PRG B.11.11 Subproduct contains the necessary header files for prog env # KRB-Support B.11.11 Kerberos Support for HP-UX and DCE KRB-Support.KRB-SUPP-MAN B.11.11 KRB-SUPP-MAN KRB-Support.KRB-SUPP-NOTES B.11.11 KRB-SUPP-NOTES KRB-Support.KRB-SUPP-RUN B.11.11 KRB-SUPP-RUN # KRB5-Client B.11.11 Kerberos V5 Client Version 1.0 KRB5-Client.KRB5-64SLIB B.11.11 KRB5-64SLIB KRB5-Client.KRB5-ENG-A-MAN B.11.11 KRB5-ENG-A-MAN KRB5-Client.KRB5-JPN-E-MAN B.11.11 KRB5-JPN-E-MAN KRB5-Client.KRB5-JPN-S-MAN B.11.11 KRB5-JPN-S-MAN KRB5-Client.KRB5-PRG B.11.11 KRB5-PRG KRB5-Client.KRB5-RUN B.11.11 KRB5-RUN KRB5-Client.KRB5-SHLIB B.11.11 KRB5-SHLIB # KernDevKit B.11.11 HP-UX Kernel Developer Kit KernDevKit.KERN-DEV-KIT B.11.11 HP-UX Kernel Developer Kit # Keyshell B.11.11 Keyshell Keyshell.KEYS-ENG-A-MAN B.11.11 KEYS-ENG-A-MAN Keyshell.KEYS-JPN-E-MAN B.11.11 KEYS-JPN-E-MAN Keyshell.KEYS-JPN-S-MAN B.11.11 KEYS-JPN-S-MAN Keyshell.KEYSHELL-RUN B.11.11 KEYSHELL-RUN # LSSERV B.11.11 LicensePower/iFOR ARK LSSERV.LSRV-ENG-A-MAN B.11.11 LSRV-ENG-A-MAN LSSERV.LSRV-JPN-E-MAN B.11.11 LSRV-JPN-E-MAN LSSERV.LSRV-JPN-S-MAN B.11.11 LSRV-JPN-S-MAN LSSERV.LSSERV-ADMIN B.11.11 Administrator's Runtime Kit LSSERV.LSSERV-RUN B.11.11 LicensePower/iFOR ARK Runtime LSSERV.LSSERV-SERVER B.11.11 LicensePower/iFOR ARK Server LSSERV.LSSERV-SHLIBS B.11.11 LicensePower/iFOR ARK Shared Libraries # LVM B.11.11 LVM LVM.LVM-ENG-A-MAN B.11.11 LVM-ENG-A-MAN LVM.LVM-JPN-E-MAN B.11.11 LVM-JPN-E-MAN LVM.LVM-JPN-S-MAN B.11.11 LVM-JPN-S-MAN LVM.LVM-KRN B.11.11 HP-UX Kernel support for the Logical Volume Manager LVM.LVM-RUN B.11.11 LVM-RUN # MSDOS-Utils B.11.11 MSDOS-Utils MSDOS-Utils.DOS-UTILS B.11.11 DOS-UTILS MSDOS-Utils.DOSU-ENG-A-MAN B.11.11 DOSU-ENG-A-MAN MSDOS-Utils.DOSU-JPN-E-MAN B.11.11 DOSU-JPN-E-MAN MSDOS-Utils.DOSU-JPN-S-MAN B.11.11 DOSU-JPN-S-MAN # MailUtilities B.11.11 User mail agents and related tools MailUtilities.MAIL-ENG-A-MAN B.11.11 MAIL-ENG-A-MAN MailUtilities.MAIL-JPN-E-MAN B.11.11 MAIL-JPN-E-MAN MailUtilities.MAIL-JPN-S-MAN B.11.11 MAIL-JPN-S-MAN MailUtilities.MAILERS B.11.11 MAILERS # MeasureWare C.03.20.00 MeasureWare Software/UX MeasureWare.MWA C.03.20.00 MeasureWare Software files MeasureWare.PERFDSI C.03.20.00 HP PCS Data Source Integration # MeasurementInt C.03.20.00 HP-UX Measurement Interface for 11i MeasurementInt.ARM C.03.20.00 HP-UX Application Response Measurement for 11i MeasurementInt.MI C.03.20.00 HP-UX Measurement Interface for 11i # NFS B.11.11 ONC/NFS; Network-File System,Information Services,Utilities NFS.KEY-CORE B.11.11 KEY-CORE NFS.NFS-64ALIB B.11.11 NFS-64ALIB NFS.NFS-64SLIB B.11.11 NFS-64SLIB NFS.NFS-CLIENT B.11.11 NFS-CLIENT NFS.NFS-CORE B.11.11 NFS-CORE NFS.NFS-ENG-A-MAN B.11.11 NFS-ENG-A-MAN NFS.NFS-JPN-E-MAN B.11.11 NFS-JPN-E-MAN NFS.NFS-JPN-S-MAN B.11.11 NFS-JPN-S-MAN NFS.NFS-KRN B.11.11 NFS-KRN NFS.NFS-PRG B.11.11 NFS-PRG NFS.NFS-SERVER B.11.11 NFS-SERVER NFS.NFS-SHLIBS B.11.11 NFS-SHLIBS NFS.NIS-CLIENT B.11.11 NIS-CLIENT NFS.NIS-CORE B.11.11 NIS-CORE NFS.NIS-SERVER B.11.11 NIS-SERVER NFS.NISPLUS-CORE B.11.11 NISPLUS-CORE # Networking B.11.11 HP-UX_Lanlink_Product Networking.100BT-KRN B.11.11 PCI/HSC 100BASE-T Networking.100BT-RUN B.11.11 PCI/HSC 100BASE-T Networking.LAN-KRN B.11.11 LAN-KRN Networking.LAN-PRG B.11.11 LAN-PRG Networking.LAN-RUN B.11.11 LAN-RUN Networking.LAN2-KRN B.11.11 LAN2-KRN Networking.NET-KRN B.11.11 NET-KRN Networking.NET-PRG B.11.11 NET-PRG Networking.NET-RUN B.11.11 NET-RUN Networking.NET-RUN-64 B.11.11 NET-RUN-64 Networking.NET2-KRN B.11.11 NET2-KRN Networking.NETTL-64SLIB B.11.11 NETTL-64SLIB Networking.NETTL-ADM B.11.11 NETTL-ADM Networking.NETTL-MIN B.11.11 NETTL-MIN Networking.NETTL-RUN B.11.11 NETTL-RUN Networking.NMS-KRN B.11.11 NMS-KRN Networking.NMS-RUN B.11.11 NMS-RUN Networking.NMS2-KRN B.11.11 NMS2-KRN Networking.NW-ENG-A-MAN B.11.11 NW-ENG-A-MAN Networking.NW-JPN-E-MAN B.11.11 NW-JPN-E-MAN Networking.NW-JPN-S-MAN B.11.11 NW-JPN-S-MAN Networking.PPP-RUN B.11.11 PPP-RUN # NonHP-Terminfo B.11.11 Non HP terminfo files NonHP-Terminfo.NONHPTERM B.11.11 Non HP terminfo files # OBAM B.11.00.05.2.06 Object Action Manager user interface framework for HP-UX tools OBAM.OBAM-BIN B.11.00.05.2.06 ObAM Runtime Support OBAM.OBAM-JVM B.11.00.05.2.06 HP-UX Java Runtime Environment for ObAM OBAM.OBAM-WEB B.11.00.05.2.06 Web Application Server Support # OS-Core B.11.11 Core Operating System, plus Software Terms & Conditions OS-Core.ADMN-ENG-A-MAN B.11.11 ADMN-ENG-A-MAN OS-Core.ADMN-JPN-E-MAN B.11.11 ADMN-JPN-E-MAN OS-Core.ADMN-JPN-S-MAN B.11.11 ADMN-JPN-S-MAN OS-Core.ARRAY-MGMT B.11.11 ARRAY-MGMT OS-Core.C-KRN B.11.11 C-KRN OS-Core.C-MIN B.11.11 C-MIN OS-Core.C-MIN-32ALIB B.11.11 HP-UX minimal 32 bit user libraries OS-Core.C-MIN-64ALIB B.11.11 C-MIN-64ALIB OS-Core.C2400-UTIL B.11.11 C2400-UTIL OS-Core.CAUX-ENG-A-MAN B.11.11 CAUX-ENG-A-MAN OS-Core.CAUX-JPN-E-MAN B.11.11 CAUX-JPN-E-MAN OS-Core.CAUX-JPN-S-MAN B.11.11 CAUX-JPN-S-MAN OS-Core.CMDS-AUX B.11.11 CMDS-AUX OS-Core.CMDS-AX-64SLIB B.11.11 CMDS-AX-64SLIB OS-Core.CMDS-MIN B.11.11 CMDS-MIN OS-Core.CMDS-MN-64SLIB B.11.11 CMDS-MN-64SLIB OS-Core.CMIN-ENG-A-MAN B.11.11 CMIN-ENG-A-MAN OS-Core.CMIN-JPN-E-MAN B.11.11 CMIN-JPN-E-MAN OS-Core.CMIN-JPN-S-MAN B.11.11 CMIN-JPN-S-MAN OS-Core.CORE-64SLIB B.11.11 CORE-64SLIB OS-Core.CORE-ENG-A-MAN B.11.11 CORE-ENG-A-MAN OS-Core.CORE-JPN-E-MAN B.11.11 CORE-JPN-E-MAN OS-Core.CORE-JPN-S-MAN B.11.11 CORE-JPN-S-MAN OS-Core.CORE-KRN B.11.11 Core HP-UX kernel functionality OS-Core.CORE-SHLIBS B.11.11 CORE-SHLIBS OS-Core.CORE2-KRN B.11.11 Core HP-UX kernel generation files OS-Core.HPUX-HELP B.11.11 HPUX-HELP OS-Core.KERN-ENG-A-MAN B.11.11 KERN-ENG-A-MAN OS-Core.KERN-JPN-E-MAN B.11.11 KERN-JPN-E-MAN OS-Core.KERN-JPN-S-MAN B.11.11 KERN-JPN-S-MAN OS-Core.KERN-RUN B.11.11 System Boot utilities OS-Core.KERN2-RUN B.11.11 Core master files and system configuration header OS-Core.LINKER-HELP B.11.11 LINKER-HELP OS-Core.NLS-AUX B.11.11 NLS-AUX OS-Core.PERL B.11.11 GNU Perl Kit 5 sources OS-Core.Q4 B.11.11 HP-UX Crash Dump Debugger for PA-RISC systems OS-Core.RELEASE-NOTES B.11.11 RELEASE-NOTES OS-Core.SYS-ADMIN B.11.11 SYS-ADMIN OS-Core.TOOL-ENG-A-MAN B.11.11 TOOL-ENG-A-MAN OS-Core.TOOL-JPN-E-MAN B.11.11 TOOL-JPN-E-MAN OS-Core.TOOL-JPN-S-MAN B.11.11 TOOL-JPN-S-MAN OS-Core.UPS-TOOLS B.11.11 UPS-TOOLS OS-Core.USRCONTRB B.11.11 USRCONTRB OS-Core.UX-CORE B.11.11 UX-CORE OS-Core.UX-FRE-I-MSG B.11.11 UX-FRE-I-MSG OS-Core.UX-FRE-U-MSG B.11.11 UX-FRE-U-MSG OS-Core.UX-GER-I-MSG B.11.11 UX-GER-I-MSG OS-Core.UX-GER-U-MSG B.11.11 UX-GER-U-MSG OS-Core.UX-ITA-I-MSG B.11.11 UX-ITA-I-MSG OS-Core.UX-ITA-U-MSG B.11.11 UX-ITA-U-MSG OS-Core.UX-JPN-E-MSG B.11.11 UX-JPN-E-MSG OS-Core.UX-JPN-S-MSG B.11.11 UX-JPN-S-MSG OS-Core.UX-JPN-U-MSG B.11.11 UX-JPN-U-MSG OS-Core.UX-KOR-E-MSG B.11.11 UX-KOR-E-MSG OS-Core.UX-KOR-U-MSG B.11.11 UX-KOR-U-MSG OS-Core.UX-SCH-H-MSG B.11.11 UX-SCH-H-MSG OS-Core.UX-SCH-U-MSG B.11.11 UX-SCH-U-MSG OS-Core.UX-SPA-I-MSG B.11.11 UX-SPA-I-MSG OS-Core.UX-SPA-U-MSG B.11.11 UX-SPA-U-MSG OS-Core.UX-TCH-B-MSG B.11.11 UX-TCH-B-MSG OS-Core.UX-TCH-E-MSG B.11.11 UX-TCH-E-MSG OS-Core.UX-TCH-U-MSG B.11.11 UX-TCH-U-MSG # OVSNMPAgent B.11.11 HP-UX_10.0_SNMP_Agent_Product OVSNMPAgent.MASTER B.11.11 MASTER OVSNMPAgent.SNMP-ENG-A-MAN B.11.11 SNMP-ENG-A-MAN OVSNMPAgent.SNMP-JPN-E-MAN B.11.11 SNMP-JPN-E-MAN OVSNMPAgent.SNMP-JPN-S-MAN B.11.11 SNMP-JPN-S-MAN OVSNMPAgent.SUBAGT-HPUNIX B.11.11 SUBAGT-HPUNIX OVSNMPAgent.SUBAGT-MIB2 B.11.11 SUBAGT-MIB2 # PHCO_23340 1.0 Software Distributor Cumulative Patch PHCO_23340.SD-AGENT 1.0 SW-DIST.SD-AGENT # PHKL_23290 1.0 system_space.h header file patch PHKL_23290.KERN2-RUN 1.0 OS-Core.KERN2-RUN # PHKL_23291 1.0 gpu_data.h header file patch PHKL_23291.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23292 1.0 scsi_surface.h header file patch PHKL_23292.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23293 1.0 assert.h header file patch PHKL_23293.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23294 1.0 buf.h header file patch PHKL_23294.C-INC 1.0 ProgSupport.C-INC PHKL_23294.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23295 1.0 debug.h header file patch PHKL_23295.C-INC 1.0 ProgSupport.C-INC PHKL_23295.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23296 1.0 dnlc.h header file patch PHKL_23296.C-INC 1.0 ProgSupport.C-INC PHKL_23296.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23297 1.0 io.h header file patch PHKL_23297.C-INC 1.0 ProgSupport.C-INC PHKL_23297.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23298 1.0 ki_iface.h header file patch PHKL_23298.KERN-DEV-KIT 1.0 KernDevKit.KERN-DEV-KIT # PHKL_23299 1.0 pfdat.h header file patch PHKL_23299.C-INC 1.0 ProgSupport.C-INC PHKL_23299.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23300 1.0 proc_debug.h header file patch PHKL_23300.KERN-DEV-KIT 1.0 KernDevKit.KERN-DEV-KIT # PHKL_23301 1.0 proc_iface.h header file patch PHKL_23301.CORE-KRN 1.0 OS-Core.CORE-KRN PHKL_23301.KERN-DEV-KIT 1.0 KernDevKit.KERN-DEV-KIT # PHKL_23302 1.0 rw_lock.h header file patch PHKL_23302.C-INC 1.0 ProgSupport.C-INC PHKL_23302.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23303 1.0 sem_alpha.h header file patch PHKL_23303.C-INC 1.0 ProgSupport.C-INC PHKL_23303.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23304 1.0 sem_beta.h header file patch PHKL_23304.C-INC 1.0 ProgSupport.C-INC PHKL_23304.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23305 1.0 sem_sync.h header file patch PHKL_23305.C-INC 1.0 ProgSupport.C-INC PHKL_23305.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23306 1.0 sem_utl.h header file patch PHKL_23306.C-INC 1.0 ProgSupport.C-INC PHKL_23306.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23307 1.0 spinlock.h header file patch PHKL_23307.C-INC 1.0 ProgSupport.C-INC PHKL_23307.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23308 1.0 vas.h header file patch PHKL_23308.C-INC 1.0 ProgSupport.C-INC PHKL_23308.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23309 1.0 vfd.h header file patch PHKL_23309.C-INC 1.0 ProgSupport.C-INC PHKL_23309.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23310 1.0 vnode.h header file patch PHKL_23310.C-INC 1.0 ProgSupport.C-INC PHKL_23310.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23311 1.0 inode.h header file patch PHKL_23311.C-INC 1.0 ProgSupport.C-INC PHKL_23311.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23312 1.0 pci.h header file patch PHKL_23312.C-INC 1.0 ProgSupport.C-INC PHKL_23312.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23313 1.0 scsi_ctl.h header file patch PHKL_23313.C-INC 1.0 ProgSupport.C-INC # PHKL_23314 1.0 spinlock.h header file patch PHKL_23314.C-INC 1.0 ProgSupport.C-INC PHKL_23314.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23315 1.0 cpu.h header file patch PHKL_23315.C-INC 1.0 ProgSupport.C-INC PHKL_23315.CORE-KRN 1.0 OS-Core.CORE-KRN # PHKL_23316 1.0 map.h header file patch PHKL_23316.CORE-KRN 1.0 OS-Core.CORE-KRN # PHNE_23288 1.0 netmp.h socketvar.h unpcb.h header patch PHNE_23288.C-INC 1.0 ProgSupport.C-INC PHNE_23288.CORE-KRN 1.0 OS-Core.CORE-KRN PHNE_23288.NET-KRN 1.0 Networking.NET-KRN PHNE_23288.NET-PRG 1.0 Networking.NET-PRG # PHNE_23289 1.0 mux4.h header file patch PHNE_23289.C-INC 1.0 ProgSupport.C-INC # PartitionManager B.11.11 Partition Manager for HP-UX PartitionManager.PARMGR B.11.11 Partition Management PartitionManager.PARMGR-HELP B.11.11 Partition Manager On-line Help # PerfView C.02.00.01 HP PerfView Software/UX PerfView.PV C.02.00.01 HP PerfView files PerfView.PV-PLATFORM-HP C.02.00.01 HP PerfView files # Perl5 D.5.8.0.A Perl for HP-UX Perl5.PERL-MAN D.5.8.0.A The 32 Bit Perl Man Pages Perl5.PERL-RUN D.5.8.0.A The 32 Bit Perl Programming Language with Extensions # PrinterMgmt B.11.11 PrinterMgmt PrinterMgmt.LP-SPOOL B.11.11 LP-SPOOL PrinterMgmt.LPSP-ENG-A-MAN B.11.11 LPSP-ENG-A-MAN PrinterMgmt.LPSP-JPN-E-MAN B.11.11 LPSP-JPN-E-MAN PrinterMgmt.LPSP-JPN-S-MAN B.11.11 LPSP-JPN-S-MAN # ProgSupport B.11.11 ProgSupport ProgSupport.C-ENG-A-MAN B.11.11 C-ENG-A-MAN ProgSupport.C-INC B.11.11 C-INC ProgSupport.C-JPN-E-MAN B.11.11 C-JPN-E-MAN ProgSupport.C-JPN-S-MAN B.11.11 C-JPN-S-MAN ProgSupport.LANG-64ALIB B.11.11 LANG-64ALIB ProgSupport.LANG-MIN B.11.11 LANG-MIN ProgSupport.PAUX-ENG-A-MAN B.11.11 PAUX-ENG-A-MAN ProgSupport.PAUX-JPN-E-MAN B.11.11 PAUX-JPN-E-MAN ProgSupport.PAUX-JPN-S-MAN B.11.11 PAUX-JPN-S-MAN ProgSupport.PMIN-ENG-A-MAN B.11.11 PMIN-ENG-A-MAN ProgSupport.PMIN-JPN-E-MAN B.11.11 PMIN-JPN-E-MAN ProgSupport.PMIN-JPN-S-MAN B.11.11 PMIN-JPN-S-MAN ProgSupport.PROG-AUX B.11.11 PROG-AUX ProgSupport.PROG-AX-64ALIB B.11.11 PROG-AX-64ALIB ProgSupport.PROG-MIN B.11.11 PROG-MIN ProgSupport.PROG-MN-64ALIB B.11.11 PROG-MN-64ALIB # SCR B.11.11.30 System Configuration Repository SCR.SCR-MAN B.11.11.30 SCR Man Pages SCR.SCR-MX B.11.11.30 SCR Tools for the ServiceControl Manager. SCR.SCR-RUN B.11.11.30 SCR Runtime # SCSI-Passthru B.11.11 HP SCSI-Passthru Driver SCSI-Passthru.SPT-DVR B.11.11 NIO SCSI Pass Thru Driver (SPTD) SCSI-Passthru.SPT2-DVR B.11.11 Machine specific files for NIO SPTD # SOE B.11.11 SOE SOE.SOE B.11.11 SOE SOE.SOE-ENG-A-MAN B.11.11 SOE-ENG-A-MAN SOE.SOE-JPN-E-MAN B.11.11 SOE-JPN-E-MAN SOE.SOE-JPN-S-MAN B.11.11 SOE-JPN-S-MAN # SW-DIST B.11.11 HP-UX Software Distributor SW-DIST.GZIP B.11.11 Gnu gzip Tools SW-DIST.SD-AGENT B.11.11 HP-UX Software Distributor agent and daemon SW-DIST.SD-CMDS B.11.11 HP-UX Software Distributor commands SW-DIST.SD-ENG-A-MAN B.11.11 SD-ENG-A-MAN SW-DIST.SD-EXAMPLES B.11.11 HP-UX Software Distributor Example PSFs SW-DIST.SD-FAL B.11.11 HP-UX Software Distributor functional area launcher SW-DIST.SD-FRE-I-MSG B.11.11 French message catalogs for SD SW-DIST.SD-GER-I-MSG B.11.11 German message catalogs for SD SW-DIST.SD-HELP B.11.11 HP-UX Software Distributor on-line help SW-DIST.SD-JPN-E-HELP B.11.11 Japanese EUC Online Help for SD SW-DIST.SD-JPN-E-MAN B.11.11 SD-JPN-E-MAN SW-DIST.SD-JPN-E-MSG B.11.11 Japanese EUC message catalogs for SD SW-DIST.SD-JPN-S-HELP B.11.11 Japanese SJIS Online Help for SD SW-DIST.SD-JPN-S-MAN B.11.11 SD-JPN-S-MAN SW-DIST.SD-JPN-S-MSG B.11.11 Japanese SJIS message catalogs for SD SW-DIST.SD-KOR-E-MSG B.11.11 Korean message catalogs for SD SW-DIST.SD-TCH-B-MSG B.11.11 Traditional Chinese (big5) message catalogs for SD SW-DIST.SD-TCH-H-MSG B.11.11 Simplified Chinese (hp15CN) message catalogs for SD SW-DIST.SD-UPDATE B.11.11 Software Distributor OS update script # SecPatchChk B.01.03.01 HP-UX Security Check Tools SecPatchChk.PATCH-CHK B.01.03.01 HP-UX Security Patch Currency Checker # SecurityMon B.11.11 SecurityMon SecurityMon.AUDT-ENG-A-MAN B.11.11 AUDT-ENG-A-MAN SecurityMon.AUDT-JPN-E-MAN B.11.11 AUDT-JPN-E-MAN SecurityMon.AUDT-JPN-S-MAN B.11.11 AUDT-JPN-S-MAN SecurityMon.SEC-ENG-A-MAN B.11.11 SEC-ENG-A-MAN SecurityMon.SEC-JPN-E-MAN B.11.11 SEC-JPN-E-MAN SecurityMon.SEC-JPN-S-MAN B.11.11 SEC-JPN-S-MAN SecurityMon.SECURITY B.11.11 SECURITY # SourceControl B.11.11 SourceControl SourceControl.SRC-CNTL B.11.11 SRC-CNTL SourceControl.SRC-ENG-A-MAN B.11.11 SRC-ENG-A-MAN SourceControl.SRC-JPN-E-MAN B.11.11 SRC-JPN-E-MAN SourceControl.SRC-JPN-S-MAN B.11.11 SRC-JPN-S-MAN # Spelling B.11.11 Spelling Spelling.SPEL-ENG-A-MAN B.11.11 SPEL-ENG-A-MAN Spelling.SPEL-JPN-E-MAN B.11.11 SPEL-JPN-E-MAN Spelling.SPEL-JPN-S-MAN B.11.11 SPEL-JPN-S-MAN Spelling.SPELL B.11.11 SPELL # Streams B.11.11 HP-UX_Streams_Product Streams.STRE-ENG-A-MAN B.11.11 STRE-ENG-A-MAN Streams.STRE-JPN-E-MAN B.11.11 STRE-JPN-E-MAN Streams.STRE-JPN-S-MAN B.11.11 STRE-JPN-S-MAN Streams.STREAMS-32ALIB B.11.11 STREAMS-32ALIB Streams.STREAMS-64ALIB B.11.11 STREAMS-64ALIB Streams.STREAMS-64SLIB B.11.11 STREAMS-64SLIB Streams.STREAMS-KRN B.11.11 HP-UX Kernel support for network streams Streams.STREAMS-MIN B.11.11 STREAMS-MIN Streams.STREAMS-RUN B.11.11 STREAMS-RUN Streams.STREAMS2-KRN B.11.11 HP-UX Kernel Network Streams library and master file Streams.XTI-ENG-A-MAN B.11.11 XTI-ENG-A-MAN Streams.XTI-JPN-E-MAN B.11.11 XTI-JPN-E-MAN Streams.XTI-JPN-S-MAN B.11.11 XTI-JPN-S-MAN # Streams-TIO B.11.11 HP-UX_Streams-TIO_Product Streams-TIO.STIO-ENG-A-MAN B.11.11 STIO-ENG-A-MAN Streams-TIO.STIO-JPN-E-MAN B.11.11 STIO-JPN-E-MAN Streams-TIO.STIO-JPN-S-MAN B.11.11 STIO-JPN-S-MAN Streams-TIO.STRTIO-KRN B.11.11 HP-UX Kernel support for Streams TermIO drivers Streams-TIO.STRTIO-RUN B.11.11 STRTIO-RUN Streams-TIO.STRTIO2-KRN B.11.11 HP-UX Kernel Streams TermIO driver library and master file # SystemAdmin B.11.11 HP-UX System Administration Tools SystemAdmin.FIRST-BOOT B.11.11 FIRST-BOOT SystemAdmin.OBAM-HELP B.11.11 On-line Help for System Administration User Interface Tools SystemAdmin.OBAM-RUN B.11.11 System Administration User Interface Tools SystemAdmin.SAM B.11.11 System Administration Manager SystemAdmin.SAM-ENG-A-MAN B.11.11 SAM-ENG-A-MAN SystemAdmin.SAM-HELP B.11.11 On-line Help for System Adminstration Manager SystemAdmin.SAM-JPN-E-MAN B.11.11 SAM-JPN-E-MAN SystemAdmin.SAM-JPN-S-MAN B.11.11 SAM-JPN-S-MAN # SystemComm B.11.11 System Communication utilities - ct,cu,ptydaemon,vt,kermit SystemComm.SYSC-ENG-A-MAN B.11.11 SYSC-ENG-A-MAN SystemComm.SYSC-JPN-E-MAN B.11.11 SYSC-JPN-E-MAN SystemComm.SYSC-JPN-S-MAN B.11.11 SYSC-JPN-S-MAN SystemComm.SYSCOM B.11.11 System Communications - ct,cu,vt & kermit # TerminalMngr B.11.11 TerminalMngr TerminalMngr.TERM-ENG-A-MAN B.11.11 TERM-ENG-A-MAN TerminalMngr.TERM-JPN-E-MAN B.11.11 TERM-JPN-E-MAN TerminalMngr.TERM-JPN-S-MAN B.11.11 TERM-JPN-S-MAN TerminalMngr.TERM-MNGR-MIN B.11.11 TERM-MNGR-MIN TerminalMngr.TERM-MNGR-NHP B.11.11 TERM-MNGR-NHP TerminalMngr.TSM-FRE-I-MSG B.11.11 TSM-FRE-I-MSG TerminalMngr.TSM-GER-I-MSG B.11.11 TSM-GER-I-MSG # TextEditors B.11.11 TextEditors TextEditors.EDIT-ENG-A-MAN B.11.11 EDIT-ENG-A-MAN TextEditors.EDIT-JPN-E-MAN B.11.11 EDIT-JPN-E-MAN TextEditors.EDIT-JPN-S-MAN B.11.11 EDIT-JPN-S-MAN TextEditors.EDITORS B.11.11 EDITORS # TextFormatters B.11.11 TextFormatters TextFormatters.TEXT-ENG-A-MAN B.11.11 TEXT-ENG-A-MAN TextFormatters.TEXT-FMT B.11.11 TEXT-FMT TextFormatters.TEXT-JPN-E-MAN B.11.11 TEXT-JPN-E-MAN TextFormatters.TEXT-JPN-S-MAN B.11.11 TEXT-JPN-S-MAN # UUCP B.11.11 Unix to Unix CoPy UUCP.UUCP B.11.11 Unix to Unix CoPy UUCP.UUCP-ENG-A-MAN B.11.11 UUCP-ENG-A-MAN UUCP.UUCP-JPN-E-MAN B.11.11 UUCP-JPN-E-MAN UUCP.UUCP-JPN-S-MAN B.11.11 UUCP-JPN-S-MAN # Upgrade B.11.11 Upgrade Upgrade.UPG-JPN-E-MAN B.11.11 UPG-JPN-E-MAN Upgrade.UPG-JPN-S-MAN B.11.11 UPG-JPN-S-MAN Upgrade.UPG-MAN B.11.11 UPG-MAN Upgrade.UPG-TLINK B.11.11 UPG-TLINK # UserLicense B.11.11 HP-UX User License UserLicense.UNL-USER B.11.11 HP-UX Unlimited User License # X11 B.11.11 HP-UX X Window Software X11.MKFONTDIR B.11.11 Utility for making fonts X11.MOTIF-SHLIB B.11.11 Motif shared libraries X11.X11-FONT-AUX B.11.11 Fonts for non-minimal runtime system X11.X11-FONT-MIN B.11.11 Fonts for minimal runtime system X11.X11-FONTSRV B.11.11 X11 Font Server X11.X11-FRE-I-MSG B.11.11 French ISO message catalogs for X11 X11.X11-GER-I-MSG B.11.11 German ISO message catalogs for X11 X11.X11-ITA-I-MSG B.11.11 Italian ISO message catalogs for X11 X11.X11-JPN-E-MSG B.11.11 Japanese EUC message catalogs for X11 X11.X11-JPN-S-MSG B.11.11 Japanese SJIS message catalogs for X11 X11.X11-KOR-E-MSG B.11.11 Korean EUC message catalogs for X11 X11.X11-RUN B.11.11 X11 clients for minimal runtime system X11.X11-RUN-CL B.11.11 X11 clients for client-side environment X11.X11-RUN-CL-MAN B.11.11 Online manual pages for X11 clients X11.X11-RUN-CT-MAN B.11.11 Online manual pages for X11 contrib clients X11.X11-RUN-CTRB B.11.11 Contributed X11 clients for runtime system X11.X11-RUN-MAN B.11.11 Online manual pages for X11 clients X11.X11-SCH-H-MSG B.11.11 S-Chinese HP15 message catalogs for X11 X11.X11-SPA-I-MSG B.11.11 Spanish ISO message catalogs for X11 X11.X11-SWE-I-MSG B.11.11 Swedish ISO message catalogs for X11 X11.X11-TCH-B-MSG B.11.11 T-Chinese Big5 message catalogs for X11 X11.X11-TCH-E-MSG B.11.11 T-Chinese EUC message catalogs for X11 X11.X11R4-SHLIBS B.11.11 X11R4 and Motif 1.1 shared libraries X11.X11R5-SHLIBS B.11.11 X11R5 shared libraries X11.X11R6-SHLIBS B.11.11 X11R6 shared libraries # Xserver B.11.11 HP-UX X Server Xserver.AGRM B.11.11 Graphics Resource Manager Xserver.DDX-ADVANCED B.11.11 X Server Dynamic Advanced Drivers Xserver.DDX-ENTRY B.11.11 X Server Dynamic Entry Level Drivers Xserver.DDX-LOAD B.11.11 X Server Dynamic Driver Loader Xserver.DDX-SAM B.11.11 X Server/SAM X0Screens Help Files Xserver.DDX-SLS B.11.11 X Server Dynamic SLS Drivers Xserver.DDX-UTILS B.11.11 X Server Dynamic Driver Utilities Xserver.X11-SERV B.11.11 X Server Xserver.X11-SERV-MAN B.11.11 X Server Man Pages Xserver.XEXT-DBE B.11.11 X Server Dynamic Dbl Buff Ext Drivers Xserver.XEXT-DBE-MAN B.11.11 X Server Dynamic Dbl Buff Ext Manual Xserver.XEXT-DPMS B.11.11 X Server Display Power Management Signalling Ext Drivers Xserver.XEXT-DPMS-MAN B.11.11 X Server Display Power Management Signalling Ext Manual Xserver.XEXT-HPCR B.11.11 X Server Color Recovery Ext Drivers Xserver.XEXT-HPCR-MAN B.11.11 X Server Color Recovery Ext Manual Xserver.XEXT-MBX B.11.11 X Server Dynamic Multibuffering Drivers Xserver.XEXT-RECORD B.11.11 X Server Record Ext Drivers # apache2 2.0.35 apache2 apache2.apache2-INC apache2.apache2-MAN apache2.apache2-RUN apache2.apache2-SHLIBS # scc 1.6.18 System Configuration Collector scc.scc-run 1.6.18 System Configuration Collector # scc-srv 1.4.9 System Configuration Collector Server scc-srv.scc-srv-run 1.4.9 System Configuration Collector Server
no system default destination
scheduler is not running
version: hpux11i.openeyet.nl ESMTP Sendmail 8.9.3/8.9.3
export SCC_PROFILING=yes
scc_0000_s_general 1849954761 10084 scc_0100_s_boot 2523868895 7714 scc_0200_s_hardware 3106195076 29854 scc_0300_s_kernel 3941157385 8945 scc_0400_s_vol_mngt 1510181031 32582 scc_0500_s_network 2630142113 26387 scc_0500_u_named 3095633217 4148 scc_0600_s_software 679288576 48443 scc_0700_s_hp_ov 528363398 12396 scc_0700_u_hp_ovou_srv 196043478 81633 scc_0800_s_oracle 477083941 11624 scc_0900_s_system 4178194021 9229 scc_1000_s_users 1962084206 6604
SCC_WEB_PATH=/applications/scc/
permissions: drwx------ www sys scc-smt-select: fix:software:installed-filesets::# AdvJournalFS scc-smt-select: fix:software:installed-filesets::# EMS- scc-smt-select: fix:software:installed-filesets::# Ignite-UX scc-smt-select: fix:software:installed-filesets::# OMNIBACK-II scc-smt-select: fix:software:installed-filesets::# OVNNMgr scc-smt-select: fix:software:installed-filesets::# OVOPC scc-smt-select: fix:software:installed-filesets::# OVOPC-AGT scc-smt-select: fix:software:installed-filesets::# PerfView scc-smt-select: fix:software:installed-filesets::# Predictive scc-smt-select: fix:software:installed-filesets::# ServiceGuard scc-smt-select: fix:software:installed-filesets::# Sup-Tool-Mgr scc-smt-select: fix:software:installed-filesets::# Glance scc-smt-select: fix:software:installed-filesets::# MeasureWare scc-smt-select: fix:software:installed-packages:application,rpm::HPglance:HP: scc-smt-select: fix:software:installed-packages:application,rpm::HPmwa:HP: scc-smt-select: fix:software:installed-packages:system::OPC:HP: scc-smt-select: fix:software:installed-filesets::# VRTSvmsa scc-smt-select: fix:software:installed-filesets::# VRTSvxvm scc-smt-select: fix:software:installed-packages:system::VRTSvmsa: scc-smt-select: fix:software:installed-packages:system::VRTSvxvm: scc-smt-select: fix:software:installed-packages:system::SUNWsadmi: scc-smt-select: fix:software:installed-filesets::# scc scc-smt-select: fix:software:installed-filesets::# scc-srv scc-smt-select: fix:software:installed-packages:application::scc: scc-smt-select: fix:software:installed-packages:application::scc-srv: scc-smt-select: fix:software:installed-rpms:Utilities/System::scc: scc-smt-select: fix:software:installed-rpms:Utilities/System::scc-srv: scc-rules.conf: CheckSnapAge:all_systems:14 scc-rules.conf: CheckSnapData:all_systems:fix:messages:: scc-rules.conf: CheckSnapData:all_systems::users:logins:.*:NP:
permissions: drwx--x--x root sys
permissions: drwx------ daemon sys
login auth required /usr/lib/security/libpam_unix.1 su auth required /usr/lib/security/libpam_unix.1 dtlogin auth required /usr/lib/security/libpam_unix.1 dtaction auth required /usr/lib/security/libpam_unix.1 ftp auth required /usr/lib/security/libpam_unix.1 OTHER auth required /usr/lib/security/libpam_unix.1 login account required /usr/lib/security/libpam_unix.1 su account required /usr/lib/security/libpam_unix.1 dtlogin account required /usr/lib/security/libpam_unix.1 dtaction account required /usr/lib/security/libpam_unix.1 ftp account required /usr/lib/security/libpam_unix.1 OTHER account required /usr/lib/security/libpam_unix.1 login session required /usr/lib/security/libpam_unix.1 dtlogin session required /usr/lib/security/libpam_unix.1 dtaction session required /usr/lib/security/libpam_unix.1 OTHER session required /usr/lib/security/libpam_unix.1 login password required /usr/lib/security/libpam_unix.1 passwd password required /usr/lib/security/libpam_unix.1 dtlogin password required /usr/lib/security/libpam_unix.1 dtaction password required /usr/lib/security/libpam_unix.1 OTHER password required /usr/lib/security/libpam_unix.1
localhost
log_autostart_viewer:yes log_trim_logfile:no log_max_logfile_size:200000
label: Printers and Plotters parents: file: /usr/sam/lib/C/sam.cb time: 768549515 label: File Systems parents: Disks and File Systems file: /usr/sam/lib/C/sam.cb time: 768549515 label: Printers and Plotters parents: Peripheral Devices file: /usr/sam/lib/C/sam.cb time: 768549515 label: Tape Drives parents: Peripheral Devices file: /usr/sam/lib/C/sam.cb time: 768549515 label: File Systems parents: Peripheral Devices->Disks and File Systems file: /usr/sam/lib/C/sam.cb time: 768549515 label: Backup and Recovery parents: file: /usr/sam/lib/C/sam.cb time: 768549515 label: Routine Tasks parents: file: /usr/sam/lib/C/sam.cb time: 768549515
comment: probeer eens wat label: Accounts for Users and Groups parents: file: /usr/sam/lib/C/sam.cb time: 974188800
comment: nog een testje label: Disks and File Systems parents: file: /usr/sam/lib/C/sam.cb time: 974188800
/opt/perf/help/gp /opt/resmon/bin /usr/lib/X11/Xserver/misc/sam /usr/sam/lib
MAXFILE 35 FILE /usr/sam/lib/br/br.tm NUMBER 0 PREFIX br TYPE tm REV $Header: /samsrc/br/data/br.tm 72.21 1996-10-18 06:26:50-06 hmgr Exp $ CAT /usr/sam/lib/%L/br_scr.cat SET 2 LIB /usr/sam/lib/br/br.sl FILE /usr/sam/lib/dps/dps.tm NUMBER 1 PREFIX dps TYPE tm REV $Header: /samsrc/dps/data/dps.tm 72.10 1997-03-16 13:14:11-07 hmgr Exp $ CAT /usr/sam/lib/%L/dps.cat SET 1 PATH .:/usr/bin:/usr/sbin:/usr/sam/bin:/usr/sam/lbin:/opt/pd/bin:/opt/pd/lbin LIB /usr/sam/lib/dps/dps.sl LIB /usr/sam/lib/pd/pd_comlib.sl FILE /usr/sam/lib/fal/fal.tm NUMBER 2 PREFIX fal TYPE tm REV $Header: /samsrc/fal/data/fal.tm 72.21 2000-07-17 17:26:56-06 tkopren Exp $ CAT /usr/sam/lib/%L/fal_scr.cat SET 2 LIB /usr/sam/lib/fal/fal.sl FILE /usr/sam/lib/fs/fs.tm NUMBER 3 PREFIX fs TYPE tm REV @(#) $Header: /samsrc/fs/data/fs.tm 73.23 2000-07-05 10:48:21-06 rlj Exp $ LIB /usr/sam/lib/fs/fs.sl LIB /usr/sam/lib/fs/fs_com.sl LIB /usr/sam/lib/nnc/nnc.sl LIB /usr/sam/lib/pd/pd_comlib.sl FILE /usr/sam/lib/kc/kc.tm NUMBER 4 PREFIX kc TYPE tm REV $Header: /samsrc/kc/data/kc.tm 73.15 2000-05-25 10:30:15-06 gates Exp $ LIB /usr/sam/lib/kc/kc_com.sl FILE /usr/sam/lib/lp/lp.tm NUMBER 5 PREFIX lp TYPE tm REV $Header: /samsrc/lp/data/lp.tm 73.3 1997-10-23 03:57:51-06 hmgr Exp $ CAT /usr/sam/lib/%L/lp.cat SET 1 PATH .:/usr/bin:/usr/sbin:/usr/sam/bin:/usr/sam/lbin:/opt/hpnp/bin:/usr/lib/hpnp/bin LIB /usr/sam/lib/lp/lp.sl FILE /usr/sam/lib/mo/mo.tm NUMBER 6 PREFIX mo TYPE tm REV $Header: /samsrc/mo/data/mo.tm 73.3 2000-09-06 09:49:44-06 tkopren Exp $ CAT /usr/sam/lib/%L/mo_scr.cat SET 1 LIB /usr/sam/lib/mo/mo.sl FILE /usr/sam/lib/nnc/nnc.tm NUMBER 7 PREFIX nnc TYPE tm REV $Header: /samsrc/nnc/data/nnc.tm 73.20 2000-07-14 06:46:51-06 samiso Exp $ PATH .:/usr/bin:/usr/sbin:/usr/sam/bin:/usr/sam/lbin LIB /usr/sam/lib/fs/fs.sl LIB /usr/sam/lib/fs/fs_com.sl LIB /usr/sam/lib/nnc/nnc.sl LIB /usr/sam/lib/nnc/boot.sl LIB /usr/sam/lib/pd/pd_comlib.sl FILE /usr/sam/lib/pd/pd.tm NUMBER 8 PREFIX pd TYPE tm REV $Header: /samsrc/pd/data/pd.tm 73.20 2000-09-06 17:32:17-06 olender Exp $ CAT /usr/sam/lib/%L/pd_scr.cat SET 2 LIB /usr/sam/lib/pd/pd.sl LIB /usr/sam/lib/pd/pd_comlib.sl LIB /usr/sam/lib/tm/tm_comlib.sl LIB /usr/lib/libolrad.sl FILE /usr/sam/lib/pm/pm.tm NUMBER 9 PREFIX pm TYPE tm REV @(#) $Header: /samsrc/pm/data/pm.tm 73.1 1997-12-30 05:11:24-07 hmgr Exp $ LIB /usr/sam/lib/pm/pm.sl FILE /usr/sam/lib/ra/ra.tm NUMBER 10 PREFIX ra TYPE tm REV $Header: /samsrc/ra/data/ra.tm 72.7 1995-03-03 08:31:14-07 hmgr Exp $ LIB /usr/sam/lib/ra/ra.sl FILE /usr/sam/lib/rt/rt.tm NUMBER 11 PREFIX rt TYPE tm REV $Header: /samsrc/rt/data/rt.tm 73.1 1999-03-08 04:25:05-07 hmgr Exp $ LIB /usr/sam/lib/rt/rt.sl FILE /usr/sam/lib/sam/com.tm NUMBER 12 PREFIX com TYPE tm REV $Header: /samsrc/common/data/com.tm 72.31 1996-12-19 03:08:12-07 hmgr Exp $ CAT /usr/sam/lib/%L/com_scr.cat SET 2 FILE /usr/sam/lib/sam/sam.tm NUMBER 13 PREFIX ct TYPE tm REV $Header: /trisrc/taskmanager/data/sam.tm 74.4 1997-12-23 04:41:33-07 hmgr Exp $ CAT /usr/sam/lib/%L/arch.cat SET 1 PATH /usr/bin:/usr/sbin:/usr/sam/bin:/usr/sam/lbin FILE /usr/sam/lib/tm/tm.tm NUMBER 14 PREFIX tm TYPE tm REV $Header: /samsrc/tm/data/tm.tm 72.16 1997-04-03 10:07:58-07 hmgr Exp $ LIB /usr/sam/lib/tm/tm_comlib.sl LIB /usr/sam/lib/pd/pd_comlib.sl LIB /usr/sam/lib/kc/kc_com.sl FILE /usr/sam/lib/tritest/tritest.tm NUMBER 15 PREFIX tst TYPE tm REV $Header: /samsrc/tritest/data/tritest.tm 73.4 1999-02-26 05:13:27-07 hmgr Exp $ CAT /usr/sam/lib/%L/tritest.cat SET 1 LIB /usr/sam/lib/tritest/tritest.sl FILE /usr/sam/lib/ts/ts.tm NUMBER 16 PREFIX ts TYPE tm REV $Header: /samsrc/ts/data/ts.tm 73.1 1997-10-21 11:49:42-06 hmgr Exp $ LIB /usr/sam/lib/ts/ts.sl FILE /usr/sam/lib/ug/ug.tm NUMBER 17 PREFIX ug TYPE tm REV $Header: /samsrc/ug/data/ug.tm 73.13 2000-08-07 15:07:53-06 ckrnavek Exp $ LIB /usr/sam/lib/ug/ug.sl LIB /usr/sam/lib/ug/ug_comlib.sl FILE /usr/sam/lib/br/br.da NUMBER 18 TYPE da REV $Revision: 72.5 $ FILE /usr/sam/lib/fal/fal.da NUMBER 19 TYPE da REV $Revision: 72.9 $ FILE /usr/sam/lib/fs/fs.da NUMBER 20 TYPE da REV $Revision: 73.11 $ FILE /usr/sam/lib/kc/kc.da NUMBER 21 TYPE da REV $Revision: 73.10 $ FILE /usr/sam/lib/lp/lp.da NUMBER 22 TYPE da REV $Revision: 73.1 $ FILE /usr/sam/lib/mo/mo.da NUMBER 23 TYPE da FILE /usr/sam/lib/nnc/nnc.da NUMBER 24 TYPE da FILE /usr/sam/lib/pd/pd.da NUMBER 25 TYPE da REV $Revision: 73.6 $ LIB /usr/sam/lib/pd/pd_comlib.sl FILE /usr/sam/lib/pm/pm.da NUMBER 26 TYPE da REV @(#) $Revision: 73.2 $ FILE /usr/sam/lib/ra/ra.da NUMBER 27 TYPE da REV $Revision: 72.2 $ FILE /usr/sam/lib/rt/rt.da NUMBER 28 TYPE da REV $Revision: 72.2 $ FILE /usr/sam/lib/sam/sam.da NUMBER 29 TYPE da REV $Revision: 74.2 $ FILE /usr/sam/lib/tm/tm.da NUMBER 30 TYPE da REV $Revision: 72.10 $ FILE /usr/sam/lib/tritest/tritest.da NUMBER 31 TYPE da FILE /usr/sam/lib/ts/ts.da NUMBER 32 TYPE da REV $Revision: 72.19 $ LIB /usr/sam/lib/ts/ts.sl FILE /usr/sam/lib/ug/ug.da NUMBER 33 TYPE da REV $Revision: 73.3 $ FILE /usr/sam/lib/sam/sam.mof NUMBER 34 TYPE mof
/dev /etc /export /mnt /opt /sbin /stand /usr /var
root other bin sys adm daemon mail lp nogroup
root daemon bin sys adm uucp lp nuucp hpdb nobody www
---- SCHEDULE TIME INTERVAL EXPIRATION TIMEOUT DEFAULT Off 1 week 3 months 15 minutes
# Object Ownership: User= root # Group=sys # Realm=hpux11i.openeyet.nl # # default_realm=hpux11i.openeyet.nl any_other:-r---
# Object Ownership: User= root # Group=sys # Realm=hpux11i.openeyet.nl # # default_realm=hpux11i.openeyet.nl object_owner:crwit any_other:-r---
# Object Ownership: User= root # Group=sys # Realm=hpux11i.openeyet.nl # # default_realm=hpux11i.openeyet.nl object_owner:crwit any_other:-r---
This release of swmodify supports the following values for the
"data_model_revision" attribute:
2.40 Use the features of the SD 2.4 data model.
2.10 Use only the features of the SD 2.1 data model.
Specifying any of these values will control how swmodify reads object
and attribute definitions. Definitions are written with the current
("2.40") data model features if the layout_version is set to "1.0".
This release of swmodify can write object and attribute definitions to
a target depot with the "layout_version":
1.0 Layout version from the IEEE Standard
1387.2-1995.
Version 8.9.3
Compiled with: LDAPMAP MAP_REGEX LOG MATCHGECOS MIME7TO8 MIME8TO7
NAMED_BIND NDBM NETINET NETUNIX NEWDB NIS QUEUE SCANF SMTP
USERDB XDEBUG
setoption SevenBitInput (7).=False
setoption EightBitMode (8).=pass8
setoption AliasWait (a).=10
setoption AliasFile (A).=/etc/mail/aliases
setoption MinFreeBlocks (b).=100
setoption BlankSub (B).=.
setoption HoldExpensive (c).=False
setoption DeliveryMode (d).=background
setoption TempFileMode (F).=0600
setoption HelpFile (H).=/usr/share/lib/sendmail.hf
setoption SendMimeErrors (j).=True
setoption ForwardPath (J).=$z/.forward.$w+$h:$z/.forward+$h:$z/.forward.$w:$z/.forward
setoption ConnectionCacheSize (k).=2
setoption ConnectionCacheTimeout (K).=5m
setoption UseErrorsTo (l).=False
setoption LogLevel (L).=9
setoption CheckAliases (n).=False
setoption OldStyleHeaders (o).=True
setoption PrivacyOptions (p).=authwarnings
setoption QueueDirectory (Q).=/var/spool/mqueue
setoption Timeout (r).queuereturn=5d
setoption Timeout (r).queuewarn=4h
setoption SuperSafe (s).=True
setoption StatusFile (S).=/etc/mail/sendmail.st
setoption TimeZoneSpec (t).=
setoption DefaultUser (u).=1:1
setoption TryNullMXList (w).=T
setoption SmtpGreetingMessage (0x90).=$j Sendmail $v/$Z; $b
setoption UnixFromLine (0x91).=From $g $d
setoption OperatorChars (0x92).=.:%@!^/[]+
setoption MaxHeadersLength (0xaa).=32768
drop_privileges(0): Real[UG]id=0:3, RunAs[UG]id=0:0
getauthinfo: root@localhost
============ SYSTEM IDENTITY (after readcf) ============
(short domain name) $w = hpux11i
(canonical domain name) $j = $w.openeyet.nl
(subdomain name) $m = openeyet.nl
(node name) $k = hpux11i
========================================================
setoption HoldExpensive (c).=F
setoption DeliveryMode (d).=
map_rewrite(@), av = (nullv)
map_rewrite => @
ADDRESS TEST MODE (ruleset 3 NOT automatically invoked)
Enter <ruleset> <address>
> >
====finis: stat 0 e_id=NOQUEUE e_flags=1<OLDSTYLE>
MAILER-DAEMON : root postmaster : root nobody : /dev/null operator : root uucp : root daemon : root ftp-bugs : root scc-transfer: "| /opt/scc-srv/bin/scc-receive-mail"
V8/Berkeley
Cwlocalhost
Fw/etc/mail/sendmail.cw
FU-o /etc/mail/uucp-hosts
DX
DW
Dj$w.openeyet.nl
CP.
DS
CO @ % !
C..
C[[
Kresolve host -a<OK> -T<TEMP>
FR-o /etc/mail/relay-domains
DR
DH
Kdequote dequote
CE root
DM
DnMAILER-DAEMON
CPREDIRECT
DZ8.9.3
DP
DQ
O SevenBitInput=False
O EightBitMode=pass8
O AliasWait=10
O AliasFile=/etc/mail/aliases
O MinFreeBlocks=100
O BlankSub=.
O HoldExpensive=False
O DeliveryMode=background
O TempFileMode=0600
O HelpFile=/usr/share/lib/sendmail.hf
O SendMimeErrors=True
O ForwardPath=$z/.forward.$w+$h:$z/.forward+$h:$z/.forward.$w:$z/.forward
O ConnectionCacheSize=2
O ConnectionCacheTimeout=5m
O UseErrorsTo=False
O LogLevel=9
O CheckAliases=False
O OldStyleHeaders=True
O PrivacyOptions=authwarnings
O QueueDirectory=/var/spool/mqueue
O Timeout.queuereturn=5d
O Timeout.queuewarn=4h
O SuperSafe=True
O StatusFile=/etc/mail/sendmail.st
O TimeZoneSpec=
O DefaultUser=1:1
O TryNullMXList=T
O SmtpGreetingMessage=$j Sendmail $v/$Z; $b
O UnixFromLine=From $g $d
O OperatorChars=.:%@!^/[]+
O MaxHeadersLength=32768
Pfirst-class=0
Pspecial-delivery=100
Plist=-30
Pbulk=-60
Pjunk=-100
Troot
Tdaemon
Tuucp
Tx400
H?P?Return-Path: <$g>
HReceived: $?sfrom $s $.$?_($?s$|from $.$_)
$.by $j ($v/$Z)$?r with $r$. id $i$?u
for $u; $|;
$.$b
H?D?Resent-Date: $a
H?D?Date: $a
H?F?Resent-From: $?x$x <$g>$|$g$.
H?F?From: $?x$x <$g>$|$g$.
H?x?Full-Name: $x
H?M?Resent-Message-Id: <$t.$i@$j>
H?M?Message-Id: <$t.$i@$j>
S3
R<> $@$n
R$*<> $@$n
R$@ $@ <@>
R$* $: $1 <@> mark addresses
R$* < $* > $* <@> $: $1 < $2 > $3 unmark <addr>
R$* :: $* <@> $: $1 :: $2 unmark node::addr
R:include: $* <@> $: :include: $1 unmark :include:...
R$* [ $* : $* ] <@> $: $1 [ $2 : $3 ] unmark IPv6 addrs
R$* : $* [ $* ] $: $1 : $2 [ $3 ] <@> remark if leading colon
R$* : $* <@> $: $2 strip colon if marked
R$* <@> $: $1 unmark
R$* ; $1 strip trailing semi
R$* < $* ; > $1 < $2 > bogus bracketed semi
R$@ $@ :; <@>
R$* $: < $1 > housekeeping <>
R$+ < $* > < $2 > strip excess on left
R< $* > $+ < $1 > strip excess on right
R<> $@ < @ > MAIL FROM:<> case
R< $+ > $: $1 remove housekeeping <>
R@ $+ , $+ @ $1 : $2 change all "," to ":"
R@ $+ : $+ $@ $>96 < @$1 > : $2 handle <route-addr>
R $+ : $* ; @ $+ $@ $>96 $1 : $2 ; < @ $3 > list syntax
R $+ : $* ; $@ $1 : $2; list syntax
R$+ @ $+ $: $1 < @ $2 > focus on domain
R$+ < $+ @ $+ > $1 $2 < @ $3 > move gaze right
R$+ < @ $+ > $@ $>96 $1 < @ $2 > already canonical
R$* < @ $* : $* > $* $1 < @ $2 $3 > $4 nix colons in addrs
R$- ! $+ $@ $>96 $2 < @ $1 .UUCP > resolve uucp names
R$+ . $- ! $+ $@ $>96 $3 < @ $1 . $2 > domain uucps
R$+ ! $+ $@ $>96 $2 < @ $1 .UUCP > uucp subdomains
R$* % $* $1 @ $2 First make them all @s.
R$* @ $* @ $* $1 % $2 @ $3 Undo all but the last.
R$* @ $* $@ $>96 $1 < @ $2 > Insert < > and finish
R$* $@ $>96 $1
S96
R$* < @ localhost > $* $: $1 < @ $j . > $2 no domain at all
R$* < @ localhost . $m > $* $: $1 < @ $j . > $2 local domain
R$* < @ localhost . UUCP > $* $: $1 < @ $j . > $2 .UUCP domain
R$* < @ [ $+ ] > $* $: $1 < @@ [ $2 ] > $3 mark [a.b.c.d]
R$* < @@ $=w > $* $: $1 < @ $j . > $3 self-literal
R$* < @@ $+ > $* $@ $1 < @ $2 > $3 canon IP addr
R$* < @ $=U . UUCP > $* $@ $1 < @ $2 . UUCP . > $3
R$* < @ $+ . UUCP > $* $: $1 < @ $[ $2 $] . UUCP . > $3
R$* < @ $+ . . UUCP . > $* $@ $1 < @ $2 . > $3
R$* < @ $* $~P > $* $: $1 < @ $[ $2 $3 $] > $4
R$* < @ $=w > $* $: $1 < @ $2 . > $3
R$* < @ $j > $* $: $1 < @ $j . > $2
R$* < @ $=M > $* $: $1 < @ $2 . > $3
R$* < @ $* $=P > $* $: $1 < @ $2 $3 . > $4
R$* < @ $* . . > $* $1 < @ $2 . > $3
S4
R$* <@> $@ handle <> and list:;
R$* < @ $+ . > $* $1 < @ $2 > $3
R$* < @ *LOCAL* > $* $1 < @ $j > $2
R$* < $+ > $* $1 $2 $3 defocus
R@ $+ : @ $+ : $+ @ $1 , @ $2 : $3 <route-addr> canonical
R@ $* $@ @ $1 ... and exit
R$+ @ $- . UUCP $2!$1 u@h.UUCP => h!u
R$+ % $=w @ $=w $1 @ $j u%host@host => u@host
S97
R$* $: $>3 $1
R$* $@ $>0 $1
S0
R$* $: $>Parse0 $1 initial parsing
R<@> $#local $: <@> special case error msgs
R$* $: $>98 $1 handle local hacks
R$+ / $* / $* / $* / $* < @ $=w . > $#error $: X\.400 delivery agent not configured
R$+ / $* < @ $=w . > $#error $: OpenMail delivery agent not configured
R$* $: $>Parse1 $1 final parsing
SParse0
R<@> $@ <@> special case error msgs
R$* : $* ; <@> $#error $@ 5.1.3 $: "List:; syntax illegal for recipient addresses"
R<@ $+> $#error $@ 5.1.3 $: "User address required"
R$* $: <> $1
R<> $* < @ [ $+ ] > $* $1 < @ [ $2 ] > $3
R<> $* <$* : $* > $* $#error $@ 5.1.3 $: "Colon illegal in host name part"
R<> $* $1
R$* < @ . $* > $* $#error $@ 5.1.2 $: "Invalid host name"
R$* < @ $* .. $* > $* $#error $@ 5.1.2 $: "Invalid host name"
R$* < @ > $* $@ $>Parse0 $>3 $1 user@ => user
R< @ $=w . > : $* $@ $>Parse0 $>3 $2 @here:... -> ...
R$- < @ $=w . > $: $(dequote $1 $) < @ $2 . > dequote "foo"@here
R< @ $+ > $#error $@ 5.1.3 $: "User address required"
R$* $=O $* < @ $=w . > $@ $>Parse0 $>3 $1 $2 $3 ...@here -> ...
R$- $: $(dequote $1 $) < @ *LOCAL* > dequote "foo"
R< @ *LOCAL* > $#error $@ 5.1.3 $: "User address required"
R$* $=O $* < @ *LOCAL* >
$@ $>Parse0 $>3 $1 $2 $3 ...@*LOCAL* -> ...
R$* < @ *LOCAL* > $: $1
SParse1
R$* < @ [ $+ ] > $* $: $>98 $1 < @ [ $2 ] > $3 numeric internet spec
R$* < @ [ $+ ] > $* $#esmtp $@ [$2] $: $1 < @ [$2] > $3 still numeric: send
$: < $(virtuser $1 + * @ $3 $@ $1 $: @ $) > $1 + $2 < @ $3 . >
$: < $(virtuser $1 @ $3 $@ $1 $: @ $) > $1 + $2 < @ $3 . >
R$=L < @ $=w . > $#local $: @ $1 special local names
R$+ < @ $=w . > $#local $: $1 regular local name
R$* < @ $=Z . UUCP. > $* $#uucp-uudom $@ $2 $: $1 < @ $2 .UUCP. > $3
R$* < @ $=Y . UUCP. > $* $#uucp-new $@ $2 $: $1 < @ $2 .UUCP. > $3
R$* < @ $=U . UUCP. > $* $#uucp-old $@ $2 $: $1 < @ $2 .UUCP. > $3
R$* < @ $+ .UUCP. > $* $#uucp-old $@ $2 $: $1 < @ $2 .UUCP. > $3 user@host.UUCP
R$* < @ $* > $* $: $>95 < $S > $1 < @ $2 > $3 glue on smarthost name
R$* < @$* > $* $#esmtp $@ $2 $: $1 < @ $2 > $3 user@host.domain
R/$* $#local $: / $1 absolute file pathname
R|$* $#local $: | $1 to a program
R:include:$* $#local $: :include: $1 to :include: list
R$+ / $* / $* / $* / $* $#error $: X\.400 delivery agent not configured
R$+ / $* $#error $: OpenMail delivery agent not configured
R$+ $: $(dequote $1 $) strip quotes
R$+ $=O $+ $@ $>97 $1 $2 $3 try again
R$=L $#local $: @ $1 special local names
R$+ $#local $: $1 regular local names
S5
R$+ + * $#local $@ $&h $: $1
R$+ + $* $#local $@ + $2 $: $1 + *
R$+ $: <> $1
R< > $+ $: < $H > $1 try hub
R< > $+ $: < $R > $1 try relay
R< > $+ $: < > < $1 $&h > nope, restore +detail
R< > < $+ + $* > $* < > < $1 > + $2 $3 find the user part
R< > < $+ > + $* $#local $@ $2 $: @ $1 strip the extra +
R< > < $+ > $@ $1 no +detail
R$+ $: $1 <> $&h add +detail back in
R$+ <> + $* $: $1 + $2 check whether +detail
R$+ <> $* $: $1 else discard
R< local : $* > $* $: $>95 < local : $1 > $2 no host extension
R< error : $* > $* $: $>95 < error : $1 > $2 no host extension
R< $- : $+ > $+ $: $>95 < $1 : $2 > $3 < @ $2 >
R< $+ > $+ $@ $>95 < $1 > $2 < @ $1 >
S90
S95
R< > $* $@ $1 strip off null relay
R< error : $- $+ > $* $#error $@ $(dequote $1 $) $: $2
R< local : $* > $* $>CanonLocal < $1 > $2
R< $- : $+ @ $+ > $*<$*>$* $# $1 $@ $3 $: $2<@$3> use literal user
R< $- : $+ > $* $# $1 $@ $2 $: $3 try qualified mailer
R< $=w > $* $@ $2 delete local host
R< $+ > $* $#relay $@ $1 $: $2 use unqualified mailer
SCanonLocal
R< $* > < @ $+ > : $+ $@ $>97 $3
R< $* > $+ $=O $+ < @ $+ > $@ $>97 $2 $3 $4
R< $* > $* < @ $* . > $: < $1 > $2 < @ $3 >
R< > $* < @ $* > $* $#local $@ $1@$2 $: $1
R< > $+ $#local $@ $1 $: $1
R< $+ @ $+ > $* < @ $* > $: < $1 > $3 < @ $4 >
R< $+ > $* <@ $* > $* $#local $@ $2@$3 $: $1
R< $+ > $* $#local $@ $2 $: $1
S93
R$=E < @ *LOCAL* > $@ $1 < @ $j . > leave exposed
R$=E < @ $=M . > $@ $1 < @ $2 . >
R$=E < @ $=w . > $@ $1 < @ $2 . >
R$* < @ $=M . > $* $: $1 < @ $2 . @ $M > $3 convert masqueraded doms
R$* < @ $=w . > $* $: $1 < @ $2 . @ $M > $3
R$* < @ *LOCAL* > $* $: $1 < @ $j . @ $M > $2
R$* < @ $+ @ > $* $: $1 < @ $2 > $3 $M is null
R$* < @ $+ @ $+ > $* $: $1 < @ $3 . > $4 $M is not null
S94
R$+ $@ $>93 $1
S98
R$* < @ $+ .REDIRECT. > $: $1 < @ $2 . REDIRECT . > < ${opMode} >
R$* < @ $+ .REDIRECT. > <i> $: $1 < @ $2 . REDIRECT. >
R$* < @ $+ .REDIRECT. > < $- > $# error $@ 5.1.1 $: "551 User has moved; please try " <$1@$2>
Scheck_local
R< > $* $@ $1 $m not set - return
R<$*> $* $2 just strip
R$+ < @ $+.$m. > $#esmtp $@ $2.$m $: $1 < @$2.$m > deliver it !
R$+ < @ $m. > $#esmtp $@ $m $: $1 < @$m > deliver it !
SCanonAddr
R$* $: $>Parse0 $>3 $1 make domain canonical
R< @ $+ > : $* @ $* < @ $1 > : $2 % $3 change @ to % in src route
R$* < @ $+ > : $* : $* $3 $1 < @ $2 > : $4 change to % hack.
R$* < @ $+ > : $* $3 $1 < @ $2 >
SParseRecipient
R$* $: <?> $>CanonAddr $1
R<?> $* < @ $* . > <?> $1 < @ $2 > strip trailing dots
R<?> $- < @ $* > $: <?> $(dequote $1 $) < @ $2 > dequote local part
R<?> $* $=O $* < @ $* > $: <NO> $1 $2 $3 < @ $4>
R<?> $* $@ $1
R<NO> $* < @ $* $=R > $: <RELAY> $1 < @ $2 $3 >
R<RELAY> $* < @ $* > $@ $>ParseRecipient $1
R<$-> $* $@ $2
SLocal_check_relay
Scheck_relay
R$* $: $1 $| $>"Local_check_relay" $1
R$* $| $* $| $#$* $#$3
R$* $| $* $| $* $@ $>"Basic_check_relay" $1 $| $2
SBasic_check_relay
R$* $: < ${deliveryMode} > $1
R< d > $* $@ deferred
R< $* > $* $: $2
SLocal_check_mail
Scheck_mail
R$* $: $1 $| $>"Local_check_mail" $1
R$* $| $#$* $#$2
R$* $| $* $@ $>"Basic_check_mail" $1
SBasic_check_mail
R$* $: < ${deliveryMode} > $1
R< d > $* $@ deferred
R< $* > $* $: $2
R<> $@ <OK>
R$* $: <?> $>CanonAddr $1
R<?> $* < @ $+ . > <?> $1 < @ $2 > strip trailing dots
R<?> $* < $* $=P > $* $: <OK> $1 < @ $2 $3 > $4
R<?> $* < @ $+ > $* $: <? $(resolve $2 $: $2 <PERM> $) > $1 < @ $2 > $3
R<? $* <$->> $* < @ $+ > $*
$: <$2> $3 < @ $4 > $5
R<$+> $* < @localhost > $: < ? $&{client_name} > <$1> $2 < @localhost >
R<$+> $* < @localhost.$m >
$: < ? $&{client_name} > <$1> $2 < @localhost.$m >
R<$+> $* < @localhost.UUCP >
$: < ? $&{client_name} > <$1> $2 < @localhost.UUCP >
R<? $=w> <$+> $* <?> <$2> $3
R<? $+> <$+> $* $#error $@ 5.5.4 $: "553 Real domain name required"
R<?> <$+> $* $: <$1> $2
R<?> $* $: < ? $&{client_name} > $1
R<?> $* $@ <OK> ...local unqualed ok
R<? $+> $* $#error $@ 5.5.4 $: "553 Domain name required"
...remote is not
R<?> $* $@ <OK>
R<OK> $* $@ <OK>
R<TEMP> $* $#error $@ 4.1.8 $: "451 Sender domain must resolve"
R<PERM> $* $#error $@ 5.1.8 $: "501 Sender domain must exist"
SLocal_check_rcpt
Scheck_rcpt
R$* $: $1 $| $>"Local_check_rcpt" $1
R$* $| $#$* $#$2
R$* $| $* $@ $>"Basic_check_rcpt" $1
SBasic_check_rcpt
R$* $: < ${deliveryMode} > $1
R< d > $* $@ deferred
R< $* > $* $: $2
R$* $: $>ParseRecipient $1 strip relayable hosts
R$+ < @ $=w > $@ OK
R$+ < @ $* $=R > $@ OK
R$* $: <?> $1
R<?> $* < @ $+ > $: <REMOTE> $1 < @ $2 >
R<?> $+ $@ OK
R<$+> $* $: $2
R$* $: <?> $&{client_name}
R<?> [$+] $: <BAD> [$1]
R<?> $* $~P $: <?> $[ $1 $2 $]
R<$-> $* $: $2
R$* . $1 strip trailing dots
R$@ $@ OK
R$=w $@ OK
R$* $=R $@ OK
R$* $: $&{client_addr}
R$@ $@ OK originated locally
R0 $@ OK originated locally
R$=R $* $@ OK relayable IP address
R$* $: [ $1 ] put brackets around it...
R$=w $@ OK ... and see if it is local
R$* $#error $@ 5.7.1 $: "550 Relaying denied"
Mlocal, P=/usr/bin/rmail, F=lsDFMAw5:/|@qm9, S=10/30, R=20/40,
T=DNS/RFC822/X-Unix,
A=rmail -d $u
Mprog, P=/usr/bin/sh, F=lsDFMoqeu9, S=10/30, R=20/40, D=$z:/,
T=X-Unix,
A=sh -c $u
S10
R<@> $n errors to mailer-daemon
R@ <@ $*> $n temporarily bypass Sun bogosity
R$+ $: $>50 $1 add local domain if needed
R$* $: $>94 $1 do masquerading
S20
R$+ < @ $* > $: $1 strip host part
S30
R<@> $n errors to mailer-daemon
R@ <@ $*> $n temporarily bypass Sun bogosity
R$+ $: $>50 $1 add local domain if needed
R$* $: $>93 $1 do masquerading
S40
R$+ $: $>50 $1 add local domain if needed
S50
R$* < @ $* > $* $@ $1 < @ $2 > $3 already fully qualified
R$+ $@ $1 < @ *LOCAL* > add local qualification
Msmtp, P=[IPC], F=mDFMuX, S=11/31, R=21, E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=IPC $h
Mesmtp, P=[IPC], F=mDFMuXa, S=11/31, R=21, E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=IPC $h
Msmtp8, P=[IPC], F=mDFMuX8, S=11/31, R=21, E=\r\n, L=990,
T=DNS/RFC822/SMTP,
A=IPC $h
Mrelay, P=[IPC], F=mDFMuXa8, S=11/31, R=61, E=\r\n, L=2040,
T=DNS/RFC822/SMTP,
A=IPC $h
S11
R$+ $: $>51 $1 sender/recipient common
R$* :; <@> $@ list:; special case
R$* $: $>61 $1 qualify unqual'ed names
R$+ $: $>94 $1 do masquerading
S21
R$+ $: $>51 $1 sender/recipient common
R$+ $: $>61 $1 qualify unqual'ed names
S31
R$+ $: $>51 $1 sender/recipient common
R:; <@> $@ list:; special case
R$* <@> $* $@ $1 <@> $2 pass null host through
R< @ $* > $* $@ < @ $1 > $2 pass route-addr through
R$* $: $>61 $1 qualify unqual'ed names
R$+ $: $>93 $1 do masquerading
S51
R< @ $+ > $* $@ < @ $1 > $2 resolve <route-addr>
R$+ < @ $+ .UUCP. > $: < $2 ! > $1 convert to UUCP form
R$+ < @ $* > $* $@ $1 < @ $2 > $3 not UUCP form
R< $&h ! > $- ! $+ $@ $2 < @ $1 .UUCP. >
R< $&h ! > $-.$+ ! $+ $@ $3 < @ $1.$2 >
R< $&h ! > $+ $@ $1 < @ $&h .UUCP. >
R< $+ ! > $+ $: $1 ! $2 < @ $Y > use UUCP_RELAY
R$+ < @ $+ : $+ > $@ $1 < @ $3 > strip mailer: part
R$+ < @ > $: $1 < @ *LOCAL* > if no UUCP_RELAY
S61
R$* < @ $* > $* $@ $1 < @ $2 > $3 already fully qualified
R$+ $@ $1 < @ *LOCAL* > add local qualification
S71
R$+ $: $>61 $1
R$+ $: $>93 $1
Mx400, P=/opt/x400/lbin/x4mailer, F=CDMFmn, S=14, R=24, A=x4mailer -f $g $u
S14
R$+ $: $>81 $1
S24
R$+ $: $>81 $1
Mopenmail, P=/opt/openmail/bin/unix.in, F=DFLMXmnu, E=\n, S=15, R=25, A=unix.in
S15
R$+ $: $>81 $1
S25
R$+ $: $>81 $1
Momxport, P=/opt/openmail/bin/xport.in, F=LMn, A=xport.in $u
S81
R$* < @ hpx400 . UUCP > $* $: $1 < @ $j . > $2 x.400 in UUCP syntax
R$* < @ $+ > $* $@ $1 < @ $2 > $3 already has (remote) dom
R$+ / $* / $* / $* / $* $: $1 / $2 / $3 / $4 / $5 < @ $j > local x400 rcp
R$+ $: $>94 $1 do masquerading
Muucp, P=/usr/bin/uux, F=DFMhuUd, S=12, R=22/42, M=100000,
T=X-UUCP/X-UUCP/X-Unix,
A=uux - -r -a$g -gC $h!rmail ($u)
Muucp-old, P=/usr/bin/uux, F=DFMhuUd, S=12, R=22/42, M=100000,
T=X-UUCP/X-UUCP/X-Unix,
A=uux - -r -a$g -gC $h!rmail ($u)
Msuucp, P=/usr/bin/uux, F=mDFMhuUd, S=12, R=22/42, M=100000,
T=X-UUCP/X-UUCP/X-Unix,
A=uux - -r -a$g -gC $h!rmail ($u)
Muucp-new, P=/usr/bin/uux, F=mDFMhuUd, S=12, R=22/42, M=100000,
T=X-UUCP/X-UUCP/X-Unix,
A=uux - -r -a$g -gC $h!rmail ($u)
Muucp-dom, P=/usr/bin/uux, F=mDFMhud, S=52/31, R=21, M=100000,
T=X-UUCP/X-UUCP/X-Unix,
A=uux - -r -a$g -gC $h!rmail ($u)
Muucp-uudom, P=/usr/bin/uux, F=mDFMhud, S=72/31, R=21, M=100000,
T=X-UUCP/X-UUCP/X-Unix,
A=uux - -r -a$g -gC $h!rmail ($u)
S12
R<@> $n errors to mailer-daemon
R:; <@> $@
R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots
R$* < @ $=w > $1 strip local name
R<@ $- . UUCP > : $+ $1 ! $2 convert to UUCP format
R<@ $+ > : $+ $1 ! $2 convert to UUCP format
R$* < @ $- . UUCP > $2 ! $1 convert to UUCP format
R$* < @ $+ > $2 ! $1 convert to UUCP format
R$&h ! $+ ! $+ $@ $1 ! $2 $h!...!user => ...!user
R$&h ! $+ $@ $&h ! $1 $h!user => $h!user
R$+ $: $U ! $1 prepend our name
R! $+ $: $k ! $1 in case $U undefined
S22
R:; <@> $@
R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots
R$* < @ $=w > $1 strip local name
R<@ $- . UUCP > : $+ $1 ! $2 convert to UUCP format
R<@ $+ > : $+ $1 ! $2 convert to UUCP format
R$* < @ $- . UUCP > $2 ! $1 convert to UUCP format
R$* < @ $+ > $2 ! $1 convert to UUCP format
S42
R:; <@> $@
R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots
R$* < @ $=w > $1 strip local name
R<@ $- . UUCP > : $+ $1 ! $2 convert to UUCP format
R<@ $+ > : $+ $1 ! $2 convert to UUCP format
R$* < @ $- . UUCP > $2 ! $1 convert to UUCP format
R$* < @ $+ > $2 ! $1 convert to UUCP format
R$&h ! $+ ! $+ $@ $1 ! $2 $h!...!user => ...!user
R$&h ! $+ $@ $&h ! $1 $h!user => $h!user
R$+ $: $U ! $1 prepend our name
R! $+ $: $k ! $1 in case $U undefined
S52
R<@> $n errors to mailer-daemon
R$* $@ $>11 $1
S72
R<@> $n errors to mailer-daemon
R$* $: $>11 $1
R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots
R<@ $- . UUCP > : $+ $@ $1 ! $2 convert to UUCP format
R<@ $+ > : $+ $@ $1 ! $2 convert to UUCP format
R$* < @ $- . UUCP > $@ $2 ! $1 convert to UUCP format
R$* < @ $+ > $@ $2 ! $1 convert to UUCP format
hosts dns files aliases files
mail.debug /var/adm/syslog/mail.log *.info;mail.none /var/adm/syslog/syslog.log *.alert /dev/console *.alert root *.emerg *
MeasureWare alarming status: SystemDB Version : 2 ITO messages : on Last Error : none Exec Actions : on Analysis system: hpux11i.openeyet.nl, Key=192.168.16.14 PerfView : yes Last Error : none SNMP : no Last Error : none
log global application process dev=disk,lvm transaction size global=10, application=10, process=20, device=10, transaction=10 mainttime = 23:30 threshold cpu = 5.0, disk = 5.0, nonew, nokilled application = network file = nfs*,biod,automount,inetd,snmp*,rpc*,llbd,netfmt,portmap file = rbootd,telnet*,ftp*,*rlogin*,remsh*,rcp,nktl*,nvsisr,ttisr file = lcsp,gcsp,strmen,strweld,vtdaemon,mib*,trapdest*,*web*,xntpd,yp* file = hp_unixagt,ntl*,pty* application = memory_management file = swapper,vhand,syncer,pageout,fsflush,vxfsd application = other_user_root user = root
symptom CPU_Bottleneck type=CPU
rule GBL_CPU_TOTAL_UTIL > 75 prob 25
rule GBL_CPU_TOTAL_UTIL > 85 prob 25
rule GBL_CPU_TOTAL_UTIL > 90 prob 25
rule GBL_PRI_QUEUE > 3 prob 25
symptom Disk_Bottleneck type=DISK
rule GBL_DISK_UTIL_PEAK > 50 prob GBL_DISK_UTIL_PEAK
rule GBL_DISK_SUBSYSTEM_QUEUE > 3 prob 25
symptom Memory_Bottleneck type=MEMORY
rule GBL_MEM_QUEUE > 2 prob 20
rule GBL_MEM_PAGEOUT_RATE > 5 prob 20
rule GBL_MEM_PAGEOUT_RATE > 50 prob 20
rule GBL_DISK_VM_WRITE_RATE > 5 prob 20
rule GBL_DISK_VM_WRITE_RATE > 50 prob 20
rule GBL_MEM_SWAPOUT_RATE > 1 prob 35
rule GBL_MEM_SWAPOUT_RATE > 4 prob 50
symptom Network_Bottleneck type=NETWORK
rule GBL_NET_OUTQUEUE > 0 prob 10
rule GBL_NET_OUTQUEUE > 1 prob 25
rule GBL_NFS_CALL_RATE > 500 prob 10
rule GBL_NET_COLLISION_PCT > 10 prob 10
rule GBL_NET_COLLISION_PCT > 25 prob 20
rule GBL_NET_COLLISION_PCT > 50 prob 30
rule GBL_NET_PACKET_RATE > 500 prob 10
rule GBL_NET_PACKET_RATE > 1000 prob 10
rule GBL_NET_PACKET_RATE > 3000 prob 20
rule GBL_NET_PACKET_RATE > 5000 prob 20
rule GBL_NET_PACKET_RATE > 9000 prob 20
alarm CPU_Bottleneck > 50 for 2 minutes
start
if CPU_Bottleneck > 90 then
red alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
else
yellow alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
repeat every 10 minutes
if CPU_Bottleneck > 90 then
red alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
else
yellow alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
end
reset alert "End of CPU Bottleneck Alert"
alarm Disk_Bottleneck > 50 for 2 minutes
start
if Disk_Bottleneck > 90 then
red alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
else
yellow alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
repeat every 10 minutes
if Disk_Bottleneck > 90 then
red alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
else
yellow alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
end
reset alert "End of Disk Bottleneck Alert"
alarm Memory_Bottleneck > 50 for 2 minutes
start
if Memory_Bottleneck > 90 then
red alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
else
yellow alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
repeat every 10 minutes
if Memory_Bottleneck > 90 then
red alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
else
yellow alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
end
reset alert "End of Memory Bottleneck Alert"
alarm Network_Bottleneck > 50 for 2 minutes
start
if Network_Bottleneck > 90 then
red alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
else
yellow alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
repeat every 10 minutes
if Network_Bottleneck > 90 then
red alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
else
yellow alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
end
reset alert "End of Network Bottleneck Alert"
alarm (GBL_NET_PACKET_RATE > 100) and
((GBL_NET_IN_ERROR_PCT > 4) or
(GBL_NET_OUT_ERROR_PCT > 2))
start
yellow alert "Network error rate exceeded threshold"
end
reset alert "End of network error rate alert"
alarm GBL_SWAP_SPACE_UTIL > 95
start
red alert "Global swap space is nearly full"
end
reset alert "End of global swap space full condition"
alarm TBL_SHMEM_TABLE_UTIL > 90
start
red alert "Shared memory table is nearly full"
end
reset alert "End of shared memory table full condition"
alarm TBL_SEM_TABLE_UTIL > 90
start
red alert "Semaphore table is nearly full"
end
reset alert "End of semaphore table full condition"
alarm TBL_MSG_TABLE_UTIL > 90
start
red alert "Message queue table is nearly full"
end
reset alert "End of message queue full condition"
alarm TBL_PROC_TABLE_UTIL > 90
start
red alert "Process table is nearly full"
end
reset alert "End of process table full condition"
alarm TBL_FILE_TABLE_UTIL > 90
start
red alert "File table is nearly full"
end
reset alert "End of file table full condition"
alarm TBL_FILE_LOCK_UTIL > 90
start
red alert "File lock table is nearly full"
end
reset alert "End of file lock table full condition"
alarm GBL_TT_OVERFLOW_COUNT > 0
start
yellow alert "Transaction Tracker overflow - restart ttd or midaemon - see man pages"
repeat every 30 minutes
yellow alert "Transaction Tracker overflow"
initiallost = initiallost
if initiallost == 0 then
initiallost = GBL_LOST_MI_TRACE_BUFFERS
lostbufs = lostbufs
alarm (lostbufs < GBL_LOST_MI_TRACE_BUFFERS) and
(initiallost < GBL_LOST_MI_TRACE_BUFFERS)
start {
yellow alert "MI trace buffer loss detected"
lostbufs = GBL_LOST_MI_TRACE_BUFFERS
}
symptom CPU_Bottleneck type=CPU
rule GBL_CPU_TOTAL_UTIL > 75 prob 25
rule GBL_CPU_TOTAL_UTIL > 85 prob 25
rule GBL_CPU_TOTAL_UTIL > 90 prob 25
rule GBL_PRI_QUEUE > 3 prob 25
alarm CPU_Bottleneck > 50 for 5 minutes
type = "CPU"
start
if CPU_Bottleneck > 90 then
red alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
else
yellow alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
repeat every 10 minutes
if CPU_Bottleneck > 90 then
red alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
else
yellow alert "CPU Bottleneck probability= ", CPU_Bottleneck, "%"
end
reset alert "End of CPU Bottleneck Alert"
symptom Disk_Bottleneck type=DISK
rule GBL_DISK_UTIL_PEAK > 50 prob GBL_DISK_UTIL_PEAK
rule GBL_DISK_SUBSYSTEM_QUEUE > 3 prob 25
alarm Disk_Bottleneck > 50 for 5 minutes
type = "Disk"
start
if Disk_Bottleneck > 90 then
red alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
else
yellow alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
repeat every 10 minutes
if Disk_Bottleneck > 90 then
red alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
else
yellow alert "Disk Bottleneck probability= ", Disk_Bottleneck, "%"
end
reset alert "End of Disk Bottleneck Alert"
symptom Memory_Bottleneck type=MEMORY
rule GBL_MEM_UTIL > 90 prob 50
rule GBL_MEM_QUEUE > 2 prob 20
rule GBL_MEM_PAGEOUT_RATE > 50 prob 20
rule GBL_DISK_VM_WRITE_RATE > 50 prob 20
rule GBL_MEM_SWAPOUT_RATE > 1 prob 20
rule GBL_MEM_SWAPOUT_RATE > 4 prob 50
alarm Memory_Bottleneck > 50 for 5 minutes
type = "Memory"
start
if Memory_Bottleneck > 90 then
red alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
else
yellow alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
repeat every 10 minutes
if Memory_Bottleneck > 90 then
red alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
else
yellow alert "Memory Bottleneck probability= ", Memory_Bottleneck, "%"
end
reset alert "End of Memory Bottleneck Alert"
symptom Network_Bottleneck type=NETWORK
rule GBL_NFS_CALL_RATE > 500 prob 25
rule GBL_NET_COLLISION_PCT > 10 prob 10
rule GBL_NET_COLLISION_PCT > 25 prob 20
rule GBL_NET_COLLISION_PCT > 50 prob 30
rule GBL_NET_PACKET_RATE > 500 prob 10
rule GBL_NET_PACKET_RATE > 1000 prob 15
rule GBL_NET_PACKET_RATE > 3000 prob 20
rule GBL_NET_PACKET_RATE > 5000 prob 25
rule GBL_NET_PACKET_RATE > 9000 prob 25
alarm Network_Bottleneck > 50 for 5 minutes
type = "Network"
start
if Network_Bottleneck > 90 then
red alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
else
yellow alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
repeat every 10 minutes
if Network_Bottleneck > 90 then
red alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
else
yellow alert "Network Bottleneck probability= ", Network_Bottleneck, "%"
end
reset alert "End of Network Bottleneck Alert"
alarm GBL_NET_ERROR_1_MIN_RATE > 60 for 5 minutes
type = "Network"
start
red alert "Network error rate is greater than ten per minute"
end
reset alert "End of network error rate condition"
alarm GBL_SWAP_SPACE_UTIL > 95 for 5 minutes
start
red alert "Global swap space is nearly full"
end
reset alert "End of global swap space full condition"
DATASOURCE=SCOPE LOGFILE=/var/opt/perf/datafiles/logglob
tran=* range=0.5,1,2,3,5,10,30,120,300 slo=5.0 [HP Perf Tools] tran=Scope_Get_Global_Metrics range=0.5,1.0,1.5,2,3,5,8,10,15 slo=15 tran=Scope_Get_Process_Metrics range=0.5,1.0,1.5,2,3,5,8,10,15 slo=15
hpux11i.openeyet.nl (hpux11i):192.168.16.14:alarm enabled: All Known Systems,
CLASS PAGES INCLUDED IN DUMP DESCRIPTION -------- ---------- ---------------- ------------------------------------- UNUSED 29438 no, by default unused pages USERPG 13483 no, by default user process pages BCACHE 9742 no, by default buffer cache pages KCODE 1902 no, by default kernel code pages USTACK 383 yes, by default user process stacks FSDATA 88 yes, by default file system metadata KDDATA 7309 yes, by default kernel dynamic data KSDATA 3191 yes, by default kernel static data Total pages on system: 65536 Total pages included in dump: 10971 DEVICE OFFSET(kB) SIZE (kB) LOGICAL VOL. NAME ------------ ---------- ---------- ------------ ------------------------- 28:0x023000 117600 524288 64:0x000002 /dev/vg00/lvol2 ---------- 524288
Jun 10 09:38 NOTICE: autofs_link(): File system was registered at index 3. NOTICE: cachefs_link(): File system was registered at index 5. NOTICE: nfs3_link(): File system was registered at index 6. 40 scsi1 40.3 target 40.3.0 disc3 40.4 target 40.4.0 disc3 40.5 target 40.5.0 disc3 41 lpr2 48 scsi1 48.3 target 48.3.0 disc3 48.4 target 48.4.0 disc3 48.5 target 48.5.0 disc3 49 lpr2 52 scsi1 52.0 target 52.0.0 tape2 52.2 target 52.2.0 disc3 52.6 target 52.6.0 disc3 56 lanmux0 56.1 lan3 56.0 mux4 56.2 lantty0 61 processor 62 processor 63 memory Logical volume 64, 0x3 configured as ROOT Logical volume 64, 0x2 configured as SWAP Logical volume 64, 0x2 configured as DUMP Swap device table: (start & size given in 512-byte blocks) entry 0 - major is 64, minor is 0x2; start = 0, size = 1048576 Dump device table: (start & size given in 1-Kbyte blocks) entry 00000000 - major is 28, minor is 0x23000; start = 117600, size = 524288 Starting the STREAMS daemons-phase 1 Create STCP device files Starting the STREAMS daemons-phase 2 $Revision: vmunix: vw: -proj selectors: CUPI80_BL2000_1108 -c 'Vw for CUPI80_BL2000_1108 build' -- cupi80_bl2000_1108 'CUPI80_BL2000_1108' Wed Nov 8 19:05:38 PST 2000 $ Memory Information: physical page size = 4096 bytes, logical page size = 4096 bytes Physical: 262144 Kbytes, lockable: 165248 Kbytes, available: 191432 Kbytes NOTICE: vxvm:vxdmp: added disk array OTHER_DISKS DIAGNOSTIC SYSTEM WARNING: The diagnostic logging facility has started receiving excessive errors from the I/O subsystem. I/O error entries will be lost until the cause of the excessive I/O logging is corrected. If the diaglogd daemon is not active, use the Daemon Startup command in stm to start it. If the diaglogd daemon is active, use the logtool utility in stm to determine which I/O subsystem is logging excessive errors.
10:00 Wed Jun 13, 2001. Reboot: (by hpux11i!root) 09:57 Tue Jul 17, 2001. Halt: 08:36 Thu Jan 31, 2002. Halt: (by hpux11i!root) 14:16 Mon Feb 18, 2002. Reboot: 10:35 Wed Mar 6, 2002. Reboot: (by SAM) 13:58 Mon Apr 14, 2003. Halt: (by hpux11i!root) 15:25 Fri Jun 20, 2003. Halt: 13:54 Wed Jun 25, 2003. Halt: (by hpux11i!root) 09:04 Mon Jul 21, 2003. Reboot: (by unknown!root) 13:51 Tue Sep 2, 2003. Reboot: (by hpux11i!root) 08:55 Thu Sep 25, 2003. Halt: 12:56 Fri Sep 26, 2003. Halt: (by hpux11i!root) 13:33 Mon Jan 26, 2004. Halt: (by hpux11i!root) 15:18 Fri Feb 20, 2004. Halt: (by hpux11i!root) 08:40 Wed Feb 25, 2004. Reboot: (by hpux11i!root) 09:26 Wed Feb 25, 2004. Reboot: (by c099!root) 13:24 Wed Feb 25, 2004. Reboot: (by hpux11i!root) 14:01 Wed Feb 25, 2004. Reboot: (by c099!root) 16:28 Mon May 10, 2004. Halt: 10:20 Tue May 18, 2004. Halt: (by hpux11i!root) 11:10 Mon Jun 7, 2004. Reboot: (by unknown!root) 15:33 Thu Jun 17, 2004. Halt: (by hpux11i!root) 14:32 Tue Nov 23, 2004. Halt: (by hpux11i!root) 09:55 Tue Jan 4, 2005. Halt: (by hpux11i!root) 09:41 Mon Jan 10, 2005. Halt: (by hpux11i!root) 13:48 Wed Jan 19, 2005. Halt: (by hpux11i!root) 08:39 Wed Apr 6, 2005. Halt: (by hpux11i!root) 12:51 Wed Apr 6, 2005. Halt: (by hpux11i!root) 14:11 Wed Apr 13, 2005. Halt: (by hpux11i!root)
GenericSysName [HP Release B.11.11] (see /etc/issue)
trap "" 1 2 3
PATH=/usr/bin:/usr/ccs/bin:/usr/contrib/bin
MANPATH=/usr/share/man:/usr/contrib/man:/usr/local/man
if [ ! -d /usr/sbin ]
then
PATH=$PATH:/sbin
else if [ -r /etc/PATH ]
then
grep -q -e "^/usr/bin$" -e "^/usr/bin:" -e ":/usr/bin:"\
-e ":/usr/bin$" /etc/PATH
if [ $? -eq 0 ]
then
PATH=`cat /etc/PATH`
else
PATH=$PATH:`cat /etc/PATH`
fi
fi
fi
export PATH
if [ -r /etc/MANPATH ]
then
MANPATH=`cat /etc/MANPATH`
fi
export MANPATH
if [ -r /etc/TIMEZONE ]
then
. /etc/TIMEZONE
else
TZ=MST7MDT # change this for local time.
export TZ
fi
if [ ! "$VUE" ]; then
if [ "$TERM" = "" -o "$TERM" = "unknown" -o "$TERM" = "dialup" \
-o "$TERM" = "network" ]
then
eval `ttytype -s -a`
fi
export TERM
if [ "$ERASE" = "" ]
then
ERASE="^H"
export ERASE
fi
stty erase $ERASE
trap "echo logout" 0
cat /etc/copyright
if [ -r /etc/motd ]
then
cat /etc/motd
fi
if [ -f /usr/bin/mail ]
then
if mail -e
then echo "You have mail."
fi
fi
if [ -f /usr/bin/news ]
then news -n
fi
if [ -r /tmp/changetape ]
then echo "\007\nYou are the first to log in since backup:"
echo "Please change the backup tape.\n"
rm -f /tmp/changetape
fi
fi # if !VUE
umask 022
trap 1 2 3
set path=(/usr/bin /usr/ccs/bin /usr/contrib/bin)
if ( -r /etc/PATH ) then
grep -q -e '^/usr/bin$' -e '^/usr/bin:' -e ':/usr/bin:'\
-e ':/usr/bin$' /etc/PATH
if ( $status ) then
set path=($path `tr ":" " " </etc/PATH `)
else
set path=(`tr ":" " " </etc/PATH `)
endif
endif
set prompt="[\!] % "
setenv MANPATH /usr/share/man:/usr/contrib/man:/usr/local/man
if ( -r /etc/MANPATH ) then
setenv MANPATH `cat /etc/MANPATH`
endif
if ( -r /etc/TIMEZONE ) then
setenv TZ `/usr/bin/sh -c '. /etc/TIMEZONE ; echo $TZ' ` # set the TZ variable
else
setenv TZ MST7MDT # change this for local time.
endif
if ( ! $?TERM ) then # if TERM is not set,
setenv TERM hp # use the default
endif
cat /etc/copyright # copyright message.
if ( -f /etc/motd ) then
cat /etc/motd # message of the day.
endif
if ( -f /usr/bin/mail ) then
mail -e # notify if mail.
if ( $status == 0 ) echo "You have mail."
endif
if ( -f /usr/bin/news ) then
news -n # notify if new news.
endif
if ( -r /tmp/changetape ) then # might wish to delete this:
echo
echo "You are the first to log in since backup:"
echo "Please change the backup tape.\n"
rm -f /tmp/changetape
endif
if [ "$TERM" = "" ] then eval ` tset -s -Q -m ':?hp' ` else eval ` tset -s -Q ` fi stty erase "^H" kill "^U" intr "^C" eof "^D" stty hupcl ixon ixoff tabs PATH=$PATH:. set -u trap "echo 'logout'" 0 EDITOR=vi export EDITOR
/etc/PATH: /usr/bin /etc/PATH: /usr/ccs/bin /etc/PATH: /usr/contrib/bin /etc/PATH: /opt/hparray/bin /etc/PATH: /opt/nettladm/bin /etc/PATH: /opt/upgrade/bin /etc/PATH: /opt/fcms/bin /etc/PATH: /opt/pd/bin /etc/PATH: /opt/resmon/bin /etc/PATH: /opt/ignite/bin /etc/PATH: /opt/scr/bin /etc/PATH: /usr/bin/X11 /etc/PATH: /usr/contrib/bin/X11 /etc/PATH: /opt/perf/bin /etc/PATH: /opt/sec_mgmt/spc/bin /etc/MANPATH: /usr/share/man/%L /etc/MANPATH: /usr/share/man /etc/MANPATH: /usr/contrib/man/%L /etc/MANPATH: /usr/contrib/man /etc/MANPATH: /usr/local/man/%L /etc/MANPATH: /usr/local/man /etc/MANPATH: /opt/upgrade/share/man/%L /etc/MANPATH: /opt/upgrade/share/man /etc/MANPATH: /opt/pd/share/man/%L /etc/MANPATH: /opt/pd/share/man /etc/MANPATH: /opt/pd/share/man/%L /etc/MANPATH: /opt/pd/share/man /etc/MANPATH: /opt/pd/share/man/%L /etc/MANPATH: /opt/pd/share/man /etc/MANPATH: /opt/resmon/share/man /etc/MANPATH: /opt/ignite/share/man/%L /etc/MANPATH: /opt/ignite/share/man /etc/MANPATH: /opt/scr/share/man /etc/MANPATH: /opt/perf/man/%L /etc/MANPATH: /opt/perf/man /etc/MANPATH: /opt/sec_mgmt/share/man/%L /etc/MANPATH: /opt/sec_mgmt/share/man /etc/SHLIB_PATH: /usr/lib /etc/SHLIB_PATH: /etc/opt/resmon/lib
UID PID PPID C STIME TTY TIME CMD root 0 0 0 07:59:35 ? 00:00 swapper root 8 0 0 07:59:35 ? 00:00 supsched root 9 0 0 07:59:35 ? 00:00 strmem root 10 0 0 07:59:35 ? 00:00 strweld root 11 0 0 07:59:35 ? 00:00 strfreebd root 2 0 0 07:59:35 ? 00:00 vhand root 3 0 0 07:59:35 ? 00:06 statdaemon root 4 0 0 07:59:35 ? 00:00 unhashdaemon root 12 0 0 07:59:35 ? 00:00 ttisr root 13 0 0 07:59:35 ? 00:00 ioconfigd root 19 0 0 07:59:37 ? 00:00 lvmkd root 20 0 0 07:59:37 ? 00:00 lvmkd root 21 0 0 07:59:37 ? 00:00 lvmkd root 22 0 0 07:59:37 ? 00:00 lvmkd root 23 0 0 07:59:37 ? 00:00 lvmkd root 24 0 0 07:59:37 ? 00:00 lvmkd root 25 0 0 07:59:37 ? 00:00 smpsched root 26 0 0 07:59:37 ? 00:00 smpsched root 27 0 0 07:59:37 ? 00:00 sblksched root 28 0 0 07:59:37 ? 00:00 sblksched root 279 0 0 08:00:15 ? 00:00 vxiod root 34 0 0 07:59:39 ? 00:08 vxfsd root 283 0 0 08:00:16 ? 00:00 dmperrd root 284 0 0 08:00:16 ? 00:00 dmprestored root 483 0 0 08:05:07 ? 00:00 nfskd root 1 0 0 07:59:37 ? 00:00 init root 1255 1 0 08:06:30 console 00:00 /usr/sbin/getty console console root 848 1 0 08:05:31 ? 00:00 /usr/sbin/hp_unixagt root 282 1 0 08:00:16 ? 00:00 vxconfigd root 335 1 0 08:04:41 ? 00:00 /sbin/sh - /etc/vx/bin/vxrelocd root root 355 335 0 08:04:42 ? 00:00 vxnotify -f -w 15 root 320 1 0 08:04:39 ? 00:00 /usr/sbin/syncer root 395 1 0 08:04:52 ? 00:00 /usr/sbin/ptydaemon root 392 1 0 08:04:52 ? 00:00 /usr/sbin/syslogd -D root 531 1 0 08:05:09 ? 00:00 /usr/sbin/rpc.lockd root 478 1 0 08:05:07 ? 00:00 /usr/sbin/rpcbind root 410 1 0 08:04:55 ? 00:00 /usr/lbin/nktl_daemon 0 0 0 0 0 1 -2 root 502 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 420 1 0 08:04:58 ? 00:00 /usr/lbin/ntl_reader 0 1 1 1 1000 2 /var/adm/nettl /var/adm/con root 421 420 0 08:04:59 ? 00:01 /usr/sbin/netfmt -C -F -f /var/adm/nettl.LOG000 -c /var/adm/con root 503 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 504 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 505 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 506 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 507 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 508 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 509 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 510 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 511 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 512 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 513 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 514 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 515 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 516 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 517 1 0 08:05:08 ? 00:00 /usr/sbin/biod 16 root 836 1 0 08:05:24 ? 00:00 /usr/sbin/snmpdm root 525 1 0 08:05:09 ? 00:00 /usr/sbin/rpc.statd root 828 1 0 08:05:22 ? 00:00 sendmail: accepting connections on port 25 root 542 1 0 08:05:10 ? 00:00 /usr/lib/netsvc/fs/automount/automount -f /etc/auto_master root 559 1 0 08:05:11 ? 00:00 /usr/sbin/inetd root 1413 559 0 08:52:56 pts/ta 00:00 telnetd root 1414 1413 0 08:52:56 pts/ta 00:00 -sh root 5724 1414 6 09:34:19 pts/ta 00:00 /bin/sh /opt/scc/bin/scc root 5730 5724 21 09:34:19 pts/ta 00:00 /bin/sh /opt/scc/bin/scc-log -c -e -m 0 root 5743 5730 53 09:34:20 pts/ta 00:00 /bin/sh /opt/scc/bin/scc-collect -e root 5763 5743 4 09:34:21 pts/ta 00:00 cut -c1-300 root 5762 5743 6 09:34:21 pts/ta 00:00 ps -Hef root 857 1 0 08:05:32 ? 00:00 /usr/sbin/mib2agt root 866 1 0 08:05:32 ? 00:00 /usr/sbin/trapdestagt root 1176 1 0 08:06:20 ? 00:00 /usr/sbin/swagentd -r root 908 1 0 08:05:42 ? 00:01 /usr/dmi/bin/dmisp root 900 1 2 08:05:35 ? 00:00 /opt/dce/sbin/rpcd root 970 1 0 08:05:50 ? 00:00 /usr/sbin/rbootd root 948 1 0 08:05:48 ? 00:01 scrdaemon root 933 1 0 08:05:47 ? 00:00 /var/dmi/bin/swci root 988 1 0 08:05:51 ? 00:01 /usr/sbin/pwgrd root 1170 1 0 08:06:18 ? 00:00 /opt/perf/bin/pvalarmd root 1066 1 0 08:05:57 ? 00:00 /opt/perf/bin/ttd root 1256 1 0 08:06:30 ? 00:01 /sbin/krsd -i root 1010 1 0 08:05:52 ? 00:00 /usr/sbin/cron root 1017 1 0 08:05:53 ? 00:00 /usr/sbin/envd root 1094 1 0 08:06:07 ? 00:00 /opt/perf/bin/perflbd root 1321 1094 1 08:10:05 ? 00:07 /opt/perf/bin/rep_server -t SCOPE /var/opt/perf/datafiles/loggl root 1322 1094 0 08:10:13 ? 00:01 /opt/perf/bin/agdbserver -t alarmgen /var/opt/perf/datafiles/ root 1323 1322 0 08:10:14 ? 00:04 /opt/perf/bin/alarmgen -svr 1322 -t alarmgen /var/opt/perf/data root 1182 1 0 08:06:27 ? 00:00 /opt/apache2/bin/httpd www 1183 1182 0 08:06:27 ? 00:00 /opt/apache2/bin/httpd www 1193 1182 0 08:06:28 ? 00:00 /opt/apache2/bin/httpd www 1192 1182 0 08:06:28 ? 00:00 /opt/apache2/bin/httpd root 1190 1 0 08:06:27 ? 00:00 /etc/opt/resmon/lbin/emsagent root 1257 1 0 08:06:30 ? 00:00 /sbin/sfd root 1214 1 0 08:06:29 ? 00:00 /usr/sbin/rpc.mountd root 1226 1 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1228 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1248 1228 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1236 1228 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1237 1228 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1240 1228 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1243 1228 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1247 1228 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1249 1228 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1238 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1239 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1241 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1242 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1244 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1245 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1246 1226 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1225 1 0 08:06:29 ? 00:00 /usr/sbin/nfsd 16 root 1258 1 0 08:06:30 ? 00:00 /usr/sam/lbin/samd root 1261 1 0 08:06:30 ? 00:00 /etc/opt/resmon/lbin/p_client
-r-xr-xr-x:1:root:bin:57344:2000-11-14:libpam_dce.1 -r-xr-xr-x:1:root:sys:192512:2000-11-14:libpam_unix.1 -r-xr-xr-x:1:root:sys:16384:2000-11-14:libpam_updbe.1
POSIX_VERSION: 199009 POSIX2_VERSION: 199209 XOPEN_VERSION: 4
Kb Kb
TYPE AVAIL RESERVE PRI NAME
dev 524288 - 1 /dev/vg00/lvol2
reserve -
memory 165528
version-1 property RESOURCE_MANAGER root ar iw property SCREEN_RESOURCES root ar iw property CUT_BUFFER0 root irw property CUT_BUFFER1 root irw property CUT_BUFFER2 root irw property CUT_BUFFER3 root irw property CUT_BUFFER4 root irw property CUT_BUFFER5 root irw property CUT_BUFFER6 root irw property CUT_BUFFER7 root irw property _MOTIF_DEFAULT_BINDINGS root ar iw property _MOTIF_DRAG_WINDOW root ar iw property _MOTIF_DRAG_TARGETS any ar iw property _MOTIF_DRAG_ATOMS any ar iw property _MOTIF_DRAG_ATOM_PAIRS any ar iw property _MOTIF_WM_INFO root arw property TT_SESSION root irw property WM_ICON_SIZE root irw property "SDT Pixel Set" any irw property WM_NAME any ar property WM_CLASS WM_NAME ar property WM_STATE WM_NAME ar property WM_CLIENT_MACHINE WM_NAME ar property WM_COMMAND WM_NAME ar property RGB_DEFAULT_MAP root ar property RGB_BEST_MAP root ar property RGB_RED_MAP root ar property RGB_GREEN_MAP root ar property RGB_BLUE_MAP root ar property RGB_GRAY_MAP root ar property XDCCC_LINEAR_RGB_CORRECTION root ar property XDCCC_LINEAR_RGB_MATRICES root ar property XDCCC_GRAY_SCREENWHITEPOINT root ar property XDCCC_GRAY_CORRECTION root ar property SERVER_OVERLAY_VISUALS root ar
Screen /dev/crt
BASEDIR /home EXPIRE GROUPID 20 INACTIVE -1 SHELL /sbin/sh SKEL /etc/skel
adm:4:adm:4::/var/adm:/sbin/sh:LK:XXXXXX:-1:-1:-1:-1:000000
bin:2:bin:2::/usr/bin:/sbin/sh:LK:XXXXXX:-1:-1:-1:-1:000000
daemon:1:daemon:5::/:/sbin/sh:LK:XXXXXX:-1:-1:-1:-1:000000
hpdb:27:other:1:ALLBASE:/:/sbin/sh:LK:XXXXXX:-1:-1:-1:-1:000000
lp:9:lp:7::/var/spool/lp:/sbin/sh:LK:XXXXXX:-1:-1:-1:-1:000000
nobody:-2:nogroup:-2::/::LK:XXXXXX:-1:-1:-1:-1:000000
nuucp:11:nuucp:11::/var/spool/uucppublic:/usr/lbin/uucp/uucico:LK:XXXXXX:-1:-1:-1:-1:000000
root:0:sys:3::/:/sbin/sh:PS:XXXXXX:-1:-1:-1:-1:000000
sys:3:sys:3::/::LK:XXXXXX:-1:-1:-1:-1:000000
uucp:5:sys:3::/var/spool/uucppublic:/usr/lbin/uucp/uucico:LK:XXXXXX:-1:-1:-1:-1:000000
webadmin:40:other:1::/usr/obam/server/nologindir:/usr/bin/false:LK:XXXXXX:-1:-1:-1:-1:000000
www:30:other:1::/::LK:XXXXXX:-1:-1:-1:-1:000000
pdo:101:users:20:Paultje...,,,:/home/pdo:/usr/bin/ksh:PS:XXXXXX:-1:-1:-1:-1:000000
root:0:root other:1:root,hpdb bin:2:root,bin sys:3:root,uucp adm:4:root,adm daemon:5:root,daemon mail:6:root lp:7:root,lp tty:10: nuucp:11:nuucp users:20:root nogroup:-2:
.rhosts: c99 dev_srv
.rhosts: c99.openeyet.nl dev_scc .rhosts: c99.openeyet.nl dev_srv .rhosts: c99.openeyet.nl root .rhosts: c99.openeyet.nl sccweb .rhosts: c99.openeyet.nl sko .rhosts: c010.openeyet.nl root
webadmin:40:1::/usr/obam/server/nologindir:/usr/bin/false Login directory not found
Help-info is excluded from the statistics.
| Category | Count | Percentage |
|---|---|---|
| fix | 5974 | 87 |
| var | 892 | 13 |
| total | 6866 | 100 |
The System Serial can be retrieved fast by means of machinfo. When this program is absent, it is obtained via stm in the hardware module. At the next run of scc it is present under class "general".
Contents of file: /etc/bcheckrc Ignore blank lines and lines starting with character: #
Contents of file: /etc/lvmrc Ignore blank lines and lines starting with character: #
Contents of file: /etc/pre_init_rc Ignore blank lines and lines starting with character: #
Contents of file: /etc/rc.config Ignore blank lines and lines starting with character: #
Contents of file: /stand/bootconf Ignore blank lines and lines starting with character: #
Contents of file: /etc/default/fs Ignore blank lines and lines starting with character: #
Contents of file: /etc/default/useradd Ignore blank lines and lines starting with character: #
Contents of file: /etc/inittab Ignore blank lines and lines starting with character: #
Contents of file: /var/adm/sbtab Ignore blank lines and lines starting with character: #
Contents of file: /etc/kbdlang Ignore blank lines and lines starting with character: #
Contents of file: /stand/kernrel Ignore blank lines and lines starting with character: #
Contents of file: /stand/system Ignore blank lines and lines starting with character: #
Specific for HP-UX. Use adb to obtain the value for boot_string from the kernel /stand/vmunix
Specific for HP-UX. When a new kernel is compiled via SAM, the command system_prep generates the file /stand/system. Anyone who edits this file directly to change a new kernel, will loose the changes when SAM is used to generate a new kernel. scc compares the output of system_prep with the contents of the file /stand/system. Differences are reported.
Contents of file: /etc/fstab Ignore blank lines and lines starting with character: #
Contents of file: /etc/auto_master Ignore blank lines and lines starting with character: #
/etc/gated.conf: Contents of file: /etc/gated.conf /etc/gated.conf: Ignore blank lines and lines starting with character: #
Contents of file: /etc/bootptab Ignore blank lines and lines starting with character: #
Contents of file: /etc/hosts Ignore blank lines and lines starting with character: #
Contents of file: /etc/hosts.equiv Ignore blank lines and lines starting with character: #
Contents of file: /etc/netconfig Ignore blank lines and lines starting with character: #
Contents of file: /etc/nettlgen.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/networks Ignore blank lines and lines starting with character: #
Contents of file: /etc/protocols Ignore blank lines and lines starting with character: #
Contents of file: /etc/rpc Ignore blank lines and lines starting with character: #
Contents of file: /var/adm/inetd.sec Ignore blank lines and lines starting with character: #
Contents of file: /etc/services Ignore blank lines and lines starting with character: #
Contents of file: /etc/net/ticlts/hosts Ignore blank lines and lines starting with character: #
Contents of file: /etc/net/ticlts/services Ignore blank lines and lines starting with character: #
Contents of file: /etc/net/ticots/hosts Ignore blank lines and lines starting with character: #
Contents of file: /etc/net/ticots/services Ignore blank lines and lines starting with character: #
Contents of file: /etc/net/ticotsord/hosts Ignore blank lines and lines starting with character: #
Contents of file: /etc/net/ticotsord/services Ignore blank lines and lines starting with character: #
Contents of file: /opt/apache2/etc/httpd.conf Ignore blank lines and lines starting with character: #
Contents of file: /opt/apache2/etc/ssl.conf Ignore blank lines and lines starting with character: #
/var/adm/cron/queuedefs: Contents of file: /var/adm/cron/queuedefs /var/adm/cron/queuedefs: Ignore blank lines and lines starting with character: # /var/adm/cron/.proto: Contents of file: /var/adm/cron/.proto /var/adm/cron/.proto: Ignore blank lines and lines starting with character: # /var/adm/cron/at.allow: Contents of file: /var/adm/cron/at.allow /var/adm/cron/at.allow: Ignore blank lines and lines starting with character: # /var/adm/cron/cron.allow: Contents of file: /var/adm/cron/cron.allow /var/adm/cron/cron.allow: Ignore blank lines and lines starting with character: #
Contents of file: /var/spool/cron/crontabs/root Ignore blank lines and lines starting with character: #
Contents of file: /var/spool/cron/crontab.root Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/ignite/INDEX Ignore blank lines and lines starting with character: #
Contents of file: /opt/ignite/data/Rel_B.11.11/config Ignore blank lines and lines starting with character: #
Contents of file: /opt/ignite/data/Rel_B.11.11/hw_patches_cfg Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/ignite/server/ignite.defs Ignore blank lines and lines starting with character: #
Contents of file: /etc/opt/scc/conf/scc-localize Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/scc-srv/conf/scc.conf Ignore blank lines and lines starting with character: #
scc-realm.conf: Contents of file: /var/opt/scc-srv/data/www/All/custom/scc-realm.conf scc-realm.conf: Ignore blank lines and lines starting with character: # scc-smt-select: Contents of file: /var/opt/scc-srv/data/www/All/custom/scc-smt-select scc-smt-select: Ignore blank lines and lines starting with character: # scc-rules.conf: Contents of file: /var/opt/scc-srv/data/www/All/custom/scc-rules.conf scc-rules.conf: Ignore blank lines and lines starting with character: #
Contents of file: /etc/pam.conf Ignore blank lines and lines starting with character: #
Contents of file: /var/sam/.acl Ignore blank lines and lines starting with character: #
Contents of file: /var/sam/preferences/app_preference Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/custom/default.tp Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/custom/pdo.cf Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/custom/users.gp Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/reg_dirs.db Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/reg_files.db Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/rmfiles.excl Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/rmgroup.excl Ignore blank lines and lines starting with character: #
Contents of file: /etc/sam/rmuser.excl Ignore blank lines and lines starting with character: #
Contents of file: /etc/aliases Ignore blank lines and lines starting with character: #
Contents of file: /etc/mail/sendmail.cf Ignore blank lines and lines starting with character: #
Contents of file: /etc/mail/service.switch Ignore blank lines and lines starting with character: #
Contents of file: /etc/syslog.conf Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/perf/parm Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/perf/adviser.syntax Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/perf/alarmdef Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/perf/perflbd.rc Ignore blank lines and lines starting with character: #
Contents of file: /var/opt/perf/ttd.conf Ignore blank lines and lines starting with character: #
Contents of file: /etc/shutdownlog Ignore blank lines and lines starting with character: #
Contents of file: /etc/issue Ignore blank lines and lines starting with character: #
Contents of file: /etc/profile Ignore blank lines and lines starting with character: #
Contents of file: /etc/csh.login Ignore blank lines and lines starting with character: #
Contents of file: /etc/skel/.profile Ignore blank lines and lines starting with character: #
Contents of file: /etc/X11/SecurityPolicy Ignore blank lines and lines starting with character: #
Contents of file: /etc/X11/X0screens Ignore blank lines and lines starting with character: #
.rhosts: Contents of file: /home/pdo/.rhosts .rhosts: Ignore blank lines and lines starting with character: #
.rhosts: Contents of file: //.rhosts .rhosts: Ignore blank lines and lines starting with character: #
Fix data in the snapshot has a default color. Variable data in the snapshot has a specific color.
Generated by SCC (© QNH) on Tue Dec 20 21:06:23 CET 2011
\n