Linux 下將sd格式化成ext2格式並掛載

2021-06-11 12:04:31 字數 1259 閱讀 7218

sd卡在windows下格式化,只能格式化為fat檔案系統格式的,但是fat檔案系統在linux下不支援軟鏈結。所以又必要將其格式化成linux下的檔案系統格式,例如ext2。

使用嵌入式linux中自帶的工具命令mkfs.ext2。

root@target:~# mkfs.ext2 /dev/mmcblk0 

mke2fs 1.41.5 (23-apr-2009)

filesystem label=

os type: linux

block size=1024 (log=0)

fragment size=1024 (log=0)

31360 inodes, 125440 blocks

6272 blocks (5.00%) reserved for the super user

first data block=1

maximum filesystem blocks=67371008

16 block groups

8192 blocks per group, 8192 fragments per group

1960 inodes per group

superblock backups stored on blocks: 

8193, 24577, 40961, 57345, 73729

writing inode tables:  0/16 1/16 2/16 3/16 4/16 5/16 6/16 7/16 8/16 9/1610/1611/1612/1613/1614/1615/16done                            

writing superblocks and filesystem accounting information: done

this filesystem will be automatically checked every 30 mounts or

180 days, whichever comes first.  use tune2fs -c or -i to override.

root@target:~# 

掛載sd卡

root@target:~# mount -t ext2 /dev/mmcblk0 /media/mmc1/

進入sd卡,出現「lost+found」表示已經掛載成功

root@target:~# cd /media/mmc1/

root@target:/media/mmc1# ls

lost+found

Linux 下將sd格式化成ext2並掛載

sd卡在windows下格式化,只能格式化為fat檔案系統格式的,但是fat檔案系統在linux下不支援軟鏈結。所以又必要將其格式化成linux下的檔案系統格式,例如ext2。使用嵌入式linux中自帶的工具命令mkfs.ext2。root target mkfs.ext2 dev mmcblk0 ...

js將數值格式化成金額形式

將數值四捨五入 保留2位小數 後格式化成金額形式 param num 數值 number或者string return 金額格式的字串,如 1,234,567.45 type string function formatcurrency num 將數值四捨五入 保留1位小數 後格式化成金額形式 pa...

Linux下硬碟格式化

格式化與分割槽 hd ide裝置 sd scsi裝置 fdisk l dev sda 檢視第一塊硬碟分割槽情況 fdisk dev sdb 給第二塊硬碟分割槽 command acton m for help m 顯示命令列表 a 設定可引導標誌 b 設定標籤 d 刪除乙個分割槽 n 新建分割槽 p...