Skip to main content

Formatting Bootable Linux Install USB after installation.

Gone are the days when we installed Linux with CD's and Multi DVD's.

with the USB its very easy to create a boot-able media from the ISO file using DD command.

once the Linux is installed we need the USB back to store or transfer files.

so we will be seeing on how to make the USB usable again like it was earlier previous to installation.

Option 1 : Terminal

First we need to get the device name by using command lsblk.

here my USB device is /dev/sdb.

command to format the USB is 

sudo mkfs.vfat -F 32 /dev/sdb

but the command returned an error and suggested to run with -I which i did and result was successfully formatted USB disk.

Option 2 : Gnome Disk Utility "Disks"

its bit easy using Disks app, be careful when selecting the disk to perform format operation.

first select the partition of USB and click " -" to delete the partition.

once all partitions are deleted you will have to format the disk by clicking Settings Gear Icon.

usually we select FAT file system to use with all operating systems.

following are the snaps.

 there are even better apps like Gparted, ROSA Image writer, Suse Image writer.

i like to keep minimal apps on my system, as Default shipped App Disks does the job i am not installing Gparted or any other tool, or maybe i will install in future if any need arises.


Comments

Popular posts from this blog

Debian 11 Bullseye setup for home user.

    Debian 11 bullseye post install. Why Debian? I Choose Debian because i like to use an independent Distribution. Debian runs smooth on my personal laptop and it makes me nostalgic. i have tried a huge list of Distro’s but always came back for Debian as it runs smooth on my laptop’s hardware.

MSSQL Server + Azure Data Studio Install Using AUR

  Hi Everyone, Last Post i documented how i installed Arch Linux the easy way using the archinstall script. This time i will show how i installed SQL Server and server studio on linux. sql server is easy to install in Arch by using AUR- Arch User repository. I recommend using YAY tool to handle the installation of AUR packages as its easy. before that Ensure the base-devel package group is installed  pacman -S --needed base-devel Now i will show you how to install a AUR Package. First visit AUR site and search for a package, it will auto complete package name parallely when you start typing. here i will show a demo using a neofetch package install from AUR. Next Click to copy the git link. Installing Package manually needs 3 steps, Acquire Build Packages. Run makepkg. Install the setup file. below is the terminal output for s...