Bạn không thể làm điều này với GParted, nhưng bạn có thể sử dụng ntfsresize
lệnh trực tiếp trên ảnh đĩa.
Đầu tiên, sao chép hình ảnh đĩa. Bạn có thể tìm tên thiết bị đĩa bằng cách sử dụng blkid
hoặc gParted, rồi chạy:
sudo dd if=<disk device> of=<image file>
Ví dụ:
$ sudo dd if=/dev/sda2 of=disk.img
1000000+0 records in
1000000+0 records out
512000000 bytes (512 MB) copied, 9.33361 s, 54.9 MB/s
Sau đó, xác minh xem bạn có thể thay đổi kích thước của nó theo kích thước bạn cần bằng cách chạy không:
ntfsresize -i <image file>
Ví dụ:
$ ntfsresize -i disk.img
ntfsresize v2011.4.12 (libntfs-3g)
Device name : disk.img
NTFS volume version: 3.1
Cluster size : 4096 bytes
Current volume size: 511996416 bytes (512 MB)
Current device size: 512000000 bytes (512 MB)
Checking filesystem consistency ...
100.00 percent completed
Accounting clusters ...
Space in use : 4 MB (0.6%)
Collecting resizing constraints ...
You might resize at 3035136 bytes or 4 MB (freeing 508 MB).
Please make a test run using both the -n and -s options before real resizing!
Trong ví dụ này, tôi có thể thay đổi kích thước xuống còn 4 MB vì tôi chỉ tạo một hình ảnh đĩa trống cho mục đích minh họa!
Bây giờ bạn có thể thực hiện chạy thử nếu bạn muốn, mặc dù điều đó không thực sự cần thiết vì bạn đang vận hành trên một hình ảnh. Bạn có thể xác định kích thước bằng kilobyte, megabyte hoặc gigabyte bằng cách thêm một k
, M
hoặc G
, tương ứng:
ntfsresize -cnvs <size> <image file>
Ví dụ:
$ ntfsresize -cnvs 256M disk.img
ntfsresize v2011.4.12 (libntfs-3g)
Không có đầu ra là đầu ra tốt! Bây giờ làm điều đó thật sự:
ntfsresize -vs <size> <image file>
Ví dụ cuối cùng:
$ ntfsresize -vs 256M disk.img
ntfsresize v2011.4.12 (libntfs-3g)
Device name : disk.img
NTFS volume version: 3.1
Cluster size : 4096 bytes
Current volume size: 511996416 bytes (512 MB)
Current device size: 512000000 bytes (512 MB)
New volume size : 255996416 bytes (256 MB)
Checking for bad sectors ...
Checking filesystem consistency ...
100.00 percent completed
Accounting clusters ...
Space in use : 4 MB (0.6%)
Collecting resizing constraints ...
Needed relocations : 625 (3 MB)
WARNING: Every sanity check passed and only the dangerous operations left.
Make sure that important data has been backed up! Power outage or computer
crash may result major data loss!
Are you sure you want to proceed (y/[n])? y
Schedule chkdsk for NTFS consistency check at Windows boot time ...
Resetting $LogFile ... (this might take a while)
Relocating needed data ...
Relocate record 1:0x80:00000001:0x00000000:0x0000f423 --> 0x00007a11
Relocate record 2:0x80:00000624:0x00000000:0x0000f424 --> 0x00007a12
100.00 percent completed
Updating $BadClust file ...
Updating $Bitmap file ...
Updating Boot record ...
Syncing device ...
Successfully resized NTFS on device 'disk.img'.
You can go on to shrink the device for example with Linux fdisk.
IMPORTANT: When recreating the partition, make sure that you
1) create it at the same disk sector (use sector as the unit!)
2) create it with the same partition type (usually 7, HPFS/NTFS)
3) do not make it smaller than the new NTFS filesystem size
4) set the bootable flag for the partition if it existed before
Otherwise you won't be able to access NTFS or can't boot from the disk!
If you make a mistake and don't have a partition table backup then you
can recover the partition table by TestDisk or Parted's rescue mode.
Đó là nó! Bây giờ bạn có thể sao chép hình ảnh đĩa đó vào thiết bị mới.