• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H26-Feb-2015-687613

lib/H26-Feb-2015-2,6621,820

src/H03-May-2022-2,4681,944

test/H26-Feb-2015-557472

win/H03-May-2022-445341

AUTHORSH A D26-Feb-2015955 3018

COPYINGH A D26-Feb-20151.3 KiB2721

ChangeLogH A D26-Feb-201548 21

INSTALLH A D26-Feb-2015371 1811

Makefile.amH A D26-Feb-2015436 1410

Makefile.inH A D26-Feb-201521.6 KiB693603

NEWSH A D26-Feb-20154.4 KiB157123

READMEH A D26-Feb-20151.4 KiB3024

TODOH A D26-Feb-20151.3 KiB3124

aclocal.m4H A D26-Feb-201533.8 KiB952857

config.h.inH A D26-Feb-20153.3 KiB12684

configureH A D26-Feb-2015167.6 KiB5,8584,858

configure.acH A D26-Feb-20151.7 KiB5445

depcompH A D20-Dec-200918.2 KiB631407

install-shH A D20-Dec-200913.3 KiB521344

missingH A D20-Dec-200911.2 KiB377281

srm.slnH A D26-Feb-20151.9 KiB3735

srm.spec.inH A D26-Feb-2015956 4233

srm.vcxprojH A D26-Feb-20156.9 KiB142142

srmtest.shH A D26-Feb-20153.6 KiB14094

test.batH A D26-Feb-20151.3 KiB6053

test.shH A D26-Feb-20154.6 KiB244199

README

1This is srm, a secure replacement for rm(1). Unlike the standard rm,
2it overwrites the data in the target files before unlinking them. This
3prevents command-line recovery of the data by examining the raw block
4device. It may also help frustrate physical examination of the disk,
5although it's unlikely that it completely protects against this type of
6recovery.
7
8Srm uses algorithms found in "Secure Deletion of Data from Magnetic
9and Solid-State Memory" by Peter Gutmann and THC Secure Delete (the
10overwrite, truncate, rename, unlink sequence).
11
12Srm was originally released under the GPL. Versions 1.1 and later are
13released under the MIT/X11 license, which is much less restrictive. For
14your convenience, some commonly needed modules are distributed in the
15lib/ directory. These may be under different licenses.
16
17All users, but especially Linux users, should be aware that srm will
18only work on file systems that overwrite blocks in place. In
19particular, it will *NOT* work on reiserfs or the vast majority of
20journaled file systems. It should work on ext2, FAT-based file
21systems, and the BSD native file system. On ext3 srm will try to disable
22journaling of data, see the verbose output if this fails.
23
24Patches and bug reports are all appreciated and should be submitted to
25the sourceforge bug tracker, so others can see and discuss those
26problems.
27
28original author: Matt Gauthier <elleron@comcast.net>
29current maintainer: Dirk Jagdmann <doj@cubic.org>
30