The appliance is not starting up, the LCD says "Disk unrepairable" and no HD activity is seen.
This means a file system error was detected during a routine file system check when the system was booted.
In most cases, the file system error can be repaired using the fsck
utility on the command line.
- You will need to do this on the system console, by plugging in a USB keyboard and either a monitor (if your appliance has a VGA port) or attaching a serial console using a null modem cable (Serial settings are
9600,8,N,1
). - Once attached to the console you should see the output from the routine
fsck
command, indicating which partition contains errors (if not try pressing the SHIFT key to wake the display). - Note the affected partition(s) usually listed as something similar to
/dev/sda3 or /dev/md3
. - Login with your root password to access the command line.
- Run the following command to check and fix the file system:
fsck -y /dev/<partition_name>
where partition_name
is affected partition name noted in step 3.
For example, if the error had been reported on /dev/sda3
you would use the command:
fsck -y /dev/sda3
Alternatively if you are unsure which partition is affected you can try running a check on all partitions but this may take longer:
fsck –yA
It will take some time to fully check and fix the file system and you may see warnings as it finds and repairs problems.
Once completed, the system should automatically boot up as normal and you can continue using the system.
If fsck
is unable to repair the file system, contact Smoothwall Support.
Related articles: