Go to documentation repository
To allocate the disk for recording, run the command as a root.
| Code Block |
|---|
sudo su |
| Code Block |
|---|
fdisk -l |
where
To delete the disk partition, do the following:
Go to the disk on which you want to delete a partition.
| Code Block |
|---|
fdisk /dev/sdb |
Delete the partition.
| Code Block |
|---|
d |
Specify the partition number.
| Code Block |
|---|
2 |
Save the changes.
| Code Block |
|---|
w |
To create apartition, do the following:
Go to the disk on which you want to create a partition.
| Code Block |
|---|
fdisk /dev/sdb |
Create the partition.
| Code Block |
|---|
n |
Specify the partition type: primary (p) or extended (e).
| Code Block |
|---|
p |
| Code Block |
|---|
1 |
Specify the partition size. G—gigabytes, M—megabytes, K—kilobytes.
| Code Block |
|---|
+5G |
Save the changes.
| Code Block |
|---|
w |
To create the archive as a disk, do the following:
Set the Format checkbox and click the Apply button.
| Note | ||
|---|---|---|
| ||
At this point you cannot change the archive size. |