Most efficient way of purging of 10TB data from SAN?

0

I want to purge storage data from SAN which accumulates to 10 TB. The storage is mounted as mount-points on a system for which it is visible I was recommended by a friend to use winscp But I don't think the tool is efficient to such an extent. I appreciate if I can be recommended a tool or command line which can help me perform this job. Thanks

user3066819

Posted 2014-02-27T04:08:31.470

Reputation: 1

Purge as in rm -rf /*? Or securely erasing everything? – Daniel B – 2014-02-27T15:46:34.197

Answers

2

Login with ssh, unmount the disk, reformat it.

  • If you are on Windows use Putty to ssh in NAS.
  • Once logged in, you'll have to find the drive with mount command.
  • Unmount the drive with unmount command
  • Format the drive with mkfs
  • Mount it back using mount again

man command_name would show a command reference

Basilevs

Posted 2014-02-27T04:08:31.470

Reputation: 2 237

With what tool or tools would one do this? – Kevin Panko – 2014-02-27T14:56:02.657

Depends on the filesystem. For everything ext, that would be e2fsprogs. reiserfs tools are provided by reiserfsprogs. Generally, these will already be installed. Short version: umount /dev/sdx1 && mkfs.ext4 /dev/sdx1 && mount /dev/sdx1 – Daniel B – 2014-02-27T15:49:50.290