Diagnostic and Optimization Tool for Network Attached Storage

2

1

I'm looking for chkdsk/scandisk/norton disk doctor and defrag/speed disk alternatives for NAS (Network Attached Storage), which can be run from a computer connectted to the same network as the NAS.

Does anyone have any suggestion?

I have a Western Digital My World Book (white light) 1 TB which directly connected to the router.

Ronald Widha

Posted 2009-10-10T14:30:56.147

Reputation: 145

Answers

3

Unless one of Western Digital's tools provides such a utility, you can't. Those tools must be run from a local operating system; they are not supported by typical network filesharing protocols.

The My World Book NAS is essentially a mini-server running a Linux OS (you can get the source code from WD). If the OS provides an SSH terminal interface, you could SSH into it and run standard Linux filesystem tools (fsck, mkfs, etc) there.

The Hacking WD MyBook World forum is a good resource for owners of this device. One post gives instructions on enabling SSH on the MBW:

If your firmware is version 01.00.14 or later, you can easily enable SSH without any hacks! Simply log into the web administrative interface.

  1. Click on the Advanced link in the upper right to enable more selections1.
  2. Select the System TAB
  3. Select Advanced ICON
  4. Now click on Enable SSH
  5. After SSH is enabled you can login as either 'admin' with the admin password (default is 'admin'). You can also login as root using 'welc0me' as the initial password.
  6. Once you have logged in as root, you can change the password from the default using the 'passwd' command.
  7. If you make other users in the web interface, they can log in via ssh, but must put their username in all-caps ("USERNAME" not "username").

Once logged in via SSH, you can run "fsck" and related tools. Here are some links from the Hacking MBW forum that might help you out:

quack quixote

Posted 2009-10-10T14:30:56.147

Reputation: 37 382