सबसे पहले आपको एक इमेज फाइल बनानी होगी:
# 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