mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-22 15:02:12 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
099d380f3c | ||
|
|
f3ace2aa7c | ||
|
|
f6483ca055 | ||
|
|
0a5dbeb5a4 | ||
|
|
cf57297953 |
@@ -1,6 +1,11 @@
|
||||
RELEASE NOTES
|
||||
=============
|
||||
|
||||
v0.34
|
||||
-----------------------
|
||||
- Fix a compiler warning -Wformat-zero-length string
|
||||
|
||||
|
||||
v0.33
|
||||
-----------------------
|
||||
- Fixes a slight screen corruption on 80 column display. When highlighting the verify ones option the first two digits of DoD 5220.20-M disappear. This patch fixes that issue.@PartialVolume #348
|
||||
|
||||
@@ -7,6 +7,9 @@ nwipe is a fork of the dwipe command originally used by Darik's Boot and Nuke (D
|
||||
|
||||
nwipe is a program that will securely erase the entire contents of disks. It can wipe a single drive or multiple disks simultaneously. It can operate as both a command line tool without a GUI or with a ncurses GUI as shown in the example below:
|
||||
|
||||
> **Warning**
|
||||
> Nwipe does not currently support HDA (hidden disc area) detection. You will need to run hdparm to detect and if necessary correct the reported size of the disc prior to using nwipe.
|
||||
|
||||

|
||||
|
||||
<i>GIF showing six drives being simultaneously erased. It skips to the completion of all six wipes and shows five drives that were successfully erased and one drive that failed due to an I/O error. The drive that failed would then normally be physically destroyed. The five drives that were successfully wiped with zero errors or failures can then be redeployed.</i>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
AC_PREREQ([2.64])
|
||||
AC_INIT([nwipe], [0.33], [git@brumit.nl])
|
||||
AC_INIT([nwipe], [0.34], [git@brumit.nl])
|
||||
AM_INIT_AUTOMAKE(foreign subdir-objects)
|
||||
AC_OUTPUT(Makefile src/Makefile man/Makefile)
|
||||
AC_CONFIG_SRCDIR([src/nwipe.c])
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.TH NWIPE "1" "March 2022" "nwipe version 0.33" "User Commands"
|
||||
.TH NWIPE "1" "March 2022" "nwipe version 0.34" "User Commands"
|
||||
.SH NAME
|
||||
nwipe \- securely erase disks
|
||||
.SH SYNOPSIS
|
||||
|
||||
@@ -1433,7 +1433,7 @@ void nwipe_gui_rounds( void )
|
||||
yy = 4;
|
||||
|
||||
mvwprintw( main_window, yy++, tab1, "This is the number of times to run the wipe method on each device." );
|
||||
mvwprintw( main_window, yy++, tab1, "" );
|
||||
yy++;
|
||||
|
||||
if( focus > 0 )
|
||||
{
|
||||
@@ -1582,7 +1582,7 @@ void nwipe_gui_prng( void )
|
||||
mvwprintw( main_window, yy++, tab1, " %s", nwipe_twister.label );
|
||||
mvwprintw( main_window, yy++, tab1, " %s", nwipe_isaac.label );
|
||||
mvwprintw( main_window, yy++, tab1, " %s", nwipe_isaac64.label );
|
||||
mvwprintw( main_window, yy++, tab1, "" );
|
||||
yy++;
|
||||
|
||||
/* Print the cursor. */
|
||||
mvwaddch( main_window, 3 + focus, tab1, ACS_RARROW );
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
* used by configure to dynamically assign those values
|
||||
* to documentation files.
|
||||
*/
|
||||
const char* version_string = "0.33";
|
||||
const char* version_string = "0.34";
|
||||
const char* program_name = "nwipe";
|
||||
const char* author_name = "Martijn van Brummelen";
|
||||
const char* email_address = "git@brumit.nl";
|
||||
@@ -14,4 +14,4 @@ Modifications to original dwipe Copyright Andy Beverley <andy@andybev.com>\n\
|
||||
This is free software; see the source for copying conditions.\n\
|
||||
There is NO warranty; not even for MERCHANTABILITY or FITNESS\n\
|
||||
FOR A PARTICULAR PURPOSE.\n";
|
||||
const char* banner = "nwipe 0.33";
|
||||
const char* banner = "nwipe 0.34";
|
||||
|
||||
Reference in New Issue
Block a user