home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
recovery-mode
/
options
/
fsck
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-02-16
|
302 b
|
22 lines
#!/bin/sh
. /usr/share/recovery-mode/l10n.sh
set -e
if [ "$1" = "test" ]; then
echo $(eval_gettext "File system check")
exit 0
fi
# ensure we can check /
mount -o remount,ro /
fsck -s -f -A -C0
mount -o remount,rw /
echo ""
echo $(eval_gettext "Finished, please press ENTER")
read TMP
exit 0