การจัดรูปแบบระบบไฟล์ในพาร์ติชันวนซ้ำทำให้พาร์ติชันตารางเสียหาย


2

ฉันสร้างการทดสอบไฟล์ชื่อประมาณ 3 fdiskกิ๊กและแบ่งพาร์ติชันด้วย ฉันตั้งค่าอุปกรณ์ลูปด้วยไฟล์นั้น (และออฟเซ็ต) เพื่อจัดรูปแบบระบบไฟล์ ext4 ในพาร์ติชั่นที่สอง อย่างไรก็ตามหลังจากที่ฉันทำเช่นนี้ตารางพาร์ทิชันของฉันดูเหมือนจะถูกตัดทอน! ฉันค่อนข้างแน่ใจว่าฉันคำนวณการชดเชยอย่างถูกต้องแล้ว ...

ทำไมสิ่งนี้จึงเกิดขึ้น

ขอให้สังเกตว่าตารางพาร์ติชันนี้มีพาร์ติชันจำนวนมาก ฉันต้องเพิ่มการmax_loopตั้งค่าเคอร์เนลเพื่อให้ได้มากกว่าอุปกรณ์ 8 ลูปปกติ ปัจจุบันmax_loopตั้งค่าเป็น 32

นี่คือผลลัพธ์ที่ถูกดักจับซึ่งแสดงว่าเกิดอะไรขึ้น:

steve@steve-VirtualBox:/s/src/scripted/image$ ls -l test
-rw-r--r-- 1 root root 3072000000 Jul 21 17:13 test
steve@steve-VirtualBox:/s/src/scripted/image$ fdisk -l test

Disk test: 3072 MB, 3072000000 bytes
255 heads, 63 sectors/track, 373 cylinders, total 6000000 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: 0x4b8bbe0f

Device Boot      Start         End      Blocks   Id  System
 test1   *        2048       67583       32768    c  W95 FAT32 (LBA)
 test2           67584      133119       32768   83  Linux
 test3          133120     5999999     2933440    5  Extended
 test5          135168     1708031      786432   83  Linux
 test6         1710080     3282943      786432   83  Linux
 test7         3284992     3416063       65536   83  Linux
 test8         3418112     3428351        5120   83  Linux
 test9         3430400     3440639        5120   83  Linux
 test10        3442688     3452927        5120   83  Linux
 test11        3454976     3465215        5120   83  Linux
 test12        3467264     3991551      262144   83  Linux
 test13        3993600     4255743      131072   83  Linux
 test14        4257792     4268031        5120   83  Linux
 test15        4270080     4280319        5120   83  Linux
 test16        4282368     5999999      858816   83  Linux
steve@steve-VirtualBox:/s/src/scripted/image$ sudo losetup /dev/loop0 test -o 34603008
steve@steve-VirtualBox:/s/src/scripted/image$ sudo mkfs.ext4 /dev/loop0
mke2fs 1.42 (29-Nov-2011)
Discarding device blocks: done                            
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
185472 inodes, 741552 blocks
37077 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=763363328
23 block groups
32768 blocks per group, 32768 fragments per group
8064 inodes per group
Superblock backups stored on blocks: 
    32768, 98304, 163840, 229376, 294912

Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (16384 blocks): done
Writing superblocks and filesystem accounting information: done 

steve@steve-VirtualBox:/s/src/scripted/image$ sudo losetup -d /dev/loop0
steve@steve-VirtualBox:/s/src/scripted/image$ fdisk -l test
Warning: invalid flag 0x0000 of partition table 5 will be corrected by w(rite)

Disk test: 3072 MB, 3072000000 bytes
255 heads, 63 sectors/track, 373 cylinders, total 6000000 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: 0x4b8bbe0f

Device Boot      Start         End      Blocks   Id  System
 test1   *        2048       67583       32768    c  W95 FAT32 (LBA)
 test2           67584      133119       32768   83  Linux
 test3          133120     5999999     2933440    5  Extended
steve@steve-VirtualBox:/s/src/scripted/image$ 

คำตอบ:


0

ลองเพิ่มบล็อกนับในmkfs.ext4คำสั่งของคุณ

sudo mkfs.ext4 /dev/loop0 32768

หากไม่มีมัน mkfs จะสร้างระบบไฟล์ที่มีขนาดสูงสุดและlosetup -o [offset]สร้างอุปกรณ์ที่เริ่มต้น[offset]แต่สิ้นสุดที่ส่วนท้ายของไฟล์ ดังนั้นพาร์ติชันอื่น ๆ จึงเสียหาย มันทำให้ตารางพาร์ทิชันเสียหายเนื่องจากคุณใช้พาร์ติชันเสริมซึ่งเก็บข้อมูลพาร์ติชันที่เหลืออยู่ที่ตำแหน่งของพาร์ติชันนั้น

อีกจุดหนึ่งคือการใช้ตารางพาร์ติชัน GUID (GPT) ซึ่งไม่ จำกัด จำนวนของพาร์ติชันดังนั้นจึงไม่ต้องการพาร์ติชันเสริม สิ่งนี้จะไม่แก้ปัญหาของคุณ แต่อาจง่ายกว่าในการจัดการพาร์ติชันเหล่านั้น (อาจเป็น LVM ด้วย แต่ฉันก็ไม่รู้)


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