This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以使用 diskutil通过 NSTask。您可能必须授权任务。
You could use diskutil via NSTask. You may have to authorize the task.
在 Mac 中打开终端
使用以下命令获取磁盘列表
$diskutil列表
记下您的 USB 驱动器的名称并输入以下命令
$ sudo diskutil擦除磁盘FAT32 DISK2 MBRFormat /dev/disk2
注意:只需在 FAT32 之后输入大写字母的磁盘名称(我的是 DISK2)
Open Terminal in Mac
Get list of disk using below command
$ diskutil list
Note the name of your USB drive and enter below command
$ sudo diskutil eraseDisk FAT32 DISK2 MBRFormat /dev/disk2
Note : Need to enter disk name only in capital letters after FAT32 (mine is DISK2)