Linux下使用fdisk命令将高容量SD卡(SDHC)格成两个分

刚买了一个4G的TF卡,居然在我的智能山寨机coolo818上不能使用,因为coolo818最大支持2G的卡。于是,就想把高容量的SD卡格成两个2G的盘片来用。

Fedora 8下,将一张4G的TF卡(MicroSD),格成两个2G的分区,一个主分区,一个逻辑分区。

ps:SD卡有TF卡(现在通称MicroSD),SD卡,MiniSD卡,SDHC等多种,长的不一样;除此之外,还有一种MMC卡。

指令:fdisk
用途:观察硬盘之实体使用情形与分割硬盘用。
使用方法:
      一、在 console 上输入 fdisk -l /dev/sdb ,观察硬盘之实体使用情形。
      二、在 console 上输入 fdisk /dev/sdb,可进入分割硬盘模式。
        1. 输入 m 显示所有命令列示。
        2. 输入 p 显示硬盘分割情形。
        3. 输入 a 设定硬盘启动区。
        4. 输入 n 设定新的硬盘分割区。  
           4.1. 输入 e 硬盘为[延伸]分割区(extend)。
         4.2. 输入 p 硬盘为[主要]分割区(primary)。
        5. 输入 t 改变硬盘分割区属性。
        6. 输入 d 删除硬盘分割区属性。
        7. 输入 q 结束不存入硬盘分割区属性。
        8. 输入 w 结束并写入硬盘分割区属性。

[root@localhost ~]# fdisk /dev/sdb      #插入读卡器,在我电脑上显示是sdb,以下黑字为键入部分

The number of cylinders for this disk is set to 189513.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
   (e.g., DOS FDISK, OS/2 FDISK)

Command (m for help): m       #help
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): p                  #查看
Disk /dev/sdb: 4075 MB, 4075290624 bytes
7 heads, 6 sectors/track, 189513 cylinders
Units = cylinders of 42 * 512 = 21504 bytes
Disk identifier: 0x00000000

Device Boot      Start         End      Blocks   Id System
/dev/sdb1               1       93007     1953144    c W95 FAT32 (LBA)
/dev/sdb2           93008      189513     2026626    f W95 Ext'd (LBA)
/dev/sdb5           93008      189513     2026623    c W95 FAT32 (LBA)
Command (m for help): d
Partition number (1-5): 1 #删除1分区,因为之前我已经分成两个区了,所以现在演示时显示有两个分区,总之,先删掉

Command (m for help): d
Partition number (1-5): 2 #删除2分区

Command (m for help): d
No partition is defined yet!

Command (m for help): p

Disk /dev/sdb: 4075 MB, 4075290624 bytes
7 heads, 6 sectors/track, 189513 cylinders
Units = cylinders of 42 * 512 = 21504 bytes
Disk identifier: 0x00000000

#以上为删除原有的分区

Device Boot      Start         End      Blocks   Id System
Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-189513, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-189513, default 189513): +2048M

Command (m for help): t
Selected partition 1
Hex code (type L to list codes): L

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/64b7cb45a3b98d5e701048aed9fcaf2f.html