Results 1 to 3 of 3

Thread: Startup Disk Creator - Question?

  1. #1
    Join Date
    Jan 2008
    Location
    UK
    Beans
    1,783
    Distro
    Ubuntu 14.04 Trusty Tahr

    Question Startup Disk Creator - Question?

    I have a Netbook with no optical drive but it can boot from a USB drive. I've successfully booted it with a USB stick that had a bootable version of UBU 10.04 created from the .iso install file via Startup Disk Creator.

    Now, I need to do completely and securely wipe the HDD and I want to use either of these utilities:-

    dBan
    KillDisk

    I know the latter is a windows .exe but unsure what format dBan is.

    My question is: How do I get this onto a USB bootable disk?

    I've downloaded the dBan .iso but Startup Disk Creator will not load it as a source? I've also looked at Unetbootin but the documentation states that it only supports Linux installation .iso's?

    On my old machine which had an optical drive I would just burn a disk and off you go.

    Any help greatly appreciated.

    Mark
    Keep Ubuntu free! Donate any amount you like – just use the PayPal donation address donations@ubuntu.com

  2. #2
    Join Date
    Jun 2006
    Location
    UK
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: Startup Disk Creator - Question?

    If you've got a bootable USB stick with Ubuntu 10.04, you've already got a utility that comes with that which will securely wipe the whole of the HD, including the MBR and partition table.

    Boot up with the USB drive. Open a terminal. With a netbook you will only have one HD, sda, but let's be sure we're wiping the correct drive. Do:

    Code:
    sudo fdisk -l
    If that shows you that the size of the sda HD is the same as your internal HD, and the size of sdb is your bootable USB, then fine. Now from the terminal:

    Code:
    sudo shred -zvn 7 /dev/sda
    ... and go away for a few hours.

    That will give you 7 passes plus a final eighth pass with zeroes. The first and seventh are random, the others are patterns of digits which the output will tell you about. That's complete overkill, of course. If you want to leave out the final zeroing, omit the -z option. To change the number of passes, change the number. For more information, type...

    Code:
    man shred
    ... in the terminal.
    Ubuntu 20.04 Desktop Guide - Ubuntu 22.04 Desktop Guide - Forum Guide to BBCode - Using BBCode code tags

    Member: Not Canonical Team

    If you need help with your forum account, such as SSO login issues, username changes, etc, the correct place to contact an admin is here. Please do not PM me about these matters unless you have been asked to - unsolicited PMs concerning forum accounts will be ignored.

  3. #3
    Join Date
    Jun 2007
    Location
    Hikkaduwa, Sri Lanka
    Beans
    3,449
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: Startup Disk Creator - Question?

    dd will also do a good job of wiping a disk:

    http://www.linuxquestions.org/questi...ommand-362506/

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •