|
@@ -48,3 +48,35 @@ Be aware that the manual created mount points will not be automatically mounted
|
|
|
|
|
|
[https://wiki.debian.org/fstab](https://wiki.debian.org/fstab)
|
|
|
|
|
|
+## Unmount USB for Windows / Linux
|
|
|
+ArOZ Online System uses Um-file Naming Method for the file system bridge in order to support unicode on non-unicode host machines. Hence, if you need to unmount the external storage devices from the ArOZ Online System and mount it to Windows devices, you can use the build in fsconv tool to convert all the filenames inside the external storage devices into human readable format.
|
|
|
+
|
|
|
+Here is an example showing how to convert all files, directories and sub-directories in storage1 (by default /dev/sda1) into UTF-8 filename.
|
|
|
+
|
|
|
+```
|
|
|
+#Assume ArOZ Online System Root is located at /var/www/html/AOB/
|
|
|
+cd /media/storage1
|
|
|
+/var/www/html/AOB/SystemAOB/functions/file_system/fsconv
|
|
|
+```
|
|
|
+
|
|
|
+If you need to mount the USB storage device from Windows back into ArOZ Online System, you can also do the same things with the following command. Assume the F:\ is the USB drive mount point on your Windows device.
|
|
|
+
|
|
|
+1. Download and move the fsconv into F:\
|
|
|
+2. Open CMD in F:\
|
|
|
+3. Enter the following command
|
|
|
+
|
|
|
+```
|
|
|
+fsconv.exe -r -um
|
|
|
+```
|
|
|
+
|
|
|
+### ArUSB2Win
|
|
|
+ArUSB2Win is an offical program designed to perform encoding and decoding of ArOZ Online System filenames for Windows with graphical user interface. The image below is a simple preview of the program.
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+To perform the conversion process above, simply select the mount point of the USB drive and press encode (convert Windows filenames to ArOZ Umfilename) or decode (Convert ArOZ Umfilename to Windows filename)
|
|
|
+
|
|
|
+#### Download ArUSBWin
|
|
|
+[Click here](https://github.com/tobychui/ArUSB2Win/releases)
|
|
|
+
|
|
|
+
|