Vous devez d'abord créer un fichier image:
# 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
Ensuite, vous devez créer une partition sur elle - vous pouvez utiliser ce que l' outil que vous voulez, fdisk
, parted
, gparted
, je préfère parted
, donc:
# parted binary.img
Vous devez d'abord créer une table de partition puis une grande partition:
(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
Voyons maintenant:
(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
Ça à l'air bon,
Vous voulez l'agrandir, alors ajoutez d'abord des zéros à l'image en utilisant 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
Cela a ajouté 400 millions à l'image:
# 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
Comme vous pouvez le voir, la taille de l'image est différente (1468 Mo). Parted peut également vous montrer de l'espace libre dans l'image. Si vous voulez le voir, tapez simplement print free
au lieu de print
. Vous devez maintenant ajouter l'espace supplémentaire au système de fichiers:
(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
et vérifiez-le:
(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
Pas mal. Si vous voulez le réduire, faites simplement la même chose:
(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
Vous pouvez maintenant vérifier si la partition est plus petite:
(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
Oui, ça l'est.
Si vous essayez de redimensionner la partition lorsque des données s'y trouvent, vous devez faire attention à la taille des données, car lorsque vous la réduisez trop, vous obtiendrez une erreur:
Error: Unable to satisfy all constraints on the partition
Après avoir réduit le système de fichiers, vous devez également couper une partie du fichier. Mais c'est délicat. Vous pouvez prendre la valeur de 500M séparés (FIN):
# dd if=./binary.img of=./binary.img.new bs=1M count=500
Mais cela laisse un peu d'espace à la fin du fichier. Je ne sais pas pourquoi, mais l'image fonctionne.
Et il y a une chose à propos du montage d'une telle image - vous devez connaître un décalage pour passer à la commande mount. Vous pouvez obtenir le décalage, par exemple, depuis 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 (début) x 512 (taille du secteur) = 1048576, vous devez donc utiliser la commande suivante pour monter l'image:
# mount -o loop,offset=1048576 binary.img /mnt