It is easy to create a LUKS container and a partition within it, using the GUI on Linux. The application that enables this easily is the gnome-disk-utility. However, if you want to use the command line to set up a LUKS encrypted device, read on. Exercise appropriate caution before doing any of the below with … Continue reading How to create and use LUKS encrypted partition in Linux
Tag: dd
How to securely wipe a hard drive or USB drive in Linux using dd or scrub
Normally we'd use dd to clean wipe a hard drive as follows after opening a terminal window for a hard disk or USB drive accessible as /dev/sdb :$ sudo dd if=/dev/urandom of=/dev/sdb status=progress <enter> Another command to do a secure wipe of /dev/sdb is scrub that can be used as follows:$ sudo scrub -p dod … Continue reading How to securely wipe a hard drive or USB drive in Linux using dd or scrub
How to make microSD card writable with SD MMC Card MicroSD Adapter in Ubuntu Linux
On a Linux computer, reading SD MMC Cards which have a MicroSD Adapter to insert a micro SD card for reading works fine. However, the problem arises when data is to be written to such the micro SD card in the SD MMC adapter. There are errors that the user does not have rights to … Continue reading How to make microSD card writable with SD MMC Card MicroSD Adapter in Ubuntu Linux