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 |
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이 시점에서는 보관 파일의 크기를 변경할 수 없습니다. |