क्या मैं फ़ाइल आधारित डिस्क छवि के आकार का विस्तार कर सकता हूं?


29

मैंने dd का उपयोग करके एक खाली डिस्क छवि बनाई, फिर मैंने इसे वास्तविक फाइल सिस्टम छवि बनाने के लिए mkfs का उपयोग किया। मैं बढ़ रहा हूं और इसका ठीक उपयोग कर रहा हूं। जरूरत पड़ने पर मुझे इस फाइल आधारित डिस्क छवि का विस्तार या सिकोड़ने में सक्षम होना चाहिए। क्या इस तरह से डिस्क छवि का आकार बढ़ाना संभव है? क्या इस फ़ाइल को बनाने का एक तरीका है डिस्क आधारित छवि में एक गतिशील आकार बदलने की सुविधा है जो वर्चुअल मशीन ड्राइव के साथ पाई जाती है।

जवाबों:


26

सबसे पहले आपको एक इमेज फाइल बनानी होगी:

# dd if=/dev/zero of=./binary.img bs=1M count=1000
1000+0 records in
1000+0 records out
1048576000 bytes (1.0 GB) copied, 10.3739 s, 101 MB/s

उसके बाद, आप उस पर एक विभाजन बनाने के लिए - आप उपयोग कर सकते हैं जो कुछ भी उपकरण आप चाहते हैं, fdisk, parted, gparted, मैं पसंद partedहै, तो:

# parted binary.img

आपको पहले एक विभाजन तालिका बनानी होगी और फिर एक बड़ा विभाजन करना होगा:

(parted) mktable                                                          
New disk label type? msdos      

(parted) mkpartfs
WARNING: you are attempting to use parted to operate on (mkpartfs) a file system.
parted's file system manipulation code is not as robust as what you'll find in
dedicated, file-system-specific packages like e2fsprogs.  We recommend
you use parted only to manipulate partition tables, whenever possible.
Support for performing most operations on most types of file systems
will be removed in an upcoming release.
Partition type?  primary/extended? primary
File system type?  [ext2]? fat32
Start? 1
End? 1049M

अब देखते हैं:

(parted) print
Model:  (file)
Disk /media/binary.img: 1049MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  1049MB  1048MB  primary  fat32        lba

अच्छा लग रहा है,

आप इसे बढ़ाना चाहते हैं, इसलिए मुट्ठी dd का उपयोग करके छवि में कुछ शून्य जोड़ते हैं:

# dd if=/dev/zero bs=1M count=400 >> ./binary.img
400+0 records in
400+0 records out
419430400 bytes (419 MB) copied, 2.54333 s, 165 MB/s
root:/media# ls -al binary.img 
-rw-r--r-- 1 root root 1.4G Dec 26 06:47 binary.img

इसने छवि में 400M जोड़ा:

# parted binary.img 
GNU Parted 2.3
Using /media/binary.img
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print                                                            
Model:  (file)
Disk /media/binary.img: 1468MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  1049MB  1048MB  primary  fat32        lba

जैसा कि आप देख सकते हैं, छवि का आकार अलग है (1468MB)। बिंबित आपको छवि में मुक्त स्थान दिखा सकता है। अगर आप इसे देखना चाहते हैं तो print freeइसके बजाय बस टाइप करें print। अब आपको फ़ाइल सिस्टम में अतिरिक्त स्थान जोड़ना होगा:

(parted) resize 1
WARNING: you are attempting to use parted to operate on (resize) a file system.
parted's file system manipulation code is not as robust as what you'll find in
dedicated, file-system-specific packages like e2fsprogs.  We recommend
you use parted only to manipulate partition tables, whenever possible.
Support for performing most operations on most types of file systems
will be removed in an upcoming release.
Start?  [1049kB]?
End?  [1049MB]? 1468M

और इसे जांचें:

(parted) print
Model:  (file)
Disk /media/binary.img: 1468MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  1468MB  1467MB  primary  fat32        lba

बहुत अच्छा। यदि आप इसे सिकोड़ना चाहते हैं, तो बस इसी तरह काम करें:

(parted) resize 1
WARNING: you are attempting to use parted to operate on (resize) a file system.
parted's file system manipulation code is not as robust as what you'll find in
dedicated, file-system-specific packages like e2fsprogs.  We recommend
you use parted only to manipulate partition tables, whenever possible.
Support for performing most operations on most types of file systems
will be removed in an upcoming release.
Start?  [1049kB]?
End?  [1468MB]? 500M

अब आप जांच सकते हैं कि विभाजन छोटा है या नहीं:

(parted) print
Model:  (file)
Disk /media/binary.img: 1468MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End    Size   Type     File system  Flags
 1      1049kB  500MB  499MB  primary  fat32        lba

हाँ यही है।

यदि आप उस डेटा के विभाजन का आकार बदलने की कोशिश करते हैं, तो आपको डेटा के आकार पर ध्यान देना होगा क्योंकि जब आप इसे बहुत अधिक सिकोड़ते हैं, तो आपको एक त्रुटि मिलेगी:

Error: Unable to satisfy all constraints on the partition

फाइल सिस्टम को सिकोड़ने के बाद, आपको फाइल को कुछ कट करना होगा। लेकिन यह मुश्किल है। आप भाग 500M (END) से मान ले सकते हैं:

# dd if=./binary.img of=./binary.img.new bs=1M count=500

लेकिन यह फ़ाइल के अंत में कुछ जगह छोड़ देता है। मुझे यकीन नहीं है कि क्यों, लेकिन छवि काम करती है।

और ऐसी छवि को बढ़ाने के बारे में एक बात है - आपको माउंट कमांड को पास करने के लिए एक ऑफसेट जानना होगा। उदाहरण के लिए, fdisk से आप ऑफसेट प्राप्त कर सकते हैं:

# fdisk -l binary.img

Disk binary.img: 1468 MB, 1468006400 bytes
4 heads, 32 sectors/track, 22400 cylinders, total 2867200 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: 0x000f0321

     Device Boot      Start         End      Blocks   Id  System
binary.img1            2048     2867198     1432575+   c  W95 FAT32 (LBA)

2048 (प्रारंभ) x 512 (सेक्टर आकार) = 1048576, ताकि आपको छवि को माउंट करने के लिए निम्नलिखित कमांड का उपयोग करना पड़े:

# mount -o loop,offset=1048576 binary.img /mnt

1
जब आप लिखते हैं "लेकिन यह फ़ाइल के अंत में कुछ जगह छोड़ता है। मुझे यकीन नहीं है कि क्यों, लेकिन छवि काम करती है।" मुझे लगता है कि यह इस तथ्य के कारण है कि आप माप की विभिन्न इकाइयों का उपयोग कर रहे हैं। बिदाई में, आपके पास 500MB है (parted 1MB में 1000 * 1000 बाइट्स है), इसलिए 500000000 बाइट्स; dd में आप 1Mx500 = 500M कॉपी करते हैं, जहाँ M 1024 * 1024 बाइट्स के लिए खड़ा है, इसलिए आप 524288000 बाइट्स कॉपी करते हैं। अंतर फ़ाइल के अंत में आपके द्वारा छोड़ा गया स्थान होना चाहिए। ठीक करने के लिए, आप यहाँ बताए गए सॉफ़्टवेयरबरीरी के रूप में ट्रंकट के साथ कर सकते हैं । shrinking-images-on-linux या खानों की इकाइयों को बदल सकते हैं। पक्षपाती या dd में
चरण

अब इसके partedसाथ प्रयोग करने के लिए अप्रासंगिक है resize: "त्रुटि: आकार कमांड को आंशिक रूप से 3.0 में हटा दिया गया है"
अब्दिल्लाह

15

हां, यह संभव है - यह विभाजन की तरह ही काम करता है। मैंने निम्नलिखित कोशिश की, जो काम किया:

मूल फ़ाइल बनाएं, इसे माउंट करें, जांचें, इसे अनमाउंट करें

dd if=/dev/zero of=test.file count=102400 
mkfs.ext3 test.file 
mount test.file /m4 -o loop
df
umount /m4

इसे उगाओ

dd if=/dev/zero count=102400 >> test.file
mount test.file /m4 -o loop
df
resize2fs /dev/loop0
df

ऐसा कोई कारण नहीं है कि किसी फ़ाइल को सिकोड़ना समान रूप से काम नहीं करेगा, लेकिन किसी फ़ाइल को सिकोड़ना हमेशा अधिक कठिन होता है, फिर फ़ाइल को बढ़ाना (और, निश्चित रूप से, ब्लॉक डिवाइस के माउंट नहीं होने पर आदि की आवश्यकता होती है)

इस लिंक पर एक नज़र डालें जो qcow2 छवियों को माउंट करने के लिए qemu-nbd का उपयोग करने के बारे में बात करता है


महान, यह बिल्कुल वही नुस्खा है जिसकी मुझे ज़रूरत थी। हालांकि, e2fsck -f test.fileआकार बदलने से पहले मुझे (मेरी छवि फ़ाइल पर) चलाने की आवश्यकता थी । एक और बात: NTFS विभाजन पर संग्रहीत ड्राइव छवि पर 70G जोड़ने में dd ... >> drive_imageकुछ 10 मिनट लग सकते हैं।
टॉमस गैंडर

टॉमस: seek=दूसरे उत्तर से dd परम का उपयोग करें
विलेम

6

स्पार्स फाइलें डायनामिक बढ़ने / डिस्क छवियों का आकार बदलने के लिए एक अच्छा विकल्प हैं।

यह 1024M विरल फ़ाइल बनाएगा:

# dd if=/dev/zero of=sparse.img bs=1M count=0 seek=1024
0+0 records in
0+0 records out
0 bytes (0 B) copied, 0.000565999 s, 0.0 kB/s

छवि किसी भी डिस्क स्थान का उपयोग नहीं कर रही है,

# du -m sparse.img
0   sparse.img

लेकिन इसका आकार 1024M है।

# ls -l sparse.img
-rw-rw-r--. 1 root root 1073741824 Sep 22 14:22 sparse.img

# du -m --apparent-size sparse.img
1024    sparse.img

आप इसे एक नियमित डिस्क छवि के रूप में प्रारूपित और माउंट कर सकते हैं:

# parted sparse.img 
GNU Parted 2.1
Using /tmp/sparse.img
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) mktable                                                          
New disk label type? msdos                                                
(parted) mkpartfs                                                         
WARNING: you are attempting to use parted to operate on (mkpartfs) a file system.
parted's file system manipulation code is not as robust as what you'll find in
dedicated, file-system-specific packages like e2fsprogs.  We recommend
you use parted only to manipulate partition tables, whenever possible.
Support for performing most operations on most types of file systems
will be removed in an upcoming release.
Partition type?  primary/extended? primary                                
File system type?  [ext2]? fat32                                          
Start? 1                                                                  
End? 1024M                                                                
(parted) print                                                            
Model:  (file)
Disk /tmp/sparse.img: 1074MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
 1      1049kB  1024MB  1023MB  primary  fat32        lba

# du -m sparse.img 
2   sparse.img

अब, छवि के नए आकार के साथ बस चाहने वाले पैरामीटर को बदलने के लिए उसी आदेश का उपयोग करके आकार बदलें:

dd if=/dev/zero of=sparse.img bs=1M count=0 seek=2048

जैसा कि आप देख सकते हैं, छवि अब 2048M है और आप अपनी पसंद के विभाजन या अन्य उपकरण का उपयोग करके विभाजन को बड़ा कर सकते हैं।

# du -m --apparent-size sparse.img 
2048    sparse.img


# parted sparse.img 
GNU Parted 2.1
Using /tmp/sparse.img
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print free                                                       
Model:  (file)
Disk /tmp/sparse.img: 2147MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
        16.4kB  1049kB  1032kB           Free Space
 1      1049kB  1024MB  1023MB  primary  fat32        lba
        1024MB  2147MB  1123MB           Free Space

(parted)                               

# du -m sparse.img 
2   sparse.img

अब इसका आनंद लो!


अच्छी तरह से किया। मुझे लगता है कि विरल फाइलों का उपयोग किया जाता है।
टोनीएच
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.