• Windows Server

    Secure Erase In Windows Server

    The Cipher tool can overwrite deleted data in much the same way the Secure Empty Trash or Secure Erase options work in OS X. To do so, use the cipher command along with the /w switch while all programs on the system are quit. Then, from a command prompt use the /w switch followed by : and then the path to the location you’d like to overwrite. For example, if you deleted a folder from the c:/MYAPPDATA folder, you would use the following to remove data not allocated to files or folders: cipher /w c:/MYAPPDATA Note: The cipher command permanently removes data and so takes awhile according to the amount…

  • Mac OS X,  Ubuntu,  Unix,  VMware

    Using the arp Command

    You can delete an IP address from the arp table using the arp command along with the -d option followed by an address.  For example, to delete IP 10.10.10.1: arp -d 10.10.10.1 If you’re not sure which IP address you’re looking for then you can look at the arp table to check the IP against the MAC address by using the -a option along with arp.  For example: arp -a To delete all of the entries in an arp table (they do regenerate after all) you can use the -d option in conjunction with the -a option: arp -d -a If you then want to manually add an entry into…