Centos7 LVM 디스크 파티션

Centos7 LVM 디스크 파티션

저는 현재 개발 중이며 일부 웹사이트를 게시하고 싶은 작은 VPS(Centos 7)를 가지고 있습니다.

제안된 대로 다른 규칙을 적용 할 수 /var/tmp있도록 디스크의 일부를 분할하여 배치하고 싶습니다 . 출력은 다음과 같습니다./tmpnoexecfdisk -l

[root@vps59119 ~]# fdisk -l
WARNING: fdisk GPT support is currently new, and therefore in an experimental 
phase. Use at your own discretion.

Disk /dev/ploop20162: 53.7 GB, 53687091200 bytes, 104857600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: gpt
Disk identifier: 86EB4992-47F0-42D4-98BB-81D8A91A0DFB


#         Start          End    Size  Type            Name
 1         2048    104855552     50G  Linux filesyste

출력은 df -h | grep ^/dev다음과 같습니다.

[root@vps59119 ~]# df -h | grep ^/dev
/dev/ploop20162p1   50G  901M   47G   2% /

/제가 아는 한, 내 PV 아래에는 대용량 디스크 파티션( )이 1개만 있습니다./dev/ploop20162p1

공간을 분할하고 fdisk /dev/ploop20162p1새 파티션을 실행하고 생성하려고 하면 다음 오류가 발생합니다.

[root@vps59119 ~]# fdisk /dev/ploop20162p1
Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0xfabde285.

Command (m for help): n
Partition type:
   p   primary (0 primary, 0 extended, 4 free)
   e   extended
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-104853504, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-104853504, default 104853504): +5G
Partition 1 of type Linux and of size 5 GiB is set

Command (m for help): w
fdisk: cannot write disk label: Bad file descriptor

관련 정보