Ubuntu
Wednesday, 9 January 2019
Securely erasing a storage device
Shred command-line utility overwrites data in a file and in a whole device
Set all bits to zero after the last iteration by adding the option -z
sudo shred -v -n1 -z /dev/sdX
After this is necessary to create partition
sudo apt-get install gparted
sudo gparted
How to create bootable USB Media from ISO in Ubuntu Linux
1.
Startup Disk Creator is a
built-in
application in Ubuntu Linux
2. Convert iso file into bootable usb media using ddrescue
install ddrescue
sudo apt update
sudo apt install gddrescue
check block device name
sudo fdisk -l
eg.
/dev/sdf
enter the command as follows:
sudo ddrescue Downloads/openSUSE-Leap-15.0-DVD-x86_64.iso /dev/sdf --force -D
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)
How to update snap-store
Print protected pdf
Convert the pdf to a postscript file and the postscript file to a pdf. Open the new pdf for example with Acrobat Reader and you can print. p...
How To Install Zoom Client on Ubuntu 22.04 LTS
sudo apt -y install wget wget https://zoom.us/client/latest/zoom_amd64.deb sudo apt install ./zoom_amd64.deb
mkdtemp: private socket dir: Permission denied
Probelm: /etc/gdm/Xsession: Beginning session setup... mkdtemp: private socket dir: Permission denied Solution: A quick sudo chmod a+w /tmp ...