Converting implies a checking, so it will fail -- *don't* do that until the
fsck problem is solved.
The checking that is done is the automatic one (done by all linux systems on
boot), and if it fails then Alt-F should mount the filesystem in read-only
mode.
To see why that is not done, I need the log: go to System->Utilities->View
logs, select the System Log (the boot.log should also provide the fsck info
done at boot time), and then attach it.
Joao
As you can see on the bottom of the system log, 'fsck', the program that does
the filesystem checking and fixing, gives some errors; the output is
truncated, but typically at the end it shows: "RUN fsck MANUALLY."
This means telnet or ssh the box, login as 'root' user, same password as the
web GUI page, and typing the commands:
umount /dev/sda2 # un-mounts the filesystem
fsck -f /dev/sda2 # force check and clean, questions asked
Probably tons of cryptic questions will be asked for each action, so if you
loose data it's your responsibility. The first time I used it, some 25 years
ago, I went through all questions, but after half an hour of answering 'yes' I
gave up, and since then I have been using, without data loss, the following
command instead:
fsck -fy /dev/sda2 # force check and clean, no questions asked, assume YES
If you want a progress bar, then use
fsck -fyC /dev/sda2 # same, with a progress bar
The fsck manual says: "For some filesystem-specific checkers, the -y option
will cause the fs-specific fsck to always attempt to fix any detected
filesystem corruption automatically. Sometimes an expert may be able to do
better driving the fsck manually."
At the end you have to mount the filesystem using the command
mount /dev/sda2
or use the web interface.
> i started the smb server and now i have read access
> in windows for a start
Now that you have access to your files using samba, you might want to do a
backup before running fsck.
Notice that the problem arose because the stock firmware does not do an
automatic fsck, and what could be a small problem at the beginning might have
been turned into a major one after using the filesystem for days or months
after the initial problem.
This "feature" of the stock firmware was the first motivation for Alt-F.
Joao
I have the same problem as rafaelr with fchk keeps running every time I restart, after installing ALT F on a CH3SNAS. I login with telnet to my nas, try to run unmount my drives, but I get the message that they cannot unmount because the drive is busy. Running fchk before unmounting seems like a bad idea. Any suggestions on how to unmount?