How to Format a USB Flash Drive in Ubuntu

Method 1 of 2:

Using the Disks Utility

  1. How to Format a USB Flash Drive in Ubuntu Picture 1
    Click the Dash button and search for "disks." You'll see Disks appear in the Applications results.
  2. How to Format a USB Flash Drive in Ubuntu Picture 2
    Launch Disks from the search results. A list of connected devices will appear in the left frame.
  3. How to Format a USB Flash Drive in Ubuntu Picture 3
    Select your USB drive from the list of devices. Its details will appear in the right frame.
  4. How to Format a USB Flash Drive in Ubuntu Picture 4
    Select at least one volume on the USB drive. Most USB drives will only have one volume, but if yours has multiple volumes you can select one or all of them.
  5. How to Format a USB Flash Drive in Ubuntu Picture 5
    Click the Gear button underneath the Volumes and select "Format." This will open the formatting options.
  6. How to Format a USB Flash Drive in Ubuntu Picture 6
    Select what you want to erase. A Quick format will not erase any data on the drive. A Slow format will erase all of the data and check for errors on the drive.
  7. How to Format a USB Flash Drive in Ubuntu Picture 7
    Select the file system. There are several different file systems that you can choose from.
    1. For maximum compatibility with other devices, select "FAT" (FAT32). This will work on all computers and virtually any other device that works with USB drives.
    2. If you're just planning on using the drive with Linux, select "ext3." This will allow you to use Linux's advanced file permissions.
  8. How to Format a USB Flash Drive in Ubuntu Picture 8
    Format the drive. Click the Format button and wait for the USB drive to be formatted. This may take a while for larger drives, and erasing all of the data will add to the time it takes.[1]
Method 2 of 2:

Using the Terminal

  1. How to Format a USB Flash Drive in Ubuntu Picture 9
    Open the Terminal. You can open this from the Dash, or by pressing Ctrl+Alt+T.
  2. How to Format a USB Flash Drive in Ubuntu Picture 10
    Type .lsblk and press Enter. This will display a list of storage devices attached to the computer.
  3. How to Format a USB Flash Drive in Ubuntu Picture 11
    Identify your USB drive. Use the SIZE column to find your USB drive in the list.
  4. How to Format a USB Flash Drive in Ubuntu Picture 12
    Unmount your USB drive's partition. You'll need to unmount the drive before formatting. Type the following command, and replace sdb1 with your USB drive's partition label.
    1. sudo umount /dev/sdb1
  5. How to Format a USB Flash Drive in Ubuntu Picture 13
    Erase all of the data on the drive (optional). You can delete everything on the drive by entering the following command. Replace sdb with your USB drive's label.
    1. sudo dd if=/dev/zero of=/dev/sdb bs=4k && sync
    2. This will take a while to process and may appear frozen.
    3. On Ubuntu 16.04 and later: sudo dd if=/dev/zero of=/dev/sdb bs=4k status=progress && sync.
  6. How to Format a USB Flash Drive in Ubuntu Picture 14
    Create a new partition table. The partition table controls the volumes on the drive. Type the following command, replacing sdb with your USB drive's label.
    1. Type sudo fdisk /dev/sdb and press Enter. Press O to create an empty partition table.
  7. How to Format a USB Flash Drive in Ubuntu Picture 15
    Press .N to create a new partition. Enter the size of the partition that you want to create. Enter the full size of the drive if you are just creating a single partition.
  8. How to Format a USB Flash Drive in Ubuntu Picture 16
    Press .W to write the table and exit. This may take a moment.
  9. How to Format a USB Flash Drive in Ubuntu Picture 17
    Run .lsblk again to view your new partition. It will be listed below your USB drive's label.
  10. How to Format a USB Flash Drive in Ubuntu Picture 18
    Format your new volume. Now that you've created the new volume, you can format it with the file system of your choosing. Enter the following command to format the drive as FAT32, the most compatible file system. Replace sdb1 with your partition's label:
    1. sudo mkfs.vfat /dev/sdb1
  11. How to Format a USB Flash Drive in Ubuntu Picture 19
    Eject your drive when finished. Once the format is complete, you can safely eject your device:[2]
    1. sudo eject /dev/sdb
4 ★ | 1 Vote

May be interested

  • How to Install Ubuntu LinuxPhoto of How to Install Ubuntu Linux
    this wikihow teaches you how to install ubuntu linux on your windows or mac computer without erasing your current operating system. make sure that your computer can run linux. your computer must meet the following system...
  • How to Format a Hard Drive Using UbuntuPhoto of How to Format a Hard Drive Using Ubuntu
    you can format your drives using the disks utility that comes installed with ubuntu. if the disks utility is giving you errors, or you have a corrupted partition, you can use gparted to format instead. you can also use gparted to resize...
  • How to Become Root in UbuntuPhoto of How to Become Root in Ubuntu
    to run administrative tasks in linux, you must have root (also known as superuser) access. having a separate root account is common in most linux distributions, but ubuntu disables root by default. this prevents users from making mistakes...
  • How to Uninstall Ubuntu SoftwarePhoto of How to Uninstall Ubuntu Software
    this wikihow teaches you how to uninstall software from a computer running ubuntu linux, as well as how to uninstall ubuntu from your computer. if your computer is running both linux and a different operating system, you can erase the...
  • How to Install FreeNX Server on Ubuntu 9.04 JauntyPhoto of How to Install FreeNX Server on Ubuntu 9.04 Jaunty
    freenx is an open source server for remote desktop connection that works over both high and low speed internet connections. it can be installed in ubuntu from the [https://launchpad.net/~freenx-team/+archive/ freenx team ppa]. create and...
  • How to Install Postman in UbuntuPhoto of How to Install Postman in Ubuntu
    this wikihow teaches you how to install postman on a computer running the ubuntu linux operating system. postman is a tool commonly used by developers to test apis. make sure snap is installed. if you are running ubuntu 16.04 lts or later,...