作成日 | 更新日 | 影響を受けるバージョン | 修正バージョン |
---|---|---|---|
|
| Drive Eraser for Mac - 全バージョン | N/A |
Blancco Drive Eraser for Macに含まれるconfig.txtファイルに消去方式を設定しても、消去の実行時に変更が反映されない。
Blancco Drive Eraser for Macのconfig.xmlファイルが正しく読み込まれず、ファイルに設定されている消去規格が使用されていないことが判明しています。代わりに、erase_mac.commandファイルで設定されたデフォルト値が使用されています。
"ALGORITHM_ID=16"を編集して、目的の消去方式の識別子番号に変更します。次の例では、識別子番号3 (ID 3) のDoD 5220.22-M方式が選択されています 。指定可能な消去アルゴリズムの識別子の全リストは、製品マニュアルに記載されています。
#!/bin/bash ############################################################################### # # Script that erases the internal disk of Mac # ############################################################################### ############################################################################### # Configuration # Erasure algorithm identifier. # See Blancco LUN Eraser user manual or run "BlanccoLUNEraser -standards" # to see the list of available algorithms. ALGORITHM_ID=3 # Whether to shutdown after erasure if crypto erasure is selected (ALGORITHM=19) SHUTDOWN_AFTER_CRYPTO_ERASE=true |