Don't want to test this myself but just wanting to make sure I did this right #143
-
|
long story short, a friend is going to be wiping his work PC before submitting his resignation and asked for a usb that will just do it, this is what I found and want to give him. when customizing the commands in the grub.cfg this is what I put in for the commands `set default="0" menuentry "shredos" { just want to confirm this will automatically nuke everything without user input and won't erase the usb that's plugged in, is this correct? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
The syntax is not quite correct, you're missing a couple of hyphens and the closing quote, once those are fixed it would work. Using those options you would almost get a silent autonuke, however if there is a CDROM it would display a read-only warning but will still wipe any discs that are present. You would need to add In --nogui mode nothing gets printed to the main terminal. So you have just a blank screen, the only way you know anything is happening is from the disc activity LED. I don't remember if it prints any progress after a while but it's possible it's perfectly silent throughout the entire duration of the wipe. Correct syntax with exclusion of the CD/DVD drive. However, you don't need to hide the GUI to do a autonuke. My preference is to display the GUI so you can see progress. autonuke with GUI (no user interaction required, will immediately autonuke without user interaction required to initiate the wipe) With reference to --nogui mode , if you wanted to see progress, you can send nwipe a signal |
Beta Was this translation helpful? Give feedback.
The syntax is not quite correct, you're missing a couple of hyphens and the closing quote, once those are fixed it would work.
Using those options you would almost get a silent autonuke, however if there is a CDROM it would display a read-only warning but will still wipe any discs that are present. You would need to add
--exclude=/dev/sr0if you wanted a perfectly blank screen.In --nogui mode nothing gets printed to the main terminal. So you have just a blank screen, the only way you know anything is happening is from the disc activity LED. I don't remember if it prints any progress after a while but it's possible it's perfectly silent throughout the entire duration of the wipe.
Correct …