I'm trying to wipe a micro SD card that has Linux data and partitions stored on it, but I only have access to a Windows PC. What are the best steps to safely erase everything on the card so I can reuse it? Let me know if there are any special considerations I should keep in mind!
2 Answers
Formatting should do the trick! Just go ahead and format the SD card, no extra steps needed after that. But for privacy, if you plan to use the SD card for sensitive data, consider encrypting it afterward. Windows, HirensBootCD, or even Linux can manage the formatting, but since you're on Windows, just use that.
You can use the Command Prompt to wipe your SD card. Here’s what you need to do:
1. Open Command Prompt and type `diskpart`.
2. Run `list disk` to see all your drives.
3. Select your SD card by typing `select disk #` (replace `#` with your card’s disk number).
4. Then, run `clean` to wipe it.
5. Finally, type `exit` to exit diskpart. After that, just reformat the card using the Windows Disk Management tool.
Just a heads up, the OP might not see the drive in Windows because of the Linux filesystem it has. They might need to use diskpart to clean it first since it might not show up in File Explorer. Seems like a straightforward Windows support issue!