Mac OS Sierra 和 srm

Mac OS Sierra 和 srm

我有一个脚本,可以不时安全地清空垃圾箱,我正在使用srm。我想人们仍然会使用srm。但是,似乎srm不再随 mac os 一起提供。您是否知道 的候选替代方案srm?有没有人说说?

PS例如,这里是一个随机示例,srm用于安全清空垃圾箱。请注意,该示例适用于 El Capitan,因此srm在 mac os Sierra 中消失了(或者至少,看起来是这样)。

答案1

您可以使用rm -P

     -P          Overwrite regular files before deleting them.  Files are overwritten three times, first with the byte pattern 0xff, then 0x00, and then 0xff again, before they are deleted.

答案2

  1. 安装麦金塔和 ...
  2. 查找端口:管理
  3. 终端:sudo port install srm

答案3

Apple 删除了它,srm因为他们觉得它效果不够好,而且在 SSD 上使用它会降低驱动器的整体寿命。如果你真的想使用它,你可以下载来源,解压,然后自己编译。

$ ./configure
$ make
$ make install

相关内容