GNU/Linux >> Belajar Linux >  >> Linux

Bisakah saya memperluas ukuran gambar disk berbasis file?

Pertama, Anda harus membuat file gambar:

# 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

Kemudian, Anda harus membuat partisi di atasnya -- Anda dapat menggunakan alat apapun yang Anda inginkan, fdisk , parted , gparted , saya lebih suka parted , jadi:

# parted binary.img

Anda harus membuat tabel partisi terlebih dahulu dan kemudian satu partisi besar:

(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

Sekarang mari kita lihat:

(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

Kelihatannya bagus,

Anda ingin memperbesarnya, jadi pertama-tama tambahkan beberapa angka nol pada gambar menggunakan 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

Itu menambahkan 400M ke gambar:

# 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

Seperti yang Anda lihat, ukuran gambarnya berbeda (1468MB). Parted juga dapat menampilkan ruang kosong pada gambar. Jika ingin melihatnya ketik saja print free bukannya print . Sekarang Anda harus menambahkan ruang ekstra ke sistem file:

(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

dan periksa:

(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

Cukup bagus. Jika Anda ingin mengecilkannya, lakukan hal serupa:

(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

Sekarang Anda dapat memeriksa apakah partisi lebih kecil:

(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

Ya, benar.

Jika Anda mencoba mengubah ukuran partisi ketika ada data di dalamnya, Anda harus memperhatikan ukuran data karena ketika Anda mengecilkannya terlalu banyak, Anda akan mendapatkan kesalahan:

Error: Unable to satisfy all constraints on the partition

Setelah mengecilkan sistem file, Anda juga harus memotong beberapa file. Tapi ini rumit. Anda dapat mengambil nilai dari parted 500M (END):

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

Tapi ini menyisakan sedikit ruang di akhir file. Saya tidak yakin mengapa, tetapi gambarnya berfungsi.

Dan ada satu hal tentang memasang gambar seperti itu - Anda harus mengetahui offset untuk diteruskan ke perintah mount. Anda bisa mendapatkan offset dari, misalnya, 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 (mulai) x 512 (ukuran sektor) =1048576 , jadi Anda harus menggunakan perintah berikut untuk memasang gambar:

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

Ya, ini mungkin - berfungsi seperti partisi. Saya mencoba yang berikut ini, yang berhasil:

Buat file asli, pasang, periksa, lepas pemasangan

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

Tumbuhkan

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

Tidak ada alasan mengapa mengecilkan file tidak akan bekerja dengan cara yang sama, tetapi mengecilkan file selalu lebih sulit daripada membesarkan file (dan, tentu saja, perlu dilakukan saat perangkat blok tidak dipasang, dll.)

Lihat tautan ini yang membahas tentang penggunaan qemu-nbd untuk memasang gambar qcow2


File jarang adalah pilihan yang baik untuk memperbesar/mengubah ukuran gambar disk secara dinamis.

Ini akan membuat file jarang 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

Gambar tidak menggunakan ruang disk apa pun,

# du -m sparse.img
0   sparse.img

tetapi memiliki ukuran 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

Anda dapat memformat dan memasangnya sebagai image disk biasa:

# 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

Sekarang, ubah ukuran menggunakan perintah yang sama untuk membuat hanya dengan mengubah parameter pencarian dengan ukuran gambar yang baru:

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

Seperti yang Anda lihat, gambar sekarang menjadi 2048M dan Anda dapat memperbesar partisi menggunakan parted atau alat lain pilihan Anda.

# 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

Sekarang nikmatilah!


Linux
  1. Tingkatkan ukuran disk sistem server cloud boot-from-volume

  2. Cara Meningkatkan Batas Ukuran Unduhan File di Apache

  3. Di mana file header <conio.h> di Linux? Mengapa saya tidak dapat menemukan <conio.h>?

  1. Bagaimana saya bisa melihat ukuran file dan direktori di linux?

  2. Bisakah saya menganggap ukuran long int selalu 4 byte?

  3. Apakah ada cara untuk menentukan ukuran file .bz2 yang didekompresi?

  1. Bagaimana saya bisa memasang gambar disk?

  2. Bagaimana saya bisa menemukan file terlama di pohon direktori

  3. Seberapa acak data pada disk RAID5?