แปลง vfat เป็น linux ด้วย cfdisk ตอนนี้ไม่สามารถ mount ได้


0

ด้วย cfdisk ฉันแปลง vfat thumb drive เป็น linux แต่ตอนนี้ฉันไม่สามารถเมานต์อุปกรณ์ได้ นี่คือสิ่งที่เกิดขึ้นเมื่อฉันพยายาม

Disk /dev/sdc: 16.0 GB, 16008609792 bytes
255 heads, 63 sectors/track, 1946 cylinders, total 31266816 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1              63    31266815    15633376+  83  Linux
/home/g mount -t ext2 /dev/sdc /16gb
mount: wrong fs type, bad option, bad superblock on /dev/sdc,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

/home/g mount -t ext3 /dev/sdc /16gb
mount: wrong fs type, bad option, bad superblock on /dev/sdc,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

/home/g mount -t ext4 /dev/sdc /16gb
mount: wrong fs type, bad option, bad superblock on /dev/sdc,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

/home/g mount -t ext4 /dev/sdc1 /16gb
mount: wrong fs type, bad option, bad superblock on /dev/sdc1,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

/home/g mount -t ext3 /dev/sdc1 /16gb
mount: wrong fs type, bad option, bad superblock on /dev/sdc1,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

/home/g mount -t ext2 /dev/sdc1 /16gb
mount: wrong fs type, bad option, bad superblock on /dev/sdc1,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

/home/g mount /dev/sdc1 /16gb
NTFS signature is missing.
Failed to mount '/dev/sdc1': Invalid argument
The device '/dev/sdc1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
/home/g mount /dev/sdc /16gb
NTFS signature is missing.
Failed to mount '/dev/sdc': Invalid argument
The device '/dev/sdc' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
/home/g 

1
คุณแปลงประเภทพาร์ติชันแล้ว แต่ยังฟอร์แมตด้วย mkfs ด้วยหรือไม่
Alan Shutko

คำตอบ:


2

cfdisk สร้างพาร์ติชัน คุณยังต้องจัดรูปแบบให้ตรงกับระบบไฟล์ที่คุณต้องการ ฉันไม่รู้ว่าคุณคำนึงถึงอะไรสำหรับการกำหนดค่าของคุณ แต่สมมติว่าคุณต้องการฟอร์แมตพาร์ติชันเพื่อทำงานใน EXT3:

mkfs.ext3 / dev / sdc1

จากนั้นคุณสามารถลองเมานต์


1
mkfs.ext3 /dev/sdc1ที่จริงแล้ว ...
ewhac

อุ่ย ขออภัยที่ลืมสิ่งนั้น และขอบคุณสำหรับการชี้ให้เห็นว่า
Ghassan

2

cfdisk และเพื่อน ๆ เท่านั้นที่เปลี่ยนแปลงตารางพาร์ทิชัน มันไม่เปลี่ยนแปลงเนื้อหาของพาร์ติชันด้วยตนเอง ดังนั้นถ้าคุณใช้ไดรฟ์ใหม่ที่เต็มไปด้วยเลขศูนย์และเขียนตารางพาร์ติชั่นใหม่พาร์ติชันนั้นจะยังคงเต็มด้วยศูนย์และไม่รู้จักกับระบบปฏิบัติการ

ระบบไฟล์ถูกเตรียมใช้งานโดยใช้เครื่องมือ mkfs ("สร้างระบบไฟล์") ซึ่งมีบทสรุป:

mkfs [options] [-t type fs-options] device [size]

ในกรณีของคุณเพื่อเริ่มต้นพาร์ติชัน /dev/sdc1 ด้วยระบบไฟล์ EXT3 ใหม่ที่มีตัวเลือกเริ่มต้นคุณจะพูดว่า:

mkfs -t ext3 /dev/sdc1

เห็นได้ชัดว่าสิ่งนี้ลบล้างข้อมูลใด ๆ ที่มีอยู่แล้ว /dev/sdc1.

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.