GNU/Linux >> Linux Esercitazione >  >> Linux

Posso espandere le dimensioni di un'immagine disco basata su file?

Per prima cosa devi creare un file immagine:

# 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

Quindi, devi creare una partizione su di esso:puoi usare qualsiasi strumento tu voglia, fdisk , parted , gparted , preferisco parted , quindi:

# parted binary.img

Devi prima creare una tabella delle partizioni e poi una grande partizione:

(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

Ora vediamo:

(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

Sembra buono,

Vuoi ingrandirla, quindi prima aggiungi degli zeri all'immagine usando 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

Ciò ha aggiunto 400 milioni all'immagine:

# 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

Come puoi vedere, la dimensione dell'immagine è diversa (1468 MB). Parted può anche mostrarti lo spazio libero nell'immagine. Se vuoi vederlo digita print free invece di print . Ora devi aggiungere lo spazio extra al filesystem:

(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

e controlla:

(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

Molto carino. Se vuoi rimpicciolirlo, fai una cosa simile:

(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

Ora puoi controllare se la partizione è più piccola:

(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

Sì, lo è.

Se provi a ridimensionare la partizione quando i dati sono su di essa, devi prestare attenzione alla dimensione dei dati perché quando li rimpicciolisci troppo, otterrai un errore:

Error: Unable to satisfy all constraints on the partition

Dopo aver ridotto il file system, devi anche tagliare parte del file. Ma questo è complicato. Potresti prendere il valore da parted 500M (END):

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

Ma questo lascia un po' di spazio alla fine del file. Non so perché, ma l'immagine funziona.

E c'è una cosa nel montare tale immagine:devi conoscere un offset da passare al comando mount. Puoi ottenere l'offset da, ad esempio, 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 (inizio) x 512 (dimensione settore) =1048576 , quindi devi usare il seguente comando per montare l'immagine:

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

Sì, è possibile:funziona proprio come una partizione. Ho provato quanto segue, che ha funzionato:

Crea il file originale, montalo, controlla, smontalo

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

Coltivalo

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

Non c'è motivo per cui ridurre un file non funzioni allo stesso modo, ma ridurre un file è sempre più difficile che far crescere un file (e, ovviamente, deve essere fatto quando il dispositivo a blocchi non è montato, ecc.)

Dai un'occhiata a questo link che parla dell'uso di qemu-nbd per montare immagini qcow2


I file sparsi sono una buona scelta per l'ingrandimento/ridimensionamento dinamico delle immagini del disco.

Questo creerà un file sparse di 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

L'immagine non utilizza spazio su disco,

# du -m sparse.img
0   sparse.img

ma ha la dimensione apparente di 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

Puoi formattarlo e montarlo come una normale immagine disco:

# 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

Ora, ridimensiona usando lo stesso comando per creare semplicemente cambiando il parametro di ricerca con la nuova dimensione dell'immagine:

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

Come puoi vedere, l'immagine ora è 2048 M e puoi ingrandire la partizione usando parted o un altro strumento a tua scelta.

# 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

Ora divertiti!


Linux
  1. Aumenta le dimensioni di un disco di sistema del server di avvio dal volume del cloud

  2. Dove posso trovare il file buildinfo.sh?

  3. Come ottenere la dimensione di tar.gz nel file (MB) in python

  4. Dov'è il file di intestazione <conio.h> su Linux? Perché non riesco a trovare <conio.h>?

  5. C'è un modo per determinare la dimensione decompressa di un file .bz2?

In che modo il comando stat calcola i blocchi di un file?

Come posso vedere la dimensione dei file e delle directory in Linux?

Come posso anteporre una stringa all'inizio di ogni riga in un file?

Posso presumere che la dimensione di long int sia sempre di 4 byte?

Come posso montare un'immagine disco?

Qual è il limite del n. di partizioni posso avere?