Đầu tiên bạn phải tạo một tệp hình ảnh:
# 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
Sau đó, bạn phải tạo một phân vùng trên đó - bạn có thể sử dụng bất cứ công cụ mà bạn muốn, fdisk
, parted
, gparted
, tôi thích parted
, vì vậy:
# parted binary.img
Bạn phải tạo một bảng phân vùng trước và sau đó một phân vùng lớn:
(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
Bây giờ hãy nhìn:
(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
Nó có vẻ tốt,
Bạn muốn phóng to nó, vì vậy hãy thêm một số số không vào hình ảnh bằng cách sử dụng 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
Điều đó đã thêm 400M vào hình ảnh:
# 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
Như bạn có thể thấy, kích thước của hình ảnh là khác nhau (1468MB). Chia tay cũng có thể cho bạn thấy không gian trống trong hình ảnh. Nếu bạn muốn xem nó chỉ cần gõ print free
thay vì print
. Bây giờ bạn phải thêm không gian bổ sung vào hệ thống tập tin:
(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
và kiểm tra nó:
(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
Khá đẹp. Nếu bạn muốn thu nhỏ nó, chỉ cần làm điều tương tự:
(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
Bây giờ bạn có thể kiểm tra nếu phân vùng nhỏ hơn:
(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
Vâng, nó là.
Nếu bạn cố gắng thay đổi kích thước phân vùng khi có dữ liệu trên đó, bạn phải chú ý đến kích thước của dữ liệu vì khi bạn thu nhỏ nó quá nhiều, bạn sẽ gặp lỗi:
Error: Unable to satisfy all constraints on the partition
Sau khi thu nhỏ hệ thống tập tin, bạn cũng phải cắt một số tập tin. Nhưng điều này là khó khăn. Bạn có thể lấy giá trị từ chia 500M (END):
# dd if=./binary.img of=./binary.img.new bs=1M count=500
Nhưng điều này để lại một số không gian ở cuối tập tin. Tôi không chắc tại sao, nhưng hình ảnh hoạt động.
Và có một điều về việc gắn hình ảnh như vậy - bạn phải biết một phần bù để chuyển sang lệnh mount. Bạn có thể lấy phần bù từ, ví dụ, 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 (bắt đầu) x 512 (kích thước cung) = 1048576, vì vậy bạn phải sử dụng lệnh sau để gắn ảnh:
# mount -o loop,offset=1048576 binary.img /mnt