Questions tagged [secure-delete]

31 questions
2
votes
1 answer

How do I wipe a Sun Santricity SAN Array

I need to wipe all data from an out of support SUN Santricity array before we send it to EMC for a trade in. (Yes EMC is took our SUN in part for a CX-480) Does anyone have advice on how to wipe this?
makerofthings7
  • 8,821
  • 28
  • 115
  • 196
2
votes
7 answers

Tools to wipe a hard disk

Possible Duplicate: Deep Format of a Harddrive on a Linux System Do you know tools (linux live cds, bootable dos tools ) to wipe hard drives ?
JPCF
  • 154
  • 2
  • 9
1
vote
1 answer

How to securely delete a file's NAME from the filesystem?

I want to delete a file on a linux ext4 file system such that the disk does not contain the name of the file anywhere on the disk (free space, file system metadata, or anywhere else). For example, I don't want any trace that a file named…
1
vote
5 answers

Secure disk wiping tool for Windows

I need to securely wipe a drive from within Windows 7 and can't find a good tool to do so. Eraser doesn't seem to have a setting to wipe a whole drive, DBAN requires not being in Windows. Over in UNIX I'd just use dd. Suggestions much appreciated.…
tsvallender
  • 133
  • 5
1
vote
7 answers

Wipe out hard drive on HP box using DBAN from CD?

I need to create CD for wipping out hard drives before boxes are decomitioned. Considering to use DBAN: does it matter that the boxes are running HP Unix? Will this effect anything? is there a different version for different architecture? I would…
stefanB
  • 123
  • 1
  • 6
1
vote
0 answers

When will deleted data be permanently gone from Heroku postgres continuous backups?

According to Heroku Postgres Data Safety and Continuous Protection data is backed up continuously into Amazon S3 buckets. If I delete a bunch of rows, for example, all confidential data from 1 particular client, when can I assure the client that the…
ChrisJ
  • 285
  • 1
  • 9
1
vote
1 answer

Is the shred utility always safe given a good random number generator?

I recently experimented with different methods of disk randomization to find what would get the job done fastest. The openssl random number generator with AES in counter mode was said to be pretty fast, so I tried piping its output to dd (to limit…
1
vote
4 answers

Shredding data on a live server

Which is the best way to shred all data from a live dedicated server? I have no physical access nor any out of band remote management functionality to the server, only SSH access. Server is running Debian 6 Update Server has ext3 partitions. From…
pl1nk
  • 451
  • 5
  • 22
1
vote
2 answers

Any way to completely remove sensitive content from the HDD before returning CentOS dedicated servers?

We are going to return a few rented CentOS dedicated servers and I was wondering about any way to remove sensitive content (a few folders) from the HDD before returning these servers? Maybe some Linux alternative to "Eraser"? If so, what are those…
Zillo
  • 111
  • 2
  • 4
1
vote
1 answer

Safe deleting a LUN in VMware

I have a LUN in our VMware 6.7.0 world. For a specific project we need to safe-delete (with a standard method like DoD 5220) the data on this LUN with some kind of deletion protocol. The underlying storage system is a 3PAR SSMC with VMFS 5 and the…
moTHO.
  • 23
  • 5
1
vote
1 answer

How can I secure erase a drive using Powershell?

Does Powershell have a built-in way to secure erase a disk? By secure erase, I mean writing random data or all zeros to the entire disk. By disk, I mean the whole physical disk, not individual files, mounted volumes or filesystems. I found…
ryancdotnet
  • 121
  • 1
  • 5
0
votes
1 answer

DD command to destroy data

Should I delete the important files of the disk and then boot into live disk and run dd command or is it okay to run dd on /dev/sda without having to delete? I'm asking this because I've already started running dd if=/dev/urandom of=/dev/sda bs=1M.…
user630702
  • 465
  • 6
  • 25
0
votes
1 answer

wipe SDA using DD command

I have a question about secure delete. SDAx is ext4 and SDA5 is the root. Can I run dd if=/dev/urandom of=/dev/sda bs=4096 while I'm connected to the server through ssh or from console? Or do I need have a live boot cd in order to do that? Or maybe…
user630702
  • 465
  • 6
  • 25
0
votes
1 answer

Can I safely trim /var/tmp/phd/log/daemons.log?

I have a server running Phabricator and this log file has no logrotate. It is getting too big and now I need to trim it. Can I safely remove some of its content?
carla
  • 317
  • 3
  • 12
-1
votes
1 answer

Make sure I have overwritten every bit with dcfldd

I am using dcfldd to wipe a drive and lear forensics. I don't really want to have to deal with the math of the blocks and sectors, and just want dd or dcfldd to write over every possible bit on the drive or device. As an example I saw this…
Recursion
  • 609
  • 2
  • 7
  • 19