NVIDIA TX2--5--NVIDIA Jetson TX2 挂载128G 的SD卡

Yolov-1-TX2上用YOLOv3训练自己数据集的流程(VOC2007-TX2-GPU)

Yolov--2--一文全面了解深度学习性能优化加速引擎---TensorRT

Yolov--3--TensorRT中yolov3性能优化加速(基于caffe)

yolov-5-目标检测:YOLOv2算法原理详解

yolov--8--Tensorflow实现YOLO v3

yolov--9--YOLO v3的剪枝优化

yolov--10--目标检测模型的参数评估指标详解、概念解析

yolov--11--YOLO v3的原版训练记录、mAP、AP、recall、precision、time等评价指标计算

yolov--12--YOLOv3的原理深度剖析和关键点讲解


大概有两种方式:命令行方式或图形界面方式

     1.命令行

sudo fdisk -l
查看你的设备的符号,显示结果通常如下:
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000c4c5b

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1       60065   482466816   83  Linux
/dev/sda2           60065       60802     5917697    5  Extended
/dev/sda5           60065       60802     5917696   82  Linux swap / Solaris

Disk /dev/sdb: 1954 MB, 1954545664 bytes
255 heads, 63 sectors/track, 237 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00069760
找到你的设备的盘符,我的是 /dev/sdb
sudo umount /dev/sdb
sudo fdisk /dev/sdb
在终端显示内容如下:
Command (m for help):
输入m得到帮助信息:
Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)
开始分区
如果你的设备已经有分区,先删除你的分区:

Command (m for help): d 删除命令
Partition number (1-4): 1 删除地几个分区
如果有多个分区,接着执行命令d,输入分区号
创建新分区:
Command (m for help): n   创建分区命令
Command action
   e   extended
   p   primary partition (1-4)
p                          选择分区的类型 e:扩展分区 p:主分区
Partition number (1-4): 1  分区号 1:第一个分区
First cylinder (1-237, default 1): 1
Last cylinder, +cylinders or +size{K,M,G} (1-237, default 237): +512M 分区的大小
创建第二个分区:同上
Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (67-237, default 67): 
Using default value 67
Last cylinder, +cylinders or +size{K,M,G} (67-237, default 237): +512M 
把第一个分区做为FAT32d 分区:
Command (m for help): t 改变分区的id
Partition number (1-4): 1 改变第一个分区
Hex code (type L to list codes): c 变为dos兼容的格式
Changed system type of partition 1 to c (W95 FAT32 (LBA))
查看分区情况:
Command (m for help): p
 
Disk /dev/sdb: 1954 MB, 1954545664 bytes
255 heads, 63 sectors/track, 237 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00069760
 
   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1          66      530113+   c  W95 FAT32 (LBA)
/dev/sdb2              67         132      530145   83  Linux

保存写入上面的内容:
Command (m for help): w
The partition table has been altered!
 
Calling ioctl() to re-read partition table.
 
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
The kernel still uses the old table. The new table will be used at
the next reboot or after you run partprobe(8) or kpartx(8)
 
WARNING: If you have created or modified any DOS 6.x
partitions, please see the fdisk manual page for additional
information.
Syncing disks.


格式化分区:
sudo mkfs.vfat -F 32 -n boot /dev/sdb1 //boot是为分区起的名字,就是在硬盘上显示的名字 格式化位fat32格式 第一个分区
sudo mkfs.ext3 -L linux_fs /dev/sdb2 // linux_fs 是第二个分区的名字,格式化位 ext3格式

OK,Over。

 

 

 

 

https://blog.csdn.net/jiangchao3392/article/details/73549680

https://blog.csdn.net/vertor11/article/details/51859645

https://blog.csdn.net/android_learn/article/details/6893313

  • 0
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

明宇朗心

你的鼓励将是我创作的最大动力♥

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值