1 - by Disk utility // simplest way
you can use Disks it's installed by default and easy to use.
- 1st: Click on the Dash icon
- 2nd: Search for "Disks"
- 3rd: Click on Disks
The application will shows up:
- 1st: Choose the USB flash drive
- 2nd: Click on the "gear" icon and choose "Format"
This little window will appear, just choose the option you want and click on Format...:
2- by Gparted tool
// you can install it from Ubuntu software center or you can install is by typin
sudo apt-get install gparted
3- by using Terminal
go to super mode by typing "su" followed by super mode password
fdisk -l
that will show all the volume in your pc or you can also use the
df
to see the usb flash drive suppose it may be /deb/sdb1
umount /dev/sdb1
that un mount the drive
mkfs.vfat /dev/sdb1
or
mkdosfs -F 32 -I /dev/sdxx
to format drive into fat32 format
来源:http://askubuntu.com/questions/22381/how-to-format-a-usb-flash-drive
参考:http://www.unixmen.com/how-to-format-usb-drive-in-the-terminal/
Understanding the above command
mkfs
mkfs is used to build a Linux filesystem on a device, usually a hard disk partition. The device argument is either the device name (e.g. /dev/hda1, /dev/sdb2), or a regular file that shall contain the filesystem. The size argument is the number of blocks to be used for the filesystem.
vfat
Formats the drive to FAT32, other formats available are mkfs.bfs, mkfs.ext2, mkfs.ext3, mkfs.ext4, mkfs.minix, mkfs.msdos, mkfs.vfat, mkfs.xfs, mkfs.xiafs etc.
-n
Volume-name sets the volume name (label) of the file system. The volume name can be up to 11 characters long. The default is no label. In this tutorial my volume-name is Ubuntu.
-I
It is typical for fixed disk devices to be partitioned so by default, you are not permitted to create a filesystem across the entire device.
Running $ df after formatting displays this.
相关推荐
在Ubuntu操作系统中,DisplayLink技术是一种通过USB接口连接显示器,实现VGA或HDMI显示输出的方式。DisplayLink驱动程序使得用户能够轻松扩展或镜像他们的桌面到额外的显示器,而无需依赖于内置的显卡接口。这篇教程...
Ubuntu 格式化 fat ntfs ext 的详细讲解,非常有用
在本篇内容中,我们将探讨如何在VS2019中利用开源的clang-format工具来实现源代码的自动化格式化和排版。 首先,clang-format是由LLVM项目开发的一款代码风格格式化工具,它支持多种编程语言,包括C、C++、...
在Linux环境下,尤其是Ubuntu操作系统中,将USB接口的设备识别为串行端口常常需要安装特定的驱动程序。USB转串口芯片是常见于将USB接口转换为标准RS-232串行端口的硬件设备,这类设备在嵌入式开发、数据采集和串口...
虚拟机 VMware 下的 UbuntuUSB 设备识别问题解决方法 本文将解决虚拟机 VMware 下的 UbuntuUSB 设备识别问题,提供了三种解决方法,分别是手动挂载 U 盘、启动 VMware USB Arbitration Service 服务和卸载 ehci_hcd...
### Ubuntu下USB转串口配置及串口工具配置详解 #### 一、USB转串口配置 ##### 1.1 安装Minicom 在Ubuntu系统中,可以通过安装`minicom`来完成USB转串口的基本配置。首先,通过终端执行以下命令安装`minicom`: ```...
The connection to the VMware USB Arbitration Service was unsuccessful.”的消息提示,且在虚拟机内的Ubuntu系统中插入U盘也无法被识别。 **问题原因**:VMware USB Arbitration Service服务未启动。 **解决...
4. 安装Ubuntu: 在安装过程中,首先需要设置BIOS启动顺序,将USB启动设置为第一顺序。重启电脑后,启动到Ubuntu安装界面,按照提示进行系统安装。这通常包括设置语言、地区、键盘布局、用户账户信息、磁盘分区等...
4. **选择USB驱动器**:正确识别并选择你要格式化并制作成启动盘的USB设备,注意备份USB设备上的所有数据,因为格式化会删除所有内容。 5. **制作启动盘**:点击“Create”或“制作”按钮,工具会将ISO内容写入USB...
在Ubuntu系统上安装Java Development Kit (JDK) 版本1.8是开发Java应用程序的基础步骤。这个免费的安装包提供了必要的环境,让开发者可以在Ubuntu上编写、编译和运行Java程序。本文将详细介绍如何在Ubuntu系统上安装...
Ubuntu Pocket Guide and Reference: A concise companion for day-to-day Ubuntu use Paperback: 166 pages Publisher: CreateSpace (January 19, 2009) Language: English ISBN-10: 1440478295 ISBN-13: 978-...
《Silicon Labs CP210x USB to UART Bridge驱动详解》 在计算机技术领域,USB转串口技术是连接各种串行设备至个人电脑的重要桥梁。Silicon Labs是一家知名的半导体公司,其推出的CP210x系列USB到UART(通用异步收发...
- **Installation Options**: Explanation of the different methods for installing Ubuntu, such as live CD/DVD, USB drive, or virtual machines. Instructions for creating bootable media are provided. - **...
ubuntu-linux环境下,运行代码,系统读取USB摄像头数据,并实时显示摄像头采集的视频信息
5. 点击“Create”或“制作”按钮,程序将格式化USB设备并写入ISO内容,创建一个可引导的Ubuntu USB启动盘。 完成后,用户可以在BIOS设置中选择从USB设备启动,然后按照屏幕提示进行Ubuntu的安装过程。这个工具对...
### Ubuntu USB 问题详解 #### 一、引言 在使用Ubuntu系统的过程中,用户经常会遇到各种USB设备的问题,这些问题不仅包括鼠标和键盘等基础输入设备的功能异常,还可能涉及更深层次的驱动兼容性以及系统配置问题。...
2. **Ubuntu桌面环境**: 探索Unity或Gnome Shell等不同的Ubuntu桌面环境,学习如何自定义工作区、启动器、以及设置个性化主题。 3. **软件管理**: 使用Ubuntu Software Center或命令行工具(如apt)安装、更新和...
### 虚拟机VMware下的Ubuntu USB设备识别问题及解决方法 #### 一、问题背景 在使用虚拟机软件VMware时,特别是在虚拟机中安装了Ubuntu Linux系统的情况下,可能会遇到USB设备无法正常识别的问题。这种情况对于经常...