- 论坛徽章:
- 0
|
急啊!!!
先在别的同类机上做引导盘,然后跟具情况操作.
系 统 故 障 解 决 方 案
------应急引导盘应用
应急引导软盘组应用实例之一
故障现象: 启动计算机时显示“NO OS”信息.
故障分析: 系统中的部分引导程序或主引导程序被破坏,需要恢复.
故障处理:
用Boot盘启动:
Boot
: hd(40)unix [ 挂上硬盘上的unix文件引导模块 ]
在单用户模式下键入:
# instbb hd /dev/hd0a [ 把引导块分区写到硬盘 ]
# dparam –w [ 把主引导块代码写到硬盘 ]
取出软盘,重新启动计算机.
应急引导软盘组应用实例之二
故障现象: 启动计算机时显示如下信息.
Boot not found
Cannot open
Stage 1 boot failure:error loading hd(40) /boot
故障分析: 启动UNIX系统时找不到引导boot文件.
故障处理:
将boot盘插入主驱动器,然后重新引导系统,其操作如下所示.
Boot
: fd(60)unix.Z root=hd(42)
从软盘引导系统,加载核心和安装文件系统.
进入单用户模式后进行下列操作:
# umount /stand [ 卸载 stand 文件系统 ]
# mount /stand [ 重新安装 stand 文件系统 ]
( 因为 stand 文件系统是以只读方式安装的,所以必须重新安装才能替换,否则会显示 cp: unable to create file /stand/boot: Read-only file system (error 30) 的错误 )
# mount –r /dev/fd0 /mnt [ 安装引导软盘 ]
# cp /mnt/boot /stand [ 恢复 /boot 文件 ]
# umount /mnt [ 卸载软盘文件系统 ]
#
取出软盘,执行 haltsys 命令,在 boot 提示符下按回车键,重新从硬盘引导系统.
应急引导软盘组应用实例之三
故障现象: 启动计算机时显示如下信息.
Boot
: hd(40)unix swap=hd(41) dump=(41) root=hd(42) auto unix not found
故障分析: 启动UNIX 系统时找不到系统的核心 unix 文件.
故障处理:
将 boot 盘插入主驱动器,然后重新引导系统,其操作如下所示.
Boot
: fd(60) unix.Z root=hd(42) swap=hd(41)
从 boot 软盘中引导核心,在硬盘上安装根文件系统.并使系统处于单用户模式,然后进行下列的操作:
# umount /stand [ 卸载 /stand ]
# mount /stand [ 重新安装 /stand ]
# mount –r /dev/fd0 /mnt [ 安装引导软盘 ]
# cp /mnt/unix.Z /stand [ 把压缩的UNIX核心文件从引导盘复制到硬盘 ]
# uncompress /stand/unix.Z [ 把压缩的 unix.Z 文件解压缩为UNIX 应用文件 ]
# umount /mnt
取出软盘,执行 haltsys 命令,在 boot 提示符下按回车键,重新从硬盘引导系统.
应急引导软盘组应用实例之四
故障现象: 在启动计算机时显示如下信息.
Kernel :Hz=100 i/o bufw=3028k
PANIC :exit – Cannot exec /etc/init (PID 1), status 0x00000200
Trying to damp 8095 pages to dumpdev hd (1/41), 102 pages per ‘.’
8095 pages dumped
** Safe to power off **
- or –
** Press Any Key to Reboot **
故障分析: /etc/init 文件出现问题.
故障处理: 将 boot 盘插入主驱动器,然后重新引导系统,其操作如下所示.
Boot
: [ 直接回车 ]
按系统提示插入盘: Root
# /etc/mount /dev/dh0root /mnt [ 安装硬盘上的 Root 文件 ]
# cp /etc/init /mnt/etc/mnt [ 把Root 盘文件系统中的 init 文件拷入硬盘 ]
# /etc/umount /mnt [ 卸载硬盘 ]
取出软盘,执行 haltsys 命令,在 boot 提示符下按回车键,重新从硬盘引导系统.
应急引导软盘组应用实例之五
故障现象: 在进入多用户模式选择时,提示下列信息.
INIT : Cannot open /etc/inittab error:2
INIT : SINGLE USER MODE
故障分析: /etc/inittab 文件丢失 .
故障处理: 恢复 /etc/inittab 文件, 此时用户必须重新建立核心环境,其操作如下所示.
在模式选择时,键入 root 用户口令,进入系统维护模式,然后进行下列操作:
# cd /etc/conf/cf.d
# touch /etc/.new unix
# ../bin/idmkenv
The kernel environment includes device node files and /etc/inittab.
The new kernel may require changes to /etc/inittab or device nodes .
Do you want the kernel environment rebuilt?(y/n) y
The kernel has been successfully linked and installed.
To activate it,reboot your system.
Setting up kernel environment
# cat /etc/inittab
如果提示 “cannot open /etc/inittab”信息,则进行下列操作:
# ln –s /var/opt/K/SCO/Unix/*/etc/inittab /etc/inittab
# exit
ENTER RUN LEVEL ( 0-6, s or S ): 2
到此,/etc/inittab 文件恢复,可以进入多用户模式,故障已经排除 . |
|