Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何确定SD卡上的文件系统类型(此卡尚未挂载。我需要确定文件系统类型,以便我可以根据文件系统类型通过程序挂载SDCard)或从终端。例如“mount -t ext3 /dev/sdc1 /mnt”
您可能会做一个file -s /dev/sdc1,它可以识别文件系统数据。
file -s /dev/sdc1
你可能会做mount -t auto /dev/sdc1 /mnt让 mount 识别它。
mount -t auto /dev/sdc1 /mnt