0

I have disk space allocated as per below.

Model: INTEL RS2BL040 (scsi)
Disk /dev/sda: 1998GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Number  Start   End     Size    Type     File system     Flags
 1      1049kB  512MB   511MB   primary  ext3            boot
 2      512MB   922GB   922GB   primary  ext4
 3      922GB   1998GB  1076GB  primary  linux-swap(v1)
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0   1,8T  0 disk
├─sda1   8:1    0   487M  0 part /boot
├─sda2   8:2    0 858,3G  0 part /
└─sda3   8:3    0  1002G  0 part [SWAP]

I would like to change my swap partition to 32GB and add that left over space to the sda2 drive how can I do this from a command line.

Thanks

1 Answers1

-1

You can't resize while Ubuntu is running.
Here is the easiest solution:

  1. Download GParted.
  2. Make a boot to CD or USB then boot it.
  3. Resize the 1TB swap partition.

Note: swap = RAM + 2.

BeGood
  • 539