How to start X window?


 
Thread Tools Search this Thread
Operating Systems HP-UX How to start X window?
# 8  
Old 12-28-2011
You do not need to reboot the machine. After executing "init 2", the machine automatically executes the run level scripts. One of them is the script responsible for bringing up X server and CDE.

---------- Post updated 12-28-11 at 12:32 AM ---------- Previous update was 12-27-11 at 11:26 PM ----------

I guess the X server still not working!! Did you check X server logs in /var/log/ directory?

Run level 2 should have brought up the X server.
This User Gave Thanks to admin_xor For This Post:
# 9  
Old 12-28-2011
How did you shutdown the station?
X will start in level 3...
Go in /sbin/init.d and look for the script that starts/stops X... or look in /sbin/rc3.d it should be there with a big S (for start...)
# 10  
Old 12-28-2011
I can not find /log directory in /var.

used code " shutdown -h -now " to shutdown the station. when we power on it,the station failed to power on. we found that Graphic card was llittle bit loose from the slot. put graphic card okay, and the station can power on,but the X window can't start anymore.

I found S990dtlogin.rc in /sbin/rc3.d

---------- Post updated at 08:30 PM ---------- Previous update was at 08:14 PM ----------
Code:
more S990dtlogin.rc
 
 
#!/sbin/sh
# $XConsortium: dtlogin.rc.src /main/1 1996/07/24 11:40:29 drk $
#
# This version of the dtlogin.rc script can be used on the HP-UX
# operating system to initiate 1DE tasks such as starting the dtlogin
# process.
#
#  Common Desktop Environment
#
#  (c) Copyright 1996 Digital Equipment Corporation.
#  (c) Copyright 1993-1994,1996 Hewlett-Packard Company.
#  (c) Copyright 1993-1994,1996 International Business Machines Corp.
#  (c) Copyright 1993-1994,1996 Sun Microsystems, Inc.
#  (c) Copyright 1993-1994,1996 Novell, Inc.
#  (c) Copyright 1996 FUJITSU LIMITED.
#  (c) Copyright 1996 Hitachi.
#
# When placed in the /sbin/rc3.d directory and named appropriately, such as
# "S990dtlogin", this script will automatically start the dtlogin window
# after the HP-UX system boots to its multi-user level.
#
# This script is also called indirectly by the CDE dtconfig command.
PATH=/sbin:/usr/sbin:/usr/bin:/usr/dt/bin
export PATH
mode=$1
case "$mode" in
    'start_msg')
 echo "Start CDE login server"
 exit 0
 ;;
    'stop_msg')
 echo "Stop CDE login server"
 exit 0
 ;;
esac

usage_error() {
    echo "  $0 start             (start dtlogin process)"
    echo "  $0 stop              (stop dtlogin process)"
    echo "  $0 reset             (reset dtlogin process)"
    echo "  $0 update_printers   (update print actions)"
    echo " "
}
if [ ! -d /usr/bin ]; then  # /usr not mounted
    exit 1
fi
set `id`
if [ $1 != "uid=0(root)" ]; then
    echo "$0: must be run as root"
    exit 1
fi
# update_printers()
#
# Add print actions to workstation's database for all printers known
# to this workstation if action is not already present in the database.
update_printers() {
    if [ -x /usr/dt/bin/dtprintinfo ]; then
 /usr/dt/bin/dtprintinfo -populate
    fi
}
#
# Find login server pid from the process tree
#
login_server_pid() {
# In following grep for "dtlogin" processes, explictly exclude any matches
# on this shell file named "dtlogin.rc"

# 83
#
# Use the new XPG4 features of "ps" (also "-C cmdlist" ) to get the pids.
#
    UNIX95=1 ps -C dtlogin -o pid= -o ppid= |
    while read pid ppid; do
 if [ "$(ps -p $ppid | grep dtlogin)" = "" ]; then
     print "$pid"
     break
 fi
    done
}
case "$mode" in
    'start')
 if [ -f /etc/rc.config ]; then
     . /etc/rc.config
 else
     echo "ERROR: /etc/rc.config defaults file MISSING"
 fi
 if [ "CDE" != "${DESKTOP:-}" ]; then
     exit 2
 fi
 update_printers
 if [ -x /usr/dt/bin/dtrc ]; then
     trap "" 1
     /usr/dt/bin/dtrc &
 elif [ -x /usr/dt/bin/dtlogin ]; then
     /usr/dt/bin/dtlogin -daemon
 fi
 ;;
    'stop')
#       get dtlogin pid
 dtlogin_pid=`login_server_pid`
#       kill dtlogin process
        if [ "$dtlogin_pid" != "" ] ; then
             kill $dtlogin_pid
 fi
 ;;
    'reset')
#       get dtlogin pid
        dtlogin_pid=`login_server_pid`
#       reset dtlogin process
        if [ "$dtlogin_pid" != "" ] ; then
             kill -HUP $dtlogin_pid
        fi
 ;;
    'update_printers')
 update_printers
 ;;
    *)
 usage_error
 exit 1
 ;;
esac
exit 0

is this the scrip of start X????

Last edited by Scott; 12-31-2011 at 11:36 AM.. Reason: Code tags
# 11  
Old 12-29-2011
Looks like you have to configure the X server settings. Maybe it's not detecting the video card. A log file would have shown us the way. Can you find xorg.conf file in /etc folder? Run the following command to find the file:

Code:
find /etc -type f -name "xorg.conf"

This User Gave Thanks to admin_xor For This Post:
# 12  
Old 12-29-2011
I can't find "xorg.conf". But I find /etc/X11/XF86Config
Code:
 
"more XF86Config" shows following message 
 
Section "ServerLayout"
 #
 # The ServerLayout ID. A required line.
 #
 #
 # The first field on the Screen line specifies the screen number. It is
 # optional. The second field is the Screen ID. It must match an entry in
 # a Screen section. Only Screens specified here will be active. The
 # remaining fields specify relative or absolute positions of the screen
 # relative to other screens. Check the GAG for full details on 
 # specifying the Screen.
 #
 #
 # Each InputDevice line specifies an InputDevice section ID name and
 # optionally some options that specify the way the device is to be used.
 # Typically there is a pointer device (mouse) and a keyboard. They
 # usually are specified with a CorePointer and CoreKeyboard option
 # respectively. Additional pointers and keyboards are specified with
 # the SendCoreEvents option. The options may also be specified in the
 # InputDevice section. It is not necessary to specify an InputDevice.
 #
 #
 # Uncomment this to force OGL indirect contexts to be rendered in 
 # software.  Indirect rendering is done with the hardware driver by 
 # default.  However, some features such as rendering to a glXPixmap
 # may not be available in all hardware drivers.
 #
 #Option       "AccelerateIndirectRendering" "false" 
       # Uncomment the following line and update the time to turn on Xserver
       # screen blanking. The time is in minutes.
       #Option "blank time"   "10"
       # Uncomment the following lines to set the DPMS time periods. The
       # time is in minutes. The DPMS Monitor Option must be on for these 
       # to have an effect (see the "Monitor" section).
       #Option "standby time" "20"
       #Option "suspend time" "30"
       #Option "off time"     "40"
 Identifier     "Main Layout"
 Screen      0  "Screen 0" 0 0
 InputDevice    "Mouse0" "CorePointer"
 InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
    #
    # FontPaths. Specifies the font paths. You may want to
    # specify a different font path for the following reasons.
    # 1) An application delivers its own fonts.
    # 2) A font server is to be used instead of the default path.
    #
EndSection 
Section "Module"
EndSection 
Section "InputDevice"
 Identifier  "Keyboard0"
 Driver      "keyboard"
EndSection
Section "InputDevice"
 Identifier  "Mouse0"
 Driver      "mouse"
 Option     "Protocol" "PS/2"
 Option     "Device" "/dev/hid/mouse_000"
EndSection
Section "Monitor"
       # DPMS is not enabled by default. Uncomment the following line to 
       # enable it.
       #Option      "DPMS"  "on"
 Identifier   "Monitor 0"
 HorizSync    30.0 - 110.0
 VertRefresh  75.0
EndSection
Section "Device"
 Identifier  "Console"
 DeviceFile "/dev/gvid"
EndSection
Section "Screen"
 #
 # Set the default depth.
 #
 #
 # The subsection associates a buffer depth with a screen size.
 #
 Identifier "Screen 0"
 Device     "Console"
 Monitor    "Monitor 0"
 DefaultDepth     24
 SubSection "Display"
  Depth     24
  Modes    "1280x1024"
 EndSubSection
EndSection

is this the file you mention about?
and how can I get related log about this case??

Last edited by Scott; 12-31-2011 at 11:35 AM.. Reason: Code tags
# 13  
Old 12-29-2011
You are right! I was looking for this file. Well it has successfully detected your monitor's resolution, mouse, etc. The logs files should be located in /var/adm directory. Which version of HP-UX are you using? Can you post the output of "uname -a"? Also, please check if there's an executable file called "dtconfig" in /usr/dt/bin directory. If it's there, you may execute the following command to enable the graphical login:
Code:
/usr/dt/bin/dtconfig -e

and then reboot the machine.
This User Gave Thanks to admin_xor For This Post:
# 14  
Old 12-29-2011
thanks a lot! but after I follow your indication. X window still can not auto start.

"uname -a" shows
Code:
HP-UX thp44186 B.11.11 U 9000/785 2209309777 unlimited-user license
 
 
 
"more var/adm/syslog/syslog.log" shows following message
Dec 29 07:58:49 thp44186 syslogd: restart
Dec 29 07:58:49 thp44186 vmunix: gate64: sysvec_vaddr = 0xc0002000 for 2 pages
Dec 29 07:58:49 thp44186 vmunix: Unexpected interrupt on EIRR bit 32
Dec 29 07:58:49 thp44186 vmunix: NOTICE: autofs_link(): File system was registered at index 3.
Dec 29 07:58:49 thp44186 vmunix: NOTICE: cachefs_link(): File system was registered at index 5.
Dec 29 07:58:49 thp44186 vmunix: NOTICE: nfs3_link(): File system was registered at index 6.
Dec 29 07:58:49 thp44186 vmunix: drp drp_install:  loading driver
Dec 29 07:58:49 thp44186 vmunix: 0 sba
Dec 29 07:58:49 thp44186 vmunix: 0/0 lba
Dec 29 07:58:49 thp44186 vmunix: 0/2 lba
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/1/0. Controller firmware version is 01.03.35.65
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.5 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.5.0 sdisk
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.6 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.6.0 sdisk
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/0.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/1/1. Controller firmware version is 01.03.35.65
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/1 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/1.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/1/1.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/3/0. Controller firmware version is 01.03.35.69
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/0 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/0.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/0.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: Initializing the Ultra320 SCSI Controller at 0/2/3/1. Controller firmware version is 01.03.35.69
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/1 mpt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/1.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/2/3/1.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: 0/3 lba
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/0 hcd
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/0.1 hub
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/0.1.2 hid
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/1 hcd
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/1.1 hub
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/1.1.2 hid
Dec 29 07:58:49 thp44186 vmunix: 0/3/1/2 ehci
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0 side_ba
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.0 side
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.0.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.0.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1 side
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.0 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.0.0 sdisk
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.7 tgt
Dec 29 07:58:49 thp44186 vmunix: 0/3/2/0.1.7.0 sctl
Dec 29 07:58:49 thp44186 vmunix: 0/3/3/0 iether
Dec 29 07:58:49 thp44186 vmunix: 0/4 lba
Dec 29 07:58:49 thp44186 vmunix: 0/4/0/0 gvid_core
Dec 29 07:58:49 thp44186 vmunix: 8 memory
Dec 29 07:58:49 thp44186 vmunix: 16 ipmi
Dec 29 07:58:49 thp44186 vmunix: 17 asio0
Dec 29 07:58:49 thp44186 vmunix: 18 asio0
Dec 29 07:58:49 thp44186 vmunix: 128 processor
Dec 29 07:58:49 thp44186 vmunix: 129 processor
Dec 29 07:58:49 thp44186 vmunix: 152 processor
Dec 29 07:58:49 thp44186 vmunix: 153 processor
Dec 29 07:58:49 thp44186 vmunix: iether0: INITIALIZING HP  PCI 1000Base-T Built-in at hardware path 0/3/3/0
Dec 29 07:58:49 thp44186 vmunix: 
Dec 29 07:58:49 thp44186 vmunix:     System Console is on the ITE
Dec 29 07:58:49 thp44186 vmunix: Logical volume 64, 0x3 configured as ROOT
Dec 29 07:58:49 thp44186 vmunix: Logical volume 64, 0x2 configured as SWAP
Dec 29 07:58:49 thp44186 vmunix: WARNING: Logical volume for Dump expected but not found.
Dec 29 07:58:49 thp44186 vmunix:     Swap device table:  (start & size given in 512-byte blocks)
Dec 29 07:58:49 thp44186 vmunix:         entry 0 - major is 64, minor is 0x2; start = 0, size = 4194304
Dec 29 07:58:49 thp44186 vmunix:     Dump device table:  (start & size given in 1-Kbyte blocks)
Dec 29 07:58:49 thp44186 vmunix:         entry 0000000000000000 - major is 31, minor is 0x5000; start = 314208, size = 2097152
Dec 29 07:58:49 thp44186 vmunix: Starting the STREAMS daemons-phase 1
Dec 29 07:58:49 thp44186 vmunix: Create STCP device files
Dec 29 07:58:49 thp44186 vmunix: Starting the STREAMS daemons-phase 2
Dec 29 07:58:49 thp44186 vmunix:                $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:24:56 PST 2000 $
Dec 29 07:58:49 thp44186 vmunix: Memory Information:
Dec 29 07:58:49 thp44186 vmunix:     physical page size = 4096 bytes, logical page size = 4096 bytes
Dec 29 07:58:49 thp44186 vmunix:     Physical: 2095104 Kbytes, lockable: 1553776 Kbytes, available: 1791796 Kbytes
Dec 29 07:58:49 thp44186 vmunix: 
Dec 29 07:58:50 thp44186 nettl[807]: nettl starting up.
Dec 29 07:58:57 thp44186 rpcbind: check_netconfig: Found CLTS loopback transport
Dec 29 07:58:57 thp44186 rpcbind: check_netconfig: Found COTS loopback transport
Dec 29 07:58:57 thp44186 rpcbind: check_netconfig: Found COTS ORD loopback transport
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for udp
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for tcp
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for ticlts
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for ticotsord
Dec 29 07:58:57 thp44186 rpcbind: init_transport: check binding for ticots
Dec 29 07:58:59 thp44186 inetd[1134]: Reading configuration
Dec 29 07:58:59 thp44186 inetd[1134]: ftp/tcp: Added service, server /usr/lbin/ftpd
Dec 29 07:58:59 thp44186 inetd[1134]: telnet/tcp: Added service, server /usr/lbin/telnetd
Dec 29 07:58:59 thp44186 inetd[1134]: tftp/udp: Added service, server /usr/lbin/tftpd
Dec 29 07:58:59 thp44186 inetd[1134]: bootps/udp: Added service, server /usr/lbin/bootpd
Dec 29 07:58:59 thp44186 inetd[1134]: login/tcp: Added service, server /usr/lbin/rlogind
Dec 29 07:58:59 thp44186 inetd[1134]: shell/tcp: Added service, server /usr/lbin/remshd
Dec 29 07:58:59 thp44186 inetd[1134]: exec/tcp: Added service, server /usr/lbin/rexecd
Dec 29 07:58:59 thp44186 inetd[1134]: ntalk/udp: Added service, server /usr/lbin/ntalkd
Dec 29 07:58:59 thp44186 inetd[1134]: ident/tcp: Added service, server /usr/lbin/identd
Dec 29 07:58:59 thp44186 inetd[1134]: printer/tcp: Added service, server /usr/sbin/rlpdaemon
Dec 29 07:58:59 thp44186 inetd[1134]: daytime/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: daytime/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: time/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: echo/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: echo/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: discard/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: discard/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: chargen/tcp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: chargen/udp: Added service, server internal
Dec 29 07:58:59 thp44186 inetd[1134]: kshell/tcp: Added service, server /usr/lbin/remshd
Dec 29 07:58:59 thp44186 inetd[1134]: klogin/tcp: Added service, server /usr/lbin/rlogind
Dec 29 07:58:59 thp44186 inetd[1134]: dtspc/tcp: Added service, server /usr/dt/bin/dtspcd
Dec 29 07:58:59 thp44186 inetd[1134]: recserv/tcp: Added service, server /usr/lbin/recserv
Dec 29 07:58:59 thp44186 inetd[1134]: registrar/tcp: Added service, server /etc/opt/resmon/lbin/registrar
Dec 29 07:58:59 thp44186 inetd[1134]: swat/tcp: Added service, server /opt/samba/bin/swat
Dec 29 07:58:59 thp44186 inetd[1134]: instl_boots/udp: Added service, server /opt/ignite/lbin/instl_bootd
Dec 29 07:58:59 thp44186 inetd[1134]: rpc.cmsd/udp: Added service, server /usr/dt/bin/rpc.cmsd
Dec 29 07:58:59 thp44186 inetd[1134]: rpc.ttdbserver/tcp: Added service, server /usr/dt/bin/rpc.ttdbserver
Dec 29 07:58:59 thp44186 inetd[1134]: Thru with configuration 
Dec 29 07:58:59 thp44186 inetd[1134]: Configuration complete
Dec 29 07:59:14 thp44186 cimserver[1640]: Listening on HTTPS port 5989.
Dec 29 07:59:14 thp44186 cimserver[1640]: Listening on local connection socket.
Dec 29 07:59:14 thp44186 cimserver[1640]: Started HP-UX WBEM Services version A.02.00.05.
Dec 29 07:59:22 thp44186 vmunix: NOTICE: modld: Module already loaded
Dec 29 07:59:22 thp44186 pwgrd: Started at Thu Dec 29 07:59:22 2011, pid = 2228
Dec 29 07:59:22 thp44186 vmunix: 0/3/1/0.1.2 hid
Dec 29 07:59:26 thp44186 diagmond[2314]: started
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2762]: Setting STREAMS-HEAD high water value to 245760.
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one mpctl succeeded: ncpus = 4.
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one pmap 2
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one pmap 3
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: Number of NFS server daemons increased to 32 in order to cover all processors.
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2772]: nfsd do_one bind 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2773]: nfsd do_one bind 1
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd do_one bind 3
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2774]: nfsd do_one bind 2
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2773]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2774]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2775]: nfsd 1 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2776]: nfsd 3 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2777]: nfsd 2 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2778]: nfsd 1 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2779]: nfsd 2 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2780]: nfsd 3 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2782]: nfsd 1 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2783]: nfsd 3 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2784]: nfsd 3 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2785]: nfsd 3 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2787]: nfsd 1 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2786]: nfsd 3 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2788]: nfsd 3 6  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2789]: nfsd 1 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2790]: nfsd 1 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2773]: nfsd 1 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2791]: nfsd 1 6  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2768]: nfsd 3 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2792]: nfsd 2 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2793]: nfsd 2 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2795]: nfsd 2 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2774]: nfsd 2 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2796]: nfsd 2 6  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2794]: nfsd 2 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2772]: Return from t_optmgmt(XTI_DISTRIBUTE) 0
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2816]: nfsd 0 0  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2817]: nfsd 0 1  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2819]: nfsd 0 3  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2820]: nfsd 0 4  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2821]: nfsd 0 5  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2772]: nfsd 0 7  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2818]: nfsd 0 2  sock 4
Dec 29 07:59:42 thp44186 /usr/sbin/nfsd[2822]: nfsd 0 6  sock 4
Dec 28 17:59:43 thp44186 krsd[2911]: Delay time is 300 seconds
Dec 29 08:16:37 thp44186 ftpd[4440]: FTP LOGIN FROM 192.168.144.191 [192.168.144.191], cx96

is these log shows any clue about my case??
sorry, i really don't understand what these codes means.

Last edited by Scott; 12-31-2011 at 11:35 AM.. Reason: Code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Splitting week start date and end date based on custom period start dates

Below are my custom period start and end dates based on a calender, these dates are placed in a file, for each period i need to split into three weeks for each period row, example is given below. Could you please help out to achieve solution through shell script.. File content: ... (2 Replies)
Discussion started by: nani2019
2 Replies

2. UNIX for Beginners Questions & Answers

Toggle between xterm window and standard terminal window

Is it possible to toggle back and forth between an xterm invoked from one tty, and a shell invoked from a different tty? I am running Centos 7 with KDE and booting in non-graphic mode. After logging in on the default window (/dev/tty1) , I can then use ALT-F2 to access a new window (/dev/tty2),... (1 Reply)
Discussion started by: rhgscty
1 Replies

3. IP Networking

TCP initial congestion window (slow-start)

I have noticed that the initial congestion window in my traces is 8920bytes~=6*1448. rfc3390 states the initial cwand should be max 4000 bytes(around 3*1448). At first i thought it might be because i'm running my server on mac os x, so apple might have modified the tcp stack. Therefore I tried... (2 Replies)
Discussion started by: ddayan
2 Replies

4. Red Hat

Maximizing X window without Window Switcher

Hi everyone! I have a strange situation. I'm running an NX remote Gnome desktop session. On the remote machine, there is a whole load of unsaved data in a window. A problem that I've been having with this NX session is that I can't load Gnome Applets, including the Window Switcher. So.. when I... (0 Replies)
Discussion started by: alexandicity
0 Replies

5. Shell Programming and Scripting

Start program in background (or start crontab ahead of time)

Hey! I'm working on a script that will add a user, create some configfiles, and add a crontab for the user. The crontab looks like the following: @reboot /home/user/program config.conf & I would like for this process to start at the end of my script under the corresponding username by... (0 Replies)
Discussion started by: noratx
0 Replies

6. AIX

Q: how to start a service when system start

As topic, assume we have a service called "blahservice" and we can start it by: startsrc -s blahservice what is the best practice to run such command when system start? - directly use mkitab to add it into /etc/inittab or - drop startup scripts in /etc/rc.d/rcX.d I know they... (4 Replies)
Discussion started by: acerlinux
4 Replies

7. Linux

where to put an application if i want to start it on start up

hi i want to know the way by which i put any file somewhere and it get s started when the system restarts or bots i mean whenever my system starts that application must also start thanks (3 Replies)
Discussion started by: shukla_chanchal
3 Replies

8. HP-UX

how to start the x window system

hi, am new to hp-ux, i just bought an hp-ux with the hp-ux 11.0 os, is very old, and i wnat to start the x window system but it send an error that said that couldn't open the x server, i try startx, xinit, and nothing, and also where i can find tutorials for hp-ux os for beginners (7 Replies)
Discussion started by: nobody
7 Replies

9. Windows & DOS: Issues & Discussions

window 2000 professional not pinging my window 98 system.

Hello, We someone help me resolve this problem. I have window 2000 professional, windows 98 and Unixware 7.0.1 on the network. I was able to establish connection with all. However, l was unable to ping window 98 from window 2000 professional. I was able to ping the window 2000 from the window... (10 Replies)
Discussion started by: kayode
10 Replies

10. UNIX for Dummies Questions & Answers

How do I start a program when I start my Computer?

I'm running MAC OS X and I'm wondering how I start 'nixey programs (not normal apps) on startup? Things like the dnet client and hxd Hotline Server. Anyone know? (1 Reply)
Discussion started by: l008com
1 Replies
Login or Register to Ask a Question