Mar 1, 1999 frc7v-cl1: Server Solaris 2.6、cc ドライバのテスト --- クライアントシステム上での cc ドライバのデバッグ#01(その4) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (http://www-online.kek.jp/~inoue/CAMAC/onl8v1-sol2.6-serv/ Cli1-CAMAC/debug-step04.txt) 高エネルギー加速器研究機構 素粒子原子核研究所 物理、オンライングループ 井上 栄二 (1). 現状確認 (A). 株式会社ロジックハウスの白田様より SPARC CPU-8VT と、VMEドライバ v2.3.1 を借用した。 (B). 株式会社ロジックハウスの白田様より Server Solaris 2.6 のシステム がインストールされているハードディスクを借用した。 (C). 借用したハードディスクのサーバ側のシステム設定を変更して、KEK の FP クラスタ上で立ち上げた。 (D). ファイルを直接修正する方法で、クライアント(その1)側のシステム 設定を変更したがクライアントは立ち上がれなかった。 (E). Solsticeを起動してホストマネージャを使って、frc7v-cl1ディスクレス クライアントの設定をやり直した。 (F). ディスクレス・クライアントのシステム、frc7v-cl1 が起動できること を確認した。 (G). frc7v-cl1 のシステムにVMEドライバ、FRCvme-2.3.1 をインストールし、 その後、frc7v-cl1 のシステム設定をやり直した。 (H). Solsticeを起動してホストマネージャを使って、frc7v-cl2ディスクレス クライアントの設定をやり直した。 (I). ディスクレス・クライアントのシステム、frc7v-cl2 が起動できること を確認した。 (J). frc7v-cl1、クライアントのシステムに ccドライバをインストールした。 (K). frc7v-cl1、クライアントのシステム上でサンプル・プログラムを実行 シングルアクションの 24ビットread/write は ok. LAM割り込み処理は、ok. ブロック転送 read/write は NG. (L). CPU-7Vのボードで FRCvme2.3.1 が正しく動作できることを確認した。 (M). frc8vt、サーバ・システムに ccドライバをインストールした。 (N). frc8vt、サーバ・システム上でンプル・プログラムを実行 シングルアクションの 24ビットread/write は ok. LAM割り込み処理は、ok. ブロック転送 read/write は 16 および 24ビットとも、ok. (O). 株式会社ロジックハウスの高橋様の修正された ccドライバを実行したが 状況に変化はなかった。 (P). 株式会社ロジックハウスの白田様の提案より、デスクレス・クライアント のシステムにローカル・ディスクをつなぎ、マウントした後で ccドライバ を実行したが状況に変化はなかった。 (Q). cam2 プログラムを実行すると、 cc.cプログラム中のどの命令を実行 した時にパニックを起こすのか調べた。 (2). ここでやるべきこと 株式会社ロジックハウスの高橋様より指摘された savecore について調べる。 (3). パニック時の vmcore.x および unix.x ファイルを調べる ロジックハウスの高橋さんからのメール。 >もし可能であればクラッシュしたときのvmcore.x、unix.xファイルを >メールで送って頂けませんでしょうか? (3-1). /etc/rc2.d/S20sysetupファイルの設定 frc7v-cl1# pwd /etc/rc2.d frc7v-cl1# ls K20spc@ S47asppp* S74syslog* S89bdconfig@ K60nfs.server* S69inet* S74xntpd* S91afbinit* K76snmpdx* S70uucp* S75cron* S91leoconfig* K77dmi* S71rpc* S76nscd* S92rtvc-config* README S71sysid.sys* S80PRESERVE* S92volmgt* S01MOUNTFSYS* S72autoinstall* S80lp* S93cacheos.finish* S05RMTMPFILES* S72inetsvc* S80spc@ S94Wnn6@ S20sysetup* S73cachefs.daemon* S85power* S99audit* S21perf* S73nfs.client* S88sendmail* S99dtlogin* S30sysid.net* S74autofs* S88utmpd* frc7v-cl1# ls -l S20sysetup -rwxr--r-- 2 root sys 822 Jul 16 1997 S20sysetup* frc7v-cl1# cat S20sysetup #!/bin/sh # # Copyright(c) 1984-1997, by Sun Microsystems, Inc. # All rights reserved. # #ident "@(#)sysetup 1.15 97/04/24 SMI" /* SVr4.0 1.4.2.1 */ # This file contains system setup requirements for the system. set `/usr/bin/who -r` if [ $9 != "S" -a $9 != "1" ] then exit fi # if the prtconf command exists, then, the system configuration # is printed # Default is not to do this. Too noisy, to long. #if [ -x /usr/sbin/prtconf ] #then # /usr/sbin/prtconf #fi # If there are trademark files, print them. if [ -d /etc/tm ] then /usr/bin/cat /etc/tm/* 2> /dev/null fi ## ## Default is to not do a savecore ## #if [ ! -d /var/crash/`uname -n` ] #then mkdir -m 0700 -p /var/crash/`uname -n` #fi # echo 'checking for crash dump...\c ' #savecore /var/crash/`uname -n` # echo '' frc7v-cl1# /etc/rc2.d/S20sysetupファイルを修正する。 frc7v-cl1# vi S20sysetup #!/bin/sh # # Copyright(c) 1984-1997, by Sun Microsystems, Inc. # All rights reserved. # #ident "@(#)sysetup 1.15 97/04/24 SMI" /* SVr4.0 1.4.2.1 */ # This file contains system setup requirements for the system. set `/usr/bin/who -r` if [ $9 != "S" -a $9 != "1" ] then exit fi # if the prtconf command exists, then, the system configuration # is printed # Default is not to do this. Too noisy, to long. #if [ -x /usr/sbin/prtconf ] #then # /usr/sbin/prtconf #fi # If there are trademark files, print them. if [ -d /etc/tm ] then /usr/bin/cat /etc/tm/* 2> /dev/null fi ## ## Default is to not do a savecore ## if [ ! -d /var/crash/`uname -n` ] then mkdir -m 0700 -p /var/crash/`uname -n` fi echo 'checking for crash dump...\c ' savecore /var/crash/`uname -n` echo '' # # By E.Inoue Feb 25, 1999 #if [ ! -d /export/home/frc7v-cl1/debug/`uname -n` ] #then mkdir -m 0700 -p /export/home/frc7v-cl1/debug/`uname -n` #fi # echo 'checking for crash dump...\c ' #savecore /export/home/frc7v-cl1/debug/`uname -n` # echo '' "S20sysetup" 49 lines, 1096 characters frc7v-cl1# ここで、システムをリブートする。 frc7v-cl1 console login: root Password: Feb 25 11:31:21 frc7v-cl1 login: ROOT LOGIN /dev/console Last login: Fri Feb 19 16:45:43 on console Sun Microsystems Inc. SunOS 5.6 Generic August 1997 Starting OpenWindows in 5 seconds (type Control-C to interrupt) ^C# # /usr/sbin/shutdown -i0 -g0 Shutdown started. Thu Feb 25 11:31:47 JST 1999 Do you want to continue? (y or n): y Broadcast Message from root (console) on frc7v-cl1 Thu Feb 25 11:31:49... THE SYSTEM IS BEING SHUT DOWN NOW ! ! ! Log off now or risk your files being damaged showmount: frc7v-cl1: RPC: Program not registered Changing to init state 0 - please wait # INIT: New run level: 0 The system is coming down. Please wait. System services are now being stopped. Print services stopped. Stopping the syslog service. syslogd: going down on signal 15 umount: /net/onlsun1/home1/local busy umount: /net/onlsun1/home1/opt_ext busy umount: /net/onlsun1/home1/cern busy umount: /net/onlsun1/home1 busy umount: /net/onlsun1/home3 busy umount: /net/onlsun1/home4 busy umount: /net/onlsun1/usr busy umount: /net/onlsun1/export busy umount: /net busy nfs umount: /export/home/frc7v-cl1: is busy Feb 25 11:32:42 snmpdx: received signal 15 umount: /net/onlsun1/home1/opt_ext busy umount: /net/onlsun1/home1/cern busy umount: /net/onlsun1/home1/local busy umount: /net/onlsun1/home1 busy umount: /net/onlsun1/home3 busy umount: /net/onlsun1/export busy umount: /net/onlsun1/home4 busy umount: /net/onlsun1/usr busy umount: /net busy The system is down. syncing file systems... done Program terminated Type help for more information ok ok boot -r Resetting ... screen not found. Can't open input device. Keyboard not present. Using tty for input and output. SPARC CPU-7V, No Keyboard ROM Rev. 2.15.1, 64 MB memory installed, Serial #9157050. Ethernet address 0:80:42:b:49:ba, Host ID: 808bb9ba. apply failed. Rebooting with command: -r Boot device: /iommu/sbus/ledma@5,8400010/le@5,8c00000 File and args: -r 2dc00 hostname: frc7v-cl1 domainname: kek.jp root server: frc8vt root directory: /export/root/frc7v-cl1 SunOS Release 5.6 Version Generic_105181-05 [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. configuring network interfaces: le0. Hostname: frc7v-cl1 Mounting /dev/swap for swap Configuring the /devices directory FRCvme V2.3.1 VME Nexus (FGA-5000 FGA-5100) NOTICE: VME: slavewin at vme=0x0, size=0x100000 space=0x2d020617 CAMAC device driver V1.3x, 1991-1993 by Y.TAKEUCHI (T.I.T.) cc0 at VME0: vme16d16 0xff00 VME level 4 vector 0xff sparc ipl 7 vmemem0 at VME0: vme32d16 0x0 vmemem1 at VME0: vme16d16 0x0 vmemem2 at VME0: vme24d16 0x0 vmemem3 at VME0: vme32d32 0x0 vmemem4 at VME0: vme16d32 0x0 vmemem5 at VME0: vme24d32 0x0 vmeplus0 at VME0: vme16d16 0x0 and vme24d16 0x0 and vme32d16 0x0 and vme16d32 0x 0 and vme24d32 0x0 and vme32d32 0x0 and space 0x2f offset 0x0 and space 0x6f offset 0x0 and space 0x10 offset 0x0 and space 0x11 offset 0x0 and space 0x50 offset 0x0 and space 0x51 offset 0x0 vmedma0 at VME0 vmefdma0 at VME0 vmedvma0 at VME0 vmectl0 at VME0 Configuring the /dev directory Configuring the /dev directory (compatibility devices) The system is coming up. Please wait. checking for crash dump... default ICCFP1.kek.jp done add net default: gateway ICCFP1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway frc7v-cl1 syslog service starting. syslogd: line 24: unexpected getnetconfig failure Print services started. volume management starting. Wnn6: Key License Server started.... Nihongo Multi Client Server (Wnn6 R2.30) Finished Reading Files The system is ready. frc7v-cl1 console login: ok. システムは正常に立ち上がった。 (3-2). cam2 を実行する frc7v-cl1[40]% cam2 Input transfer mode (1:word 2:long word) >1 Input loop >5 Input mode (0:QSTOP 1:QIGNORE 2:QREPEAT 3:QSCAN) >1 Input data counts >5 Input n a f >3 0 0 BAD TRAP: type=9 rp=fc05b8ec addr=f603bf5c mmu_fsr=326 rw=1 cam2: Data fault kernel read fault at addr=0xf603bf5c, pme=0x0 MMU sfsr=326: Invalid Address on supv data fetch at level 3 pte addr = 0xf5f00cec, level = 3 wrong ctx/as ctx 0, as 0xf5914740 wrong ctx/as 2 ctx 0, as 0x90 pid=350, pc=0xf5fb8360, sp=0xfc05b938, psr=0x44010c3, context=0 g1-g7: f5900000, f026f0bc, a00, c00, 200, 1, f5f0ea60 Begin traceback... sp = fc05b938 Called from f5fb0d50, fp=fc05b9a0, args=f5c2add0 2a 600 fc05bad8 f603af00 f00000 Called from f00bd3ac, fp=fc05ba70, args=f00000 5 600 2a fc05bb08 f5c2add0 Called from f0068900, fp=fc05bb80, args=f5939e78 f5f6036c 22 3 22 3 Called from 11f30, fp=effff8c0, args=1 600 3f53c0 5 24a70 24a80 End traceback... panic: Data fault syncing file systems... 2 done 2529 static and sysmap kernel pages 94 dynamic kernel data pages 388 kernel-pageable pages 0 segkmap kernel pages 0 segvn kernel pages 287 current user process pages 3298 total pages (3298 chunks) dumping to vp f5beac3c, offset 39128 - nfs_dump: bindresvport failed: Permission denied 0 total pages, dump i/o error rebooting... Resetting ... ^?screen not found. Can't open input device. Keyboard not present. Using tty for input and output. SPARC CPU-7V, No Keyboard ROM Rev. 2.15.1, 64 MB memory installed, Serial #9157050. Ethernet address 0:80:42:b:49:ba, Host ID: 808bb9ba. apply failed. Rebooting with command: Boot device: /iommu/sbus/ledma@5,8400010/le@5,8c00000 File and args: 2dc00 hostname: frc7v-cl1 domainname: kek.jp root server: frc8vt root directory: /export/root/frc7v-cl1 SunOS Release 5.6 Version Generic_105181-05 [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. configuring network interfaces: le0. Hostname: frc7v-cl1 Mounting /dev/swap for swap The system is coming up. Please wait. checking for crash dump... default ICCFP1.kek.jp done add net default: gateway ICCFP1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway frc7v-cl1 syslog service starting. syslogd: line 24: unexpected getnetconfig failure Print services started. volume management starting. Wnn6: Key License Server started.... Nihongo Multi Client Server (Wnn6 R2.30) Finished Reading Files The system is ready. frc7v-cl1 console login: ok. システムは正常に立ち上がった。 (3-3). システム・クラッシュ・ダンプ・ファイルをチェック frc7v-cl1# pwd /var frc7v-cl1# ls -l total 48 drwxrwxr-x 6 root sys 512 Feb 21 03:16 adm/ drwxr-xr-x 2 root sys 512 Feb 1 15:57 audit/ drwxrwxrwx 3 root root 512 Feb 25 11:42 crash/ drwxr-xr-x 2 root sys 512 Feb 1 16:32 cron/ drwxrwxr-x 5 root sys 512 Feb 1 15:59 dmi/ drwxr-xr-x 5 root root 512 Feb 25 11:50 dt/ drwxr-xr-x 3 daemon sys 512 Feb 1 15:59 locale/ drwxr-xr-x 2 root sys 512 Feb 1 15:59 log/ drwxrwxr-x 3 lp lp 512 Feb 1 15:59 lp/ drwxrwxrwt 3 root mail 512 Feb 1 15:57 mail/ drwxrwxr-x 3 daemon daemon 512 Feb 1 15:59 mle/ drwxrwxr-x 2 bin bin 512 Feb 1 15:57 news/ drwxr-xr-x 2 root sys 512 Feb 1 15:59 nis/ drwxr-xr-x 3 root sys 512 Feb 1 15:59 ntp/ drwxrwxr-x 2 root sys 512 Feb 1 15:57 opt/ drwxrwxrwt 2 bin bin 512 Feb 1 15:57 preserve/ drwxr-xr-x 7 root sys 512 Feb 1 15:58 sadm/ drwxr-xr-x 3 bin bin 512 Feb 1 16:33 saf/ drwxrwxr-x 3 root sys 512 Feb 25 11:50 snmp/ drwxrwxr-x 10 root bin 512 Feb 1 15:59 spool/ drwxr-xr-x 4 root root 512 Feb 1 16:32 statmon/ drwxrwxrwt 2 sys sys 512 Feb 25 11:50 tmp/ drwxr-xr-x 7 uucp uucp 512 Feb 1 15:58 uucp/ drwxr-xr-x 3 bin bin 512 Feb 1 16:00 yp/ frc7v-cl1# cd crash frc7v-cl1# ls -l total 2 drwx------ 2 root root 512 Feb 25 11:42 frc7v-cl1/ frc7v-cl1# chmod go+rwx frc7v-cl1 frc7v-cl1# ls -l total 2 drwxrwxrwx 2 root root 512 Feb 25 11:42 frc7v-cl1/ frc7v-cl1# cd frc7v-cl1 frc7v-cl1# ls -l total 0 frc7v-cl1# システム・クラッシュ・ダンプ・ファイル・ファイルは作られていない。 パニック時のコンソールのメッセージを見ると、以下のようになっており メモリー・イメージをダンプ・デバイスに書き込む時点に、"dump i/o error" を起こしている。 panic: Data fault syncing file systems... 2 done 2529 static and sysmap kernel pages 94 dynamic kernel data pages 388 kernel-pageable pages 0 segkmap kernel pages 0 segvn kernel pages 287 current user process pages 3298 total pages (3298 chunks) dumping to vp f5beac3c, offset 39128 - nfs_dump: bindresvport failed: Permission denied 0 total pages, dump i/o error rebooting... このため、savecoreコマンドは savecoreディレクトリに、unix.x および vmcore.x のファイルを作ることができなかったようだ。 ダンプ・デバイスはディフォルトでは、プライマリ・スワップ・デバイス になっている。 ディスクレス・クライアントでは、プライマリ・スワップ デバイスとしてサーバのディスクを nfs で使っている。 パニックが起きた 時点では、nfs が正常に働けないのでダンプ・デバイスに書き込めないという ことになる。 ロジックハウスの高橋さんからのメール。 >クラッシュダンプの件ですが、ディスクレスにて作成するには >パーミッションの設定もありますが、パニックによってネットワークが >使用できない状態になってしまって無理な可能性もあると思われます。 >ローカルにディスクを繋いでswapをローカルディスクに移せば可能かと思いま >す。 >設定手順に付きましては分かり次第お知らせ致します。 ロジックハウスの高橋さんからのメール。 >ディスクレスにてクラッシュダンプ作成する設定について >お知らせ致します。 >まず、デスクトップで使用しているディスクで立ち上げ >swapがどのパーティションを使用しているか調べます。 >標準インストールでは、/dev/dsk/c0t3d0s3になっていますが >違う場合もありますので確かめて下さい。 >サーバより/export/root/hostname/etc/vfstabファイルの >swap行をローカルディスクへ変更します。 >変更例を以下に示します。 >/export/root/frc7v-cl3/etc/vfstabファイル >----------------------------------------------------------- >#device device mount FS fsck mount >mount >#to mount to fsck point type pass at boot >options ># >#/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes - >/proc - /proc proc - no - >fd - /dev/fd fd - no - >swap - /tmp tmpfs - yes - > >frc7v-cl2:/export/root/frc7v-cl3 - / nfs - - >rw >#frc7v-cl2:/export/swap/frc7v-cl3 - /dev/swap nfs - >- - <--- 変更前 >/dev/dsk/c0t3d0s3 - - swap - no - <--- 変更後 >/dev/swap - - swap - - - >frc7v-cl2:/export/exec/Solaris_2.6_sparc.all/usr - /usr nfs >- - rw .この設定をして、ディスクレスを >boot net -r .にて立ち上げればローカルディスクがswapデバイスに使用されますので >クラッシュダンプが取れるようになります。 (3-4). ローカルディスクをつないでやり直す 現在、swapデバイスには frc8vtサーバのディスクを nfs で使用している。 これだとシステム・クラッシュ時にダンプ・ファイルを書き込めない。 savecore でクラッシュ・ファイルを入手するために、frc7v-cl1ディスクレス システムに swap用のローカルディスクをつないで使用するように変更する。 ローカルディスクには、onl7v2(Desktop Solaris2.6) のシステム・ディスク を使用する。 (3-4-1). swap用に使用しているディスク・スライスを確認 onl7v2(Desktop Solaris2.6) のシステムを立ち上げて、swap に使用している ディスク・スライスを確認する。 frc7v-cl1 console login: root Password: Mar 1 09:49:36 frc7v-cl1 login: ROOT LOGIN /dev/console Last login: Fri Feb 26 16:16:52 on console Sun Microsystems Inc. SunOS 5.6 Generic August 1997 Starting OpenWindows in 5 seconds (type Control-C to interrupt) ^C# # /usr/sbin/shutdown -i0 -g0 Shutdown started. Mon Mar 1 09:49:47 JST 1999 Do you want to continue? (y or n): y Broadcast Message from root (console) on frc7v-cl1 Mon Mar 1 09:49:49... THE SYSTEM IS BEING SHUT DOWN NOW ! ! ! Log off now or risk your files being damaged showmount: frc7v-cl1: RPC: Program not registered Changing to init state 0 - please wait # INIT: New run level: 0 The system is coming down. Please wait. System services are now being stopped. Print services stopped. Stopping the syslog service. syslogd: going down on signal 15 nfs umount: /export/home/frc7v-cl1: is busy Mar 1 09:50:42 snmpdx: received signal 15 The system is down. syncing file systems... done Program terminated Type help for more information ok ok boot disk Resetting ... screen not found. Can't open input device. Keyboard not present. Using tty for input and output. SPARC CPU-7V, No Keyboard ROM Rev. 2.15.1, 64 MB memory installed, Serial #9157050. Ethernet address 0:80:42:b:49:ba, Host ID: 808bb9ba. apply failed. Rebooting with command: disk Boot device: /iommu/sbus/espdma@5,8400000/esp@5,8800000/sd@3,0 File and args: SunOS Release 5.6 Version Generic [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. FRCvme VME Nexus V2.2.2 (FGA-5000 FGA-5100) NOTICE: VME: slavewin at vme=0x0, size=0x100000 space=0x2c020017 configuring network interfaces: le0. Hostname: onl7v2 The system is coming up. Please wait. checking ufs filesystems /dev/rdsk/c0t3d0s5: is clean. /dev/rdsk/c0t3d0s7: is clean. add net default: gateway ICCFG1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway onl7v2 syslog service starting. Print services started. volume management starting. The system is ready. onl7v2 console login: ok. onl7v2 のシステムが立ち上がった。 swap に使っているディスク・スライスを調べる。 onl7v2[34]% pwd /etc onl7v2[35]% cat vfstab #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options # #/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes - fd - /dev/fd fd - no - /proc - /proc proc - no - /dev/dsk/c0t3d0s1 - - swap - no - /dev/dsk/c0t3d0s0 /dev/rdsk/c0t3d0s0 / ufs 1 no - /dev/dsk/c0t3d0s6 /dev/rdsk/c0t3d0s6 /usr ufs 1 no - /dev/dsk/c0t3d0s7 /dev/rdsk/c0t3d0s7 /export/home ufs 2 y es - /dev/dsk/c0t3d0s5 /dev/rdsk/c0t3d0s5 /opt ufs 2 yes - swap - /tmp tmpfs - yes - onl7v2[36]% swap に使っているディスク・スライスは、1である。 (3-4-2). frc8vt サーバ側の /export/root/frc7v-cl1/etc/vfstabファイルを修正 frc8vt# pwd /export/root/frc7v-cl1/etc frc8vt# cat vfstab #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options # #/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes - /proc - /proc proc - no - fd - /dev/fd fd - no - swap - /tmp tmpfs - yes - frc8vt:/export/root/frc7v-cl1 - / nfs - - rw frc8vt:/export/swap/frc7v-cl1 - /dev/swap nfs - - - /dev/swap - - swap - - - frc8vt:/export/exec/Solaris_2.6_sparc.all/usr - /usr nfs - r o frc8vt# vi vfstab #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options # #/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes - /proc - /proc proc - no - fd - /dev/fd fd - no - swap - /tmp tmpfs - yes - frc8vt:/export/root/frc7v-cl1 - / nfs - - rw #frc8vt:/export/swap/frc7v-cl1 - /dev/swap nfs - - - /dev/dsk/c0t3d0s1 - - swap - no - /dev/swap - - swap - - - frc8vt:/export/exec/Solaris_2.6_sparc.all/usr - /usr nfs - - ro ~ ~ "vfstab" 13 lines, 456 characters frc8vt# ok. サーバ側の /export/root/frc7v-cl1/etc/vfstabファイルを修正した。 (3-4-3). frc7v-cl1クライアントを立ち上げる onl7v2 のシステムをシャットダウンして、frc7v-cl1 のシステムを立ち上げる onl7v2 console login: root Password: Mar 1 10:35:34 onl7v2 login: ROOT LOGIN /dev/console Last login: Fri Feb 19 10:11:14 on console Sun Microsystems Inc. SunOS 5.6 Generic August 1997 Starting OpenWindows in 5 seconds (type Control-C to interrupt) ^C# # /usr/sbin/shutdown -i0 -g0 Shutdown started. Mon Mar 1 10:35:44 JST 1999 Do you want to continue? (y or n): y Broadcast Message from root (console) on onl7v2 Mon Mar 1 10:35:45... THE SYSTEM IS BEING SHUT DOWN NOW ! ! ! Log off now or risk your files being damaged showmount: onl7v2: RPC: Program not registered Changing to init state 0 - please wait # INIT: New run level: 0 The system is coming down. Please wait. System services are now being stopped. Print services stopped. Stopping the syslog service. syslogd: going down on signal 15 Mar 1 10:36:34 snmpdx: received signal 15 The system is down. syncing file systems... done Program terminated Type help for more information ok ok boot net -r Boot device: /iommu/sbus/ledma@5,8400010/le@5,8c00000 File and args: -r 2dc00 hostname: frc7v-cl1 domainname: kek.jp root server: frc8vt root directory: /export/root/frc7v-cl1 SunOS Release 5.6 Version Generic_105181-05 [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. configuring network interfaces: le0. Hostname: frc7v-cl1 Configuring the /devices directory FRCvme V2.3.1 VME Nexus (FGA-5000 FGA-5100) NOTICE: VME: slavewin at vme=0x0, size=0x100000 space=0x2d020617 CAMAC device driver V1.3x, 1991-1993 by Y.TAKEUCHI (T.I.T.) cc0 at VME0: vme16d16 0xff00 VME level 4 vector 0xff sparc ipl 7 vmemem0 at VME0: vme32d16 0x0 vmemem1 at VME0: vme16d16 0x0 vmemem2 at VME0: vme24d16 0x0 vmemem3 at VME0: vme32d32 0x0 vmemem4 at VME0: vme16d32 0x0 vmemem5 at VME0: vme24d32 0x0 vmeplus0 at VME0: vme16d16 0x0 and vme24d16 0x0 and vme32d16 0x0 and vme16d32 0x 0 and vme24d32 0x0 and vme32d32 0x0 and space 0x2f offset 0x0 and space 0x6f offset 0x0 and space 0x10 offset 0x0 and space 0x11 offset 0x0 and space 0x50 offset 0x0 and space 0x51 offset 0x0 vmedma0 at VME0 vmefdma0 at VME0 vmedvma0 at VME0 vmectl0 at VME0 Configuring the /dev directory Configuring the /dev directory (compatibility devices) The system is coming up. Please wait. checking for crash dump...savecore: /dev/dump: No such device default ICCFP1.kek.jp done add net default: gateway ICCFP1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway frc7v-cl1 No swap devices configured /dev/dsk/c0t3d0s3: I/O error No swap devices configured "/dev/swap" is not valid for swapping. It must be a block device or a regular file with the "save user text on execution" bit set. syslog service starting. syslogd: line 24: unexpected getnetconfig failure Print services started. volume management starting. Wnn6: Key License Server started.... Nihongo Multi Client Server (Wnn6 R2.30) Finished Reading Files The system is ready. frc7v-cl1 console login: システムは正常に立ち上がった。 frc7v-cl1 console login: root Password: Mar 1 10:42:34 frc7v-cl1 login: ROOT LOGIN /dev/console Last login: Mon Mar 1 09:49:36 on console Sun Microsystems Inc. SunOS 5.6 Generic August 1997 Starting OpenWindows in 5 seconds (type Control-C to interrupt) ^C# /usr/sbin/shutdown -i0 -g0 Shutdown started. Mon Mar 1 10:42:45 JST 1999 Do you want to continue? (y or n): y Broadcast Message from root (console) on frc7v-cl1 Mon Mar 1 10:42:47... THE SYSTEM IS BEING SHUT DOWN NOW ! ! ! Log off now or risk your files being damaged showmount: frc7v-cl1: RPC: Program not registered Changing to init state 0 - please wait # INIT: New run level: 0 The system is coming down. Please wait. System services are now being stopped. Print services stopped. Stopping the syslog service. syslogd: going down on signal 15 nfs umount: /vol: not mounted Mar 1 10:43:39 snmpdx: received signal 15 The system is down. syncing file systems... done Program terminated ok ok boot disk Resetting ... screen not found. Can't open input device. Keyboard not present. Using tty for input and output. SPARC CPU-7V, No Keyboard ROM Rev. 2.15.1, 64 MB memory installed, Serial #9157050. Ethernet address 0:80:42:b:49:ba, Host ID: 808bb9ba. apply failed. Rebooting with command: disk Boot device: /iommu/sbus/espdma@5,8400000/esp@5,8800000/sd@3,0 File and args: SunOS Release 5.6 Version Generic [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. FRCvme VME Nexus V2.2.2 (FGA-5000 FGA-5100) NOTICE: VME: slavewin at vme=0x0, size=0x100000 space=0x2c020017 configuring network interfaces: le0. Hostname: onl7v2 The system is coming up. Please wait. checking ufs filesystems /dev/rdsk/c0t3d0s5: is clean. /dev/rdsk/c0t3d0s7: is clean. add net default: gateway ICCFG1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway onl7v2 syslog service starting. Print services started. volume management starting. The system is ready. onl7v2 console login: onl7v2 console login: root Password: Mar 1 10:48:39 onl7v2 login: ROOT LOGIN /dev/console Last login: Mon Mar 1 10:35:34 on console Sun Microsystems Inc. SunOS 5.6 Generic August 1997 Starting OpenWindows in 5 seconds (type Control-C to interrupt) ^C# # df -k Filesystem kbytes used avail capacity Mounted on /dev/dsk/c0t3d0s0 65767 21814 43888 34% / /dev/dsk/c0t3d0s6 586735 384353 201796 66% /usr /proc 0 0 0 0% /proc fd 0 0 0 0% /dev/fd /dev/dsk/c0t3d0s7 7910181 153639 7677441 2% /export/home /dev/dsk/c0t3d0s5 28719 11684 17007 41% /opt swap 117048 12 117036 1% /tmp # frc8vt# pwd /export/root/frc7v-cl1/etc frc8vt# vi vfstab #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options # #/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes - /proc - /proc proc - no - fd - /dev/fd fd - no - swap - /tmp tmpfs - yes - frc8vt:/export/root/frc7v-cl1 - / nfs - - rw #frc8vt:/export/swap/frc7v-cl1 - /dev/swap nfs - - - /dev/dsk/c0t3d0s1 - - swap - no - /dev/swap - - swap - - - frc8vt:/export/exec/Solaris_2.6_sparc.all/usr - /usr nfs - - ro ~ ~ "vfstab" 13 lines, 456 characters frc8vt# onl7v2 console login: root Password: Last login: Mon Mar 1 10:48:39 on console Sun Microsystems Inc. SunOS 5.6 Generic August 1997 Starting OpenWindows in 5 seconds (type Control-C to interrupt) ^C# # /usr/sbin/shutdown -i0 -g0 Shutdown started. Mon Mar 1 10:52:47 JST 1999 Do you want to continue? (y or n): y Broadcast Message from root (console) on onl7v2 Mon Mar 1 10:52:49... THE SYSTEM IS BEING SHUT DOWN NOW ! ! ! Log off now or risk your files being damaged showmount: onl7v2: RPC: Program not registered Changing to init state 0 - please wait # INIT: New run level: 0 The system is coming down. Please wait. System services are now being stopped. Print services stopped. Stopping the syslog service. syslogd: going down on signal 15 Mar 1 10:53:38 snmpdx: received signal 15 The system is down. syncing file systems... done Program terminated Type help for more information ok ok boot net -r Boot device: /iommu/sbus/ledma@5,8400010/le@5,8c00000 File and args: -r 2dc00 hostname: frc7v-cl1 domainname: kek.jp root server: frc8vt root directory: /export/root/frc7v-cl1 SunOS Release 5.6 Version Generic_105181-05 [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. configuring network interfaces: le0. Hostname: frc7v-cl1 Configuring the /devices directory FRCvme V2.3.1 VME Nexus (FGA-5000 FGA-5100) NOTICE: VME: slavewin at vme=0x0, size=0x100000 space=0x2d020617 CAMAC device driver V1.3x, 1991-1993 by Y.TAKEUCHI (T.I.T.) cc0 at VME0: vme16d16 0xff00 VME level 4 vector 0xff sparc ipl 7 vmemem0 at VME0: vme32d16 0x0 vmemem1 at VME0: vme16d16 0x0 vmemem2 at VME0: vme24d16 0x0 vmemem3 at VME0: vme32d32 0x0 vmemem4 at VME0: vme16d32 0x0 vmemem5 at VME0: vme24d32 0x0 vmeplus0 at VME0: vme16d16 0x0 and vme24d16 0x0 and vme32d16 0x0 and vme16d32 0x 0 and vme24d32 0x0 and vme32d32 0x0 and space 0x2f offset 0x0 and space 0x6f offset 0x0 and space 0x10 offset 0x0 and space 0x11 offset 0x0 and space 0x50 offset 0x0 and space 0x51 offset 0x0 vmedma0 at VME0 vmefdma0 at VME0 vmedvma0 at VME0 vmectl0 at VME0 Configuring the /dev directory Configuring the /dev directory (compatibility devices) The system is coming up. Please wait. checking for crash dump...System went down at Thu Nov 5 10:21:28 1998 dump time is unreasonable default ICCFP1.kek.jp done add net default: gateway ICCFP1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway frc7v-cl1 "/dev/swap" is not valid for swapping. It must be a block device or a regular file with the "save user text on execution" bit set. syslog service starting. syslogd: line 24: unexpected getnetconfig failure Print services started. volume management starting. Wnn6: Key License Server started.... Nihongo Multi Client Server (Wnn6 R2.30) Finished Reading Files The system is ready. frc7v-cl1 console login: onlsun1[42]% rlogin frc7v-cl1 Password: No directory! Logging in with home=/ Last login: Fri Feb 26 16:42:23 from onlsun1.kek.jp Sun Microsystems Inc. SunOS 5.6 Generic August 1997 frc7v-cl1% df -k Filesystem kbytes used avail capacity Mounted on frc8vt:/export/root/frc7v-cl1 384360 56952 288968 17% / frc8vt:/export/exec/Solaris_2.6_sparc.all/usr 769248 481344 234064 68% /usr /proc 0 0 0 0% /proc fd 0 0 0 0% /dev/fd swap 114408 12 114396 1% /tmp frc7v-cl1% ls -l /tmp total 16 srwxrwxrwx 1 root root 0 Mar 1 10:59 jd_sockV6 -rw-rw-r-- 1 root sys 5256 Mar 1 10:58 ps_data frc7v-cl1% df -k Filesystem kbytes used avail capacity Mounted on frc8vt:/export/root/frc7v-cl1 384360 56952 288968 17% / frc8vt:/export/exec/Solaris_2.6_sparc.all/usr 769248 481344 234064 68% /usr /proc 0 0 0 0% /proc fd 0 0 0 0% /dev/fd swap 114548 12 114536 1% /tmp frc7v-cl1% cat /etc/vfstab #device device mount FS fsck mount mount #to mount to fsck point type pass at boot options # #/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes - /proc - /proc proc - no - fd - /dev/fd fd - no - swap - /tmp tmpfs - yes - frc8vt:/export/root/frc7v-cl1 - / nfs - - rw #frc8vt:/export/swap/frc7v-cl1 - /dev/swap nfs - - - /dev/dsk/c0t3d0s1 - - swap - no - /dev/swap - - swap - - - frc8vt:/export/exec/Solaris_2.6_sparc.all/usr - /usr nfs - r o frc7v-cl1% frc7v-cl1# cd /etc/rc2.d frc7v-cl1# ls K20spc@ S47asppp* S74syslog* S89bdconfig@ K60nfs.server* S69inet* S74xntpd* S91afbinit* K76snmpdx* S70uucp* S75cron* S91leoconfig* K77dmi* S71rpc* S76nscd* S92rtvc-config* README S71sysid.sys* S80PRESERVE* S92volmgt* S01MOUNTFSYS* S72autoinstall* S80lp* S93cacheos.finish* S05RMTMPFILES* S72inetsvc* S80spc@ S94Wnn6@ S20sysetup* S73cachefs.daemon* S85power* S99audit* S21perf* S73nfs.client* S88sendmail* S99dtlogin* S30sysid.net* S74autofs* S88utmpd* frc7v-cl1# cat S20sysetup #!/bin/sh # # Copyright(c) 1984-1997, by Sun Microsystems, Inc. # All rights reserved. # #ident "@(#)sysetup 1.15 97/04/24 SMI" /* SVr4.0 1.4.2.1 */ # This file contains system setup requirements for the system. set `/usr/bin/who -r` if [ $9 != "S" -a $9 != "1" ] then exit fi # if the prtconf command exists, then, the system configuration # is printed # Default is not to do this. Too noisy, to long. #if [ -x /usr/sbin/prtconf ] #then # /usr/sbin/prtconf #fi # If there are trademark files, print them. if [ -d /etc/tm ] then /usr/bin/cat /etc/tm/* 2> /dev/null fi ## ## Default is to not do a savecore ## #if [ ! -d /var/crash/`uname -n` ] #then mkdir -m 0700 -p /var/crash/`uname -n` #fi # echo 'checking for crash dump...\c ' #savecore /var/crash/`uname -n` # echo '' # # By E.Inoue Feb 25, 1999 if [ ! -d /mnt/debug/`uname -n` ] then mkdir -m 0700 -p /mnt/debug/`uname -n` fi echo 'checking for crash dump...\c ' savecore /mnt/debug/`uname -n` echo '' frc7v-cl1# frc7v-cl1# vi S20sysetup #!/bin/sh # # Copyright(c) 1984-1997, by Sun Microsystems, Inc. # All rights reserved. # #ident "@(#)sysetup 1.15 97/04/24 SMI" /* SVr4.0 1.4.2.1 */ # This file contains system setup requirements for the system. set `/usr/bin/who -r` if [ $9 != "S" -a $9 != "1" ] then exit fi # if the prtconf command exists, then, the system configuration # is printed # Default is not to do this. Too noisy, to long. #if [ -x /usr/sbin/prtconf ] #then # /usr/sbin/prtconf #fi # If there are trademark files, print them. if [ -d /etc/tm ] then /usr/bin/cat /etc/tm/* 2> /dev/null fi ## ## Default is to not do a savecore ## if [ ! -d /var/crash/`uname -n` ] then mkdir -m 0700 -p /var/crash/`uname -n` fi echo 'checking for crash dump...\c ' savecore /var/crash/`uname -n` echo '' # By E.Inoue Feb 25, 1999 #if [ ! -d /mnt/debug/`uname -n` ] #then mkdir -m 0700 -p /mnt/debug/`uname -n` #fi # echo 'checking for crash dump...\c ' #savecore /mnt/debug/`uname -n` # echo '' ~ ~ ~ ~ ~ "S20sysetup" 48 lines, 1040 characters frc7v-cl1# frc7v-cl1 console login: root Password: Mar 1 13:34:17 frc7v-cl1 login: ROOT LOGIN /dev/console Last login: Mon Mar 1 10:42:34 on console Sun Microsystems Inc. SunOS 5.6 Generic August 1997 Starting OpenWindows in 5 seconds (type Control-C to interrupt) ^C# # /usr/sbin/shutdown -i0 -g0 Shutdown started. Mon Mar 1 13:34:27 JST 1999 Do you want to continue? (y or n): y Broadcast Message from root (console) on frc7v-cl1 Mon Mar 1 13:34:29... THE SYSTEM IS BEING SHUT DOWN NOW ! ! ! Log off now or risk your files being damaged showmount: frc7v-cl1: RPC: Program not registered Changing to init state 0 - please wait # INIT: New run level: 0 The system is coming down. Please wait. System services are now being stopped. Print services stopped. Stopping the syslog service. syslogd: going down on signal 15 umount: /net/onlsun1/home3/local busy umount: /net/onlsun1/home1/local busy umount: /net/onlsun1/home1/opt_ext busy umount: /net/onlsun1/home1/cern busy umount: /net/onlsun1/home1 busy umount: /net/onlsun1/home3 busy umount: /net/onlsun1/home4 busy umount: /net/onlsun1/usr busy umount: /net/onlsun1/export busy umount: /net busy nfs umount: /export/home/frc7v-cl1: is busy Mar 1 13:35:22 snmpdx: received signal 15 umount: /net/onlsun1/home1/local busy umount: /net/onlsun1/home1/opt_ext busy umount: /net/onlsun1/home1/cern busy umount: /net/onlsun1/home3/local busy umount: /net/onlsun1/home3 busy umount: /net/onlsun1/export busy umount: /net/onlsun1/home1 busy umount: /net/onlsun1/home4 busy umount: /net/onlsun1/usr busy umount: /net busy The system is down. syncing file systems... done Program terminated ok ok boot net -r Resetting ... screen not found. Can't open input device. Keyboard not present. Using tty for input and output. SPARC CPU-7V, No Keyboard ROM Rev. 2.15.1, 64 MB memory installed, Serial #9157050. Ethernet address 0:80:42:b:49:ba, Host ID: 808bb9ba. apply failed. Rebooting with command: net -r Boot device: /iommu/sbus/ledma@5,8400010/le@5,8c00000 File and args: -r 2dc00 hostname: frc7v-cl1 domainname: kek.jp root server: frc8vt root directory: /export/root/frc7v-cl1 SunOS Release 5.6 Version Generic_105181-05 [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. configuring network interfaces: le0. Hostname: frc7v-cl1 Configuring the /devices directory FRCvme V2.3.1 VME Nexus (FGA-5000 FGA-5100) NOTICE: VME: slavewin at vme=0x0, size=0x100000 space=0x2d020617 CAMAC device driver V1.3x, 1991-1993 by Y.TAKEUCHI (T.I.T.) cc0 at VME0: vme16d16 0xff00 VME level 4 vector 0xff sparc ipl 7 vmemem0 at VME0: vme32d16 0x0 vmemem1 at VME0: vme16d16 0x0 vmemem2 at VME0: vme24d16 0x0 vmemem3 at VME0: vme32d32 0x0 vmemem4 at VME0: vme16d32 0x0 vmemem5 at VME0: vme24d32 0x0 vmeplus0 at VME0: vme16d16 0x0 and vme24d16 0x0 and vme32d16 0x0 and vme16d32 0x 0 and vme24d32 0x0 and vme32d32 0x0 and space 0x2f offset 0x0 and space 0x6f offset 0x0 and space 0x10 offset 0x0 and space 0x11 offset 0x0 and space 0x50 offset 0x0 and space 0x51 offset 0x0 vmedma0 at VME0 vmefdma0 at VME0 vmedvma0 at VME0 vmectl0 at VME0 Configuring the /dev directory Configuring the /dev directory (compatibility devices) The system is coming up. Please wait. checking for crash dump...System went down at Thu Nov 5 10:21:28 1998 dump time is unreasonable default ICCFP1.kek.jp done add net default: gateway ICCFP1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway frc7v-cl1 "/dev/swap" is not valid for swapping. It must be a block device or a regular file with the "save user text on execution" bit set. syslog service starting. syslogd: line 24: unexpected getnetconfig failure Print services started. volume management starting. Wnn6: Key License Server started.... Nihongo Multi Client Server (Wnn6 R2.30) Finished Reading Files The system is ready. frc7v-cl1 console login: frc7v-cl1# mount frc8vt:/export/home/frc8vt /export/home/frc7v-cl1 frc7v-cl1# # frc7v-cl1% logout Connection closed. onlsun1[45]% !! rlogin frc7v-cl1 Last login: Mon Mar 1 13:40:59 from onlsun1.kek.jp Sun Microsystems Inc. SunOS 5.6 Generic August 1997 frc7v-cl1[33]% ls -l total 8 drwxr-xr-x 3 inoue staff 512 Feb 9 15:34 CAMAC/ drwxr-xr-x 3 inoue staff 512 Nov 6 11:07 FORCE/ drwxr-xr-x 2 inoue staff 512 Feb 18 10:29 Ktaka/ -rw------- 1 inoue staff 592 Feb 26 16:49 mbox frc7v-cl1[34]% frc7v-cl1[38]% ls -l /dev/cc lrwxrwxrwx 1 root other 69 Feb 26 16:52 /dev/cc -> /devices/iommu@ 0,10000000/sbus@0,10001000/VME@5,ffffe00/cc@2d,ff00:cc frc7v-cl1[39]% pwd /export/home/frc7v-cl1/inoue/CAMAC/Driver/FORCE-5V-sol2.5 frc7v-cl1[40]% cam1 5 Input n a f (data)>3 0 0 N=3 A=0 F=0 Q=1 X=1 Data:000000(Hex) 00000000(Dec) Input n a f (data)>3 0 16 555 N=3 A=0 F=16 Q=1 X=1 Data:00022B(Hex) 00000555(Dec) Input n a f (data)>3 0 0 N=3 A=0 F=0 Q=1 X=1 Data:00022B(Hex) 00000555(Dec) Input n a f (data)>3 0 16 0 N=3 A=0 F=16 Q=1 X=1 Data:000000(Hex) 00000000(Dec) Input n a f (data)>3 0 0 N=3 A=0 F=0 Q=1 X=1 Data:000000(Hex) 00000000(Dec) frc7v-cl1[41]% frc7v-cl1[41]% cam3 *** Now waiting LAM ... N=3 Loop=10 Timeout=0 sec Interrupted !! count=1 Interrupted !! count=2 Interrupted !! count=3 Interrupted !! count=4 Interrupted !! count=5 Interrupted !! count=6 Interrupted !! count=7 Interrupted !! count=8 Interrupted !! count=9 Interrupted !! count=10 *** cam3 nomal end. frc7v-cl1[42]% frc7v-cl1[42]% cam2 Input transfer mode (1:word 2:long word) >1 Input loop >5 Input mode (0:QSTOP 1:QIGNORE 2:QREPEAT 3:QSCAN) >1 Input data counts >5 Input n a f >3 0 0 BAD TRAP: type=9 rp=fc0048ec addr=f605cf5c mmu_fsr=326 rw=1 cam2: Data fault kernel read fault at addr=0xf605cf5c, pme=0x0 MMU sfsr=326: Invalid Address on supv data fetch at level 3 pte addr = 0xf5f63b70, level = 3 wrong ctx/as ctx 0, as 0xf59148d0 wrong ctx/as 2 ctx 0, as 0x98 pid=358, pc=0xf5fd7360, sp=0xfc004938, psr=0x44010c1, context=0 g1-g7: f5900000, f026f0bc, a00, c00, 200, 1, f5e805e0 Begin traceback... sp = fc004938 Called from f5fcfd50, fp=fc0049a0, args=f5bf1c70 2a 600 fc004ad8 f6059f00 f00000 Called from f00bd3ac, fp=fc004a70, args=f00000 5 600 2a fc004b08 f5bf1c70 Called from f0068900, fp=fc004b80, args=f5b19fb8 f5f811d4 22 3 22 3 Called from 11f30, fp=effff8c0, args=1 600 3f53c0 5 24a70 24a80 End traceback... panic: Data fault syncing file systems... 2 done 2562 static and sysmap kernel pages 106 dynamic kernel data pages 386 kernel-pageable pages 0 segkmap kernel pages 0 segvn kernel pages 287 current user process pages 3341 total pages (3341 chunks) dumping to vp f59444dc, offset 141248 3341 total pages, dump succeeded rebooting... Resetting ... screen not found. Can't open input device. Keyboard not present. Using tty for input and output. SPARC CPU-7V, No Keyboard ROM Rev. 2.15.1, 64 MB memory installed, Serial #9157050. Ethernet address 0:80:42:b:49:ba, Host ID: 808bb9ba. apply failed. Rebooting with command: Boot device: /iommu/sbus/espdma@5,8400000/esp@5,8800000/sd@3,0 File and args: SunOS Release 5.6 Version Generic [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. Type 'go' to resume Type help for more information ok boot net Resetting ... screen not found. Can't open input device. Keyboard not present. Using tty for input and output. SPARC CPU-7V, No Keyboard ROM Rev. 2.15.1, 64 MB memory installed, Serial #9157050. Ethernet address 0:80:42:b:49:ba, Host ID: 808bb9ba. apply failed. Rebooting with command: net Boot device: /iommu/sbus/ledma@5,8400010/le@5,8c00000 File and args: 2dc00 hostname: frc7v-cl1 domainname: kek.jp root server: frc8vt root directory: /export/root/frc7v-cl1 SunOS Release 5.6 Version Generic_105181-05 [UNIX(R) System V Release 4.0] Copyright (c) 1983-1997, Sun Microsystems, Inc. configuring network interfaces: le0. Hostname: frc7v-cl1 The system is coming up. Please wait. checking for crash dump...System went down at Mon Mar 1 13:50:46 1999 Saving 3341 pages of image in vmcore.0 3341 pages saved. Processing modules: Done. Constructing Namelist file: /var/crash/frc7v-cl1/unix.0 Namelist file complete. default ICCFP1.kek.jp done add net default: gateway ICCFP1 NIS domainname is kek.jp starting rpc services: rpcbind keyserv done. Setting netmask of le0 to 255.255.252.0 Setting default interface for multicast: add net 224.0.0.0: gateway frc7v-cl1 "/dev/swap" is not valid for swapping. It must be a block device or a regular file with the "save user text on execution" bit set. syslog service starting. syslogd: line 24: unexpected getnetconfig failure Print services started. volume management starting. Wnn6: Key License Server started.... Nihongo Multi Client Server (Wnn6 R2.30) Finished Reading Files The system is ready. frc7v-cl1 console login: frc7v-cl1% cd /var frc7v-cl1% ls -l total 48 drwxrwxr-x 6 root sys 512 Feb 28 03:16 adm drwxr-xr-x 2 root sys 512 Feb 1 15:57 audit drwxrwxrwx 3 root root 512 Feb 25 11:42 crash drwxr-xr-x 2 root sys 512 Feb 1 16:32 cron drwxrwxr-x 5 root sys 512 Feb 1 15:59 dmi drwxr-xr-x 5 root root 512 Mar 1 1999 dt drwxr-xr-x 3 daemon sys 512 Feb 1 15:59 locale drwxr-xr-x 2 root sys 512 Feb 1 15:59 log drwxrwxr-x 3 lp lp 512 Feb 1 15:59 lp drwxrwxrwt 3 root mail 512 Feb 26 16:49 mail drwxrwxr-x 3 daemon daemon 512 Feb 1 15:59 mle drwxrwxr-x 2 bin bin 512 Feb 1 15:57 news drwxr-xr-x 2 root sys 512 Feb 1 15:59 nis drwxr-xr-x 3 root sys 512 Feb 1 15:59 ntp drwxrwxr-x 2 root sys 512 Feb 1 15:57 opt drwxrwxrwt 3 bin bin 512 Feb 26 16:45 preserve drwxr-xr-x 7 root sys 512 Feb 1 15:58 sadm drwxr-xr-x 3 bin bin 512 Feb 1 16:33 saf drwxrwxr-x 3 root sys 512 Mar 1 1999 snmp drwxrwxr-x 10 root bin 512 Feb 1 15:59 spool drwxr-xr-x 4 root root 512 Feb 1 16:32 statmon drwxrwxrwt 2 sys sys 512 Mar 1 1999 tmp drwxr-xr-x 7 uucp uucp 512 Feb 1 15:58 uucp drwxr-xr-x 3 bin bin 512 Feb 1 16:00 yp frc7v-cl1% cd crash frc7v-cl1% ls -l total 2 drwxrwxrwx 2 root root 512 Mar 1 1999 frc7v-cl1 frc7v-cl1% cd frc7v-cl1 frc7v-cl1% ls -l total 28674 -rw-rw-rw- 1 root root 2 Mar 1 1999 bounds -rw-r--r-- 1 root root 962104 Mar 1 1999 unix.0 -rw-r--r-- 1 root root 13697024 Mar 1 1999 vmcore.0 frc7v-cl1% # mount frc8vt:/export/home/frc8vt /export/home/frc7v-cl1 # frc7v-cl1% logout Connection closed. onlsun1[47]% !! rlogin frc7v-cl1 Last login: Mon Mar 1 13:56:17 from onlsun1.kek.jp Sun Microsystems Inc. SunOS 5.6 Generic August 1997 frc7v-cl1[33]% ls -l total 8 drwxr-xr-x 3 inoue staff 512 Feb 9 15:34 CAMAC/ drwxr-xr-x 3 inoue staff 512 Nov 6 11:07 FORCE/ drwxr-xr-x 2 inoue staff 512 Feb 18 10:29 Ktaka/ -rw------- 1 inoue staff 592 Feb 26 16:49 mbox frc7v-cl1[34]% frc7v-cl1[33]% pwd /export/home/frc7v-cl1/inoue frc7v-cl1[34]% ls -l total 8 drwxr-xr-x 3 inoue staff 512 Feb 9 15:34 CAMAC/ drwxr-xr-x 3 inoue staff 512 Nov 6 11:07 FORCE/ drwxr-xr-x 2 inoue staff 512 Feb 18 10:29 Ktaka/ -rw------- 1 inoue staff 592 Feb 26 16:49 mbox frc7v-cl1[35]% ls -l /var/crash/frc7v-cl1 total 28674 -rw-rw-rw- 1 root root 2 Mar 1 13:59 bounds -rw-r--r-- 1 root root 962104 Mar 1 13:59 unix.0 -rw-r--r-- 1 root root 13697024 Mar 1 13:59 vmcore.0 frc7v-cl1[36]% gzip /var/crash/frc7v-cl1/unix.0 frc7v-cl1[37]% gzip /var/crash/frc7v-cl1/vmcore.0 frc7v-cl1[38]% ls -l /var/crash/frc7v-cl1 total 7858 -rw-rw-rw- 1 root root 2 Mar 1 13:59 bounds -rw-r--r-- 1 inoue staff 329731 Mar 1 13:59 unix.0.gz -rw-r--r-- 1 inoue staff 3662733 Mar 1 13:59 vmcore.0.gz frc7v-cl1[39]% frc7v-cl1[81]% pwd /export/home/frc7v-cl1/inoue/CAMAC/Driver frc7v-cl1[82]% ls -l /var/crash/frc7v-cl1 total 7858 -rw-rw-rw- 1 root root 2 Mar 1 13:59 bounds -rw-r--r-- 1 inoue staff 329731 Mar 1 13:59 unix.0.gz -rw-r--r-- 1 inoue staff 3662733 Mar 1 13:59 vmcore.0.gz frc7v-cl1[83]% tar cvf crash-dump.tar /var/crash/frc7v-cl1 a /var/crash/frc7v-cl1/ 0K a /var/crash/frc7v-cl1/bounds 1K a /var/crash/frc7v-cl1/unix.0.gz 323K a /var/crash/frc7v-cl1/vmcore.0.gz 3577K frc7v-cl1[84]% ls -l total 8084 drwxr-xr-x 3 inoue staff 1024 Feb 26 16:16 FORCE-5V-sol2.5/ -rw-r--r-- 1 inoue staff 120320 Nov 10 1997 FORCE-5V-sol2.5.tar -rw-r--r-- 1 inoue staff 3996672 Mar 1 1999 crash-dump.tar drwxr-xr-x 2 inoue staff 512 Mar 1 14:24 var-crash-frc7v-cl1/ frc7v-cl1[85]% gzip crash-dump.tar frc7v-cl1[88]% ls -l total 7988 drwxr-xr-x 3 inoue staff 1024 Feb 26 16:16 FORCE-5V-sol2.5/ -rw-r--r-- 1 inoue staff 120320 Nov 10 1997 FORCE-5V-sol2.5.tar -rw-r--r-- 1 inoue staff 3942279 Mar 1 1999 crash-dump.tar.gz drwxr-xr-x 2 inoue staff 512 Mar 1 14:24 var-crash-frc7v-cl1/ frc7v-cl1[89]% クラッシュ・ダンプ・ファイルは正しく入手できるようになった。 --- (6). セクション (6-1). サブセクション (6-1-1). サブサブセクション