You are Here:
Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section



More of a pre installing question - DBAN Vs USB

Author (Read 5513 times)

0 Members and 1 Guest are viewing this topic.

Re: More of a pre installing question - DBAN Vs USB
« Reply #11 on: March 09, 2020, 05:42:29 PM »
 

TheDead

  • Gold Level Poster
  • *******
  • 936
    Posts
  • Reputation: 92
  • Linux Lite Worshipper
    • View Profile
    • My OpenDesktop Projects

  • CPU: HAL9000

  • MEMORY: 2Gb

  • VIDEO CARD: Quantum State VR v.3

  • Kernel: 4.x
Hi guys and gals!

I was finally able to make a bootable USB key with DBan this week end.
The trick was formating the key in FAT (not FAT32).
I made a 64MB partition and wrote the ISO *without reformating*  with Universal-USB-Installer .
I don't know if the program exists in Linux though, but I'm pretty sure the FAT16 part was the key to the mYsTeRy.
Now for some Scooby-Snacks! Rrror ;)

What worked for me is here if needed :
https://superuser.com/questions/1170486/how-to-install-dban-dariks-boot-and-nuke-on-an-usb-flash-drive-larger-than-4g
- TheDead (TheUxNo0b)

If my blabbering was helpful, please click my [Thank] link.
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #10 on: February 21, 2020, 11:51:28 AM »
 

DeepThought

  • Forum Regular
  • ***
  • 237
    Posts
  • Reputation: 40
  • Linux Lite Member
    • View Profile
    • WKDfm Radio | WKDfm Chat

  • CPU: AMD Turion(tm) 64 x 2 Mobile Technology TL-60

  • MEMORY: 4Gb

  • VIDEO CARD: ATI RS480

  • Kernel: 5.x
@TheDead  You can wipe the hdd using dd

source: https://how-to.fandom.com/wiki/How_to_wipe_a_hard_drive_clean_in_Linux

Code: [Select]
sudo dd if=/dev/urandom of=/dev/sdX bs=1M
Replace sdX with your hdd that you want to wipe, but make sure you correctly identify the drive as this will wipe all data.
« Last Edit: February 21, 2020, 12:04:59 PM by DeepThought »
Owner and DJ at WKDfm Radio ( www.wkdfm.co.uk )
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #9 on: February 21, 2020, 11:37:20 AM »
 

Moltke

  • Platinum Level Poster
  • **********
  • 1134
    Posts
  • Reputation: 126
  • Linux Lite Member
    • View Profile

  • CPU: amd athlon 64 x2

  • MEMORY: 4Gb

  • VIDEO CARD: amd radeon hd 6750

  • Kernel: 5.x
@Moltke
Thanks, but I need to "secure wipe" the HDD's not just erase them, hence the DBAN need.

@az2020 and @DeepThought and Jerry.
Thanks for the info, will be trying that this weekend and getz backz to youz here. ;)

@TheDead I thought that might work but you're probably right. There's also this https://launchpad.net/gdiskdump
Quote
GUI for diskdump (dd). Harddrive clone and imaging tool.
You should be able to install it with
Code: [Select]
sudo apt-get install gdiskdump can't try cause I'm not in LL/Ubuntu right now but you can first check with
Code: [Select]
apt policy gdiskdump whether it is or not available.

Quote
Sometimes I use the dd command to "burn" USB flash drives. From my notes:

Format:
   Find the device
      df -h

While this works I think
Code: [Select]
lsblk gives a cleaner output.

Quote
Test:
   qemu-system-x86_64 -hda /dev/sdx

This is a nice tip :) I use qemu/Vbox quite often and never ocurred to me that for trying live USBs. Thanks for sharing!
Without each others help there ain't no hope for us :)
Need a translation service? https://www.deepl.com/es/translator
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #8 on: February 21, 2020, 06:42:43 AM »
 

TheDead

  • Gold Level Poster
  • *******
  • 936
    Posts
  • Reputation: 92
  • Linux Lite Worshipper
    • View Profile
    • My OpenDesktop Projects

  • CPU: HAL9000

  • MEMORY: 2Gb

  • VIDEO CARD: Quantum State VR v.3

  • Kernel: 4.x
@Moltke
Thanks, but I need to "secure wipe" the HDD's not just erase them, hence the DBAN need.

@az2020 and @DeepThought and Jerry.
Thanks for the info, will be trying that this weekend and getz backz to youz here. ;)

- TheDead (TheUxNo0b)

If my blabbering was helpful, please click my [Thank] link.
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #7 on: February 20, 2020, 11:57:18 AM »
 

DeepThought

  • Forum Regular
  • ***
  • 237
    Posts
  • Reputation: 40
  • Linux Lite Member
    • View Profile
    • WKDfm Radio | WKDfm Chat

  • CPU: AMD Turion(tm) 64 x 2 Mobile Technology TL-60

  • MEMORY: 4Gb

  • VIDEO CARD: ATI RS480

  • Kernel: 5.x
@az2020 

Quote
[note: I'm not consistent in including "sudo" to my notes when it's required. You'll probably encounter "not authorized" (or something) and need to add "sudo" to some of those commands

That can be annoying, done it myself plenty of times. To save time instead of typing the whole command again with sudo in front, just type

Code: [Select]
sudo !! 

thats sudo space and 2 exclamation marks. This will add sudo to your previous command, ask for your password and execute.

A life saver when it's a long command lol. :):)
Owner and DJ at WKDfm Radio ( www.wkdfm.co.uk )
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #6 on: February 20, 2020, 10:30:10 AM »
 

az2020

  • New to Forums
  • *
  • 44
    Posts
  • Reputation: 8
    • View Profile

  • CPU: Ryzen 3 3200u

  • MEMORY: 32Gb

  • VIDEO CARD: Radeon Vega 3

  • Kernel: 5.x
Sometimes I use the dd command to "burn" USB flash drives. From my notes:

Format:
   Find the device
      df -h

   Make sure it's UNMOUNTED
      sudo umount /dev/sdxn

   Format using ONE of the following
      sudo mkfs.vfat /dev/sdxn
      sudo mkfs.ntfs /dev/sdxn
      sudo mkfs.ext4 /dev/sdxn

[note: xn comes from the df command. Typically b1 or c1.]

Burn:
   Find the device (again, a different way, just showing off now...)
      fdisk -l
      
   umount /dev/sdx
   
   dd bs=4M if=linux-lite-4.8-64bit.iso of=/dev/sdx bs=4M

Test:
   qemu-system-x86_64 -hda /dev/sdx

[note: I'm not consistent in including "sudo" to my notes when it's required. You'll probably encounter "not authorized" (or something) and need to add "sudo" to some of those commands. (You can also do "sudo -s" to keep the session sudo'ed. But, that's a risk of doing something unintended. But, so is up-arrowing through your command-line history and pressing enter on the wrong sudo prefixed command. Just, be careful.).]
   
« Last Edit: February 20, 2020, 12:48:13 PM by az2020 »
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #5 on: February 20, 2020, 09:21:49 AM »
 

Moltke

  • Platinum Level Poster
  • **********
  • 1134
    Posts
  • Reputation: 126
  • Linux Lite Member
    • View Profile

  • CPU: amd athlon 64 x2

  • MEMORY: 4Gb

  • VIDEO CARD: amd radeon hd 6750

  • Kernel: 5.x
Quick post before work...
Never used dd so quite a noob there.
Is that terminal only? I usually get the GUI stuff ;)

Yes, dd is cli/terminal only, however, gparted uses it as well so I think you could burn LL iso, boot into live, then open gparted and wipe the HDD, for that select create new partition and then click apply, next right-click the new partition and select format and assign the format you want/need to the drive.

Hope this helps! :)
Without each others help there ain't no hope for us :)
Need a translation service? https://www.deepl.com/es/translator
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #4 on: February 20, 2020, 09:17:41 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8778
    Posts
  • Reputation: 802
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Yes, no GUI. Let thy Google do thy bidding.

Sent from my Mobile phone using Tapatalk

 

Re: More of a pre installing question - DBAN Vs USB
« Reply #3 on: February 20, 2020, 08:04:49 AM »
 

TheDead

  • Gold Level Poster
  • *******
  • 936
    Posts
  • Reputation: 92
  • Linux Lite Worshipper
    • View Profile
    • My OpenDesktop Projects

  • CPU: HAL9000

  • MEMORY: 2Gb

  • VIDEO CARD: Quantum State VR v.3

  • Kernel: 4.x
Quick post before work...
Never used dd so quite a noob there.
Is that terminal only? I usually get the GUI stuff ;)
- TheDead (TheUxNo0b)

If my blabbering was helpful, please click my [Thank] link.
 

Re: More of a pre installing question - DBAN Vs USB
« Reply #2 on: February 19, 2020, 07:10:24 AM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8778
    Posts
  • Reputation: 802
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Tried dd?

Sent from my Mobile phone using Tapatalk

 

More of a pre installing question - DBAN Vs USB
« Reply #1 on: February 19, 2020, 07:08:32 AM »
 

TheDead

  • Gold Level Poster
  • *******
  • 936
    Posts
  • Reputation: 92
  • Linux Lite Worshipper
    • View Profile
    • My OpenDesktop Projects

  • CPU: HAL9000

  • MEMORY: 2Gb

  • VIDEO CARD: Quantum State VR v.3

  • Kernel: 4.x
Hi,
I have quite a few computers I received recently but need to securely wipe the hard drives before installing linux on them.It's been two days trying to download the DBAN ISO and put on USB keys (3 different models).
Etcher and unetbootin say the downloaded (re-downloaded, etc.) ISO is not bootable and another program says nothing when creating the USB key but wont boot either.

All USB keys say that indeed, the computer has No Operating system found when (remove the harddrive to test since otherwise, it boots the old OS).
PS : Computers are not UEFI and are quite "Legacy" since the CPU is not even 64bits (old Core Duo) ;)

Any hints to get DBan working/booting?
« Last Edit: October 12, 2021, 02:28:52 PM by firenice03 »
- TheDead (TheUxNo0b)

If my blabbering was helpful, please click my [Thank] link.
 

 

-->
X Close Ad

Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section