Hello, how can I increase available diskspace in Zabbix 3.0 appliance (Hyper-V 2008)?
I read the manual:
It's ok, I entered "u", and:
I entered "d" to delete partition, it's ok, but when I enter "n", fdisk asks me enter partition number (1-5). What number I should to enter?
I tried number "5", for example.
So I should delete/create partition number "1", not "5"?
Then I quit with "q", enter "fdisk /dev/sda" > "u" > "d", then tried number "1".
What partition I should increase? What parameters I should enter in fdisk? Thank you.
I read the manual:
Start fdisk to change the partition size. As root, execute:
fdisk /dev/sda
This will start fdisk on disk sda. Next, switch to sectors by issuing:
u
fdisk /dev/sda
This will start fdisk on disk sda. Next, switch to sectors by issuing:
u
Then delete the existing partition and create a new one with the desired size. In the majority of cases you will accept the available maximum, which will expand the filesystem to whatever size you made available for the virtual disk. To do so, enter the following sequence in fdisk prompt:
d
n
p
1
(accept default 63)
(accept default max)
d
n
p
1
(accept default 63)
(accept default max)
I tried number "5", for example.
Command (m for help): d
Partition number (1-5): 5
Command (m for help): n
Partition type:
p primary (1 primary, 1 extended, 2 free)
l logical (numbered from 5)
Select (default p): p
Partition number (1-4, default 3): 1
Partition 1 is already defined. Delete it before re-adding it.
Partition number (1-5): 5
Command (m for help): n
Partition type:
p primary (1 primary, 1 extended, 2 free)
l logical (numbered from 5)
Select (default p): p
Partition number (1-4, default 3): 1
Partition 1 is already defined. Delete it before re-adding it.
Then I quit with "q", enter "fdisk /dev/sda" > "u" > "d", then tried number "1".
Command (m for help): d
Partition number (1-5): 1
Command (m for help): n
Partition type:
p primary (0 primary, 1 extended, 3 free)
l logical (numbered from 5)
Select (default p): p
Partition number (1-4, default 1): 1
First cylinder (1-20886, default 1):
Partition number (1-5): 1
Command (m for help): n
Partition type:
p primary (0 primary, 1 extended, 3 free)
l logical (numbered from 5)
Select (default p): p
Partition number (1-4, default 1): 1
First cylinder (1-20886, default 1):
Comment