|
一台博科存储交换机,型号为silk worm 3900。在进行用firmwaredownload进行升级微码之后,重启之后出现如下情况,不知道怎么办了..
故障描述:以下为串口的超级终端屏幕输出,只有串口可以连接入。
The system is coming up, please wait...
Press escape within 0 seconds to enter boot interface.
Booting "Fabric Operating System" image.
Entry point at 0x00800000 ...
Linux/PPC load:
BootROM command line: quiet
Uncompressing Linux...done.
Now booting the kernel
Attempting to find a root file system on hda2...
Attempting to find a root file system on hda1...
Failed to mount a root file system!
Both boot devices are inconsistent. You can run sbin/repairfs.sh to boot up the system. After the system is booted up, please run firmwaredownload to load the appropriate version of firmware.
BusyBox v0.60.5 (2003.05.21-17:34+0000) Built-in shell (ash)
Enter 'help' for a list of built-in commands.
sh: can't access tty; job control turned off
# sbin/repairfs.sh
Restarting system.
The system is coming up, please wait...
Press escape within 0 seconds to enter boot interface.
Booting "Fabric Operating System" image.
Entry point at 0x00800000 ...
Linux/PPC load:
BootROM command line: quiet
Uncompressing Linux...done.
Now booting the kernel
Attempting to find a root file system on hda2...
INIT: version 2.78 booting
--- File /etc/hosts is corrupted on both partition
--- File /etc/static-routes.options is corrupted on both partition
---
--- Please fix above files.
---
--- System is going down for reboot now!
Restarting system.
The system is coming up, please wait...
Press escape within 0 seconds to enter boot interface.
Booting "Fabric Operating System" image.
Entry point at 0x00800000 ...
Linux/PPC load:
BootROM command line: quiet
Uncompressing Linux...done.
Now booting the kernel
Attempting to find a root file system on hda2...
Attempting to find a root file system on hda1...
Failed to mount a root file system!
Both boot devices are inconsistent. You can run sbin/repairfs.sh to boot up the system. After the system is booted up, please run firmwaredownload to load the appropriate version of firmware.
BusyBox v0.60.5 (2003.05.21-17:34+0000) Built-in shell (ash)
Enter 'help' for a list of built-in commands.
sh: can't access tty; job control turned off
#
一直回到#提示符,证明安装在此linux系统上的应用软件(应该就是存储交换机的管理平台和应用都运行不起来了)。我看了sbin/repairfs.sh的内容;如下
# cat repairfs.sh
#!/bin/ash
# A simple script that tries to get the system back to a bootable state.
#Remove the bad filesystems flag
bootenv -u BadRootDev
#Try rebooting
mount -t xfs /dev/hda1 /mnt
/mnt/usr/bin/reboot -f
fstab内容如下
# cat fstab
/dev/root / ext2 rw,noatime 0 0
none /proc proc defaults 0 0
#
|