Guide_3DS/_pages/zh_TW/f3-(linux).txt

67 lines
1.8 KiB
Plaintext
Raw Normal View History

2017-05-21 22:39:40 +02:00
---
title: "F3 (Linux)"
2017-05-21 22:39:40 +02:00
---
2017-10-04 23:02:20 +02:00
{% include toc title="條目內容" %}
### 必讀事項
2017-05-24 22:57:28 +02:00
本篇為透過 F3 來檢查您 SD 卡是否有任何問題的附加章節。
2017-05-21 22:39:40 +02:00
2017-05-24 22:57:28 +02:00
根據您的 SD 卡的大小和電腦的速度,本過程可能將花費數小時才能完成
2017-05-21 22:39:40 +02:00
2017-05-24 22:57:28 +02:00
本教學僅適用於 Linux 使用者。 如果您不在 Linux 平台上,請參閱 [H2testw (windows)](h2testw-(windows)) 或 [F3X (mac)](f3x-(mac))。
2017-05-21 22:39:40 +02:00
2018-02-24 01:03:21 +01:00
### 必備項目
2017-05-21 22:39:40 +02:00
2018-07-10 10:12:26 +02:00
* 最新版的 [F3](https://github.com/AltraMayor/f3/releases/latest)
2017-05-21 22:39:40 +02:00
2017-09-30 05:21:47 +02:00
### 操作說明
2017-05-21 22:39:40 +02:00
1. 解壓 f3 `.zip`
1. `cd` 至 f3 目錄中
2018-07-10 10:12:26 +02:00
1. 運行 `make` 以編譯 F3
1. 將 SD 卡插入至電腦中
2017-05-21 22:39:40 +02:00
1. 掛載 SD 卡
1. 輸入 `./f3write <您 SD 卡的掛載點>`
2018-07-10 10:12:26 +02:00
1. 等到檢查完畢為止。 可以參考底下的範例。
2017-05-21 22:39:40 +02:00
2018-02-18 16:47:39 +01:00
~~~ bash
$ ./f3write /media/michel/6135-3363/
Free space: 29.71 GB
Creating file 1.h2w ... OK!
...
Creating file 30.h2w ... OK!
Free space: 0.00 Byte
Average Writing speed: 4.90 MB/s
~~~
2017-05-21 22:39:40 +02:00
1. 輸入 `./f3read <您 SD 卡的掛載點>`
2018-07-10 10:12:26 +02:00
1. 等到檢查完畢為止。 可以參考底下的範例。
2017-05-21 22:39:40 +02:00
2018-02-18 16:47:39 +01:00
~~~ bash
$ ./f3read /media/michel/6135-3363/
SECTORS ok/corrupted/changed/overwritten
Validating file 1.h2w ... 2097152/ 0/ 0/ 0
...
Validating file 30.h2w ... 1491904/ 0/ 0/ 0
Data OK: 29.71 GB (62309312 sectors)
Data LOST: 0.00 Byte (0 sectors)
Corrupted: 0.00 Byte (0 sectors)
Slightly changed: 0.00 Byte (0 sectors)
Overwritten: 0.00 Byte (0 sectors)
Average Reading speed: 9.42 MB/s
~~~
2017-05-21 22:39:40 +02:00
___
2018-07-10 10:12:26 +02:00
如果結果顯示 `Data LOST: 0.00 Byte (0 sectors)`,則表示您的 SD 卡是沒問題的,接著就可以刪除 SD 卡中所有的 `.h2w` 檔案了
2017-05-21 22:39:40 +02:00
{: .notice--success}
2017-05-24 22:57:28 +02:00
如果出現任何其他結果,您的 SD 卡可能是有問題且需要更換的!
2017-05-21 22:39:40 +02:00
{: .notice--danger}
2018-02-23 18:16:54 +01:00
### 回到[新手入門](get-started)
2017-09-04 06:15:19 +02:00
{: .notice--primary}