CentOS를 실행하는 가상 머신에 새로 생성된 파티션을 마운트할 수 없습니다.

CentOS를 실행하는 가상 머신에 새로 생성된 파티션을 마운트할 수 없습니다.

CentOS 6.6에서 (32비트) 실행 중 입니다 VMware Workstation 10.0.3 build-1895310. 방금 VM 설정을 수정하여 HDD를 에서 이동했습니다.20GB도착하다30GB. 또한 sda4기본 시작 및 중지 실린더 번호를 사용하여 기본 유형의 새 파티션을 만들었습니다 .

fdisk /dev/sda다음을 반환합니다.

Disk /dev/sda: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0000fba6

Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          64      512000   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              64        2611    20458496   8e  Linux LVM
/dev/sda4            2611        3916    10483750   83  Linux

설치하려고 하면 다음을 사용합니다.마운트 -t ext4 /dev/sda4 /data, 다음 오류가 표시됩니다.

mount: wrong fs type, bad option, bad superblock on /dev/sda4,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

파일 시스템 유형을 얻으려면 다음 명령을 입력했습니다.df-T, 다음과 같은 출력이 있습니다.

Filesystem           Type  1K-blocks    Used Available Use% Mounted on
/dev/mapper/vg_box0-lv_root
                     ext4   17971068 4039580  13011936  24% /
tmpfs                tmpfs    514720     228    514492   1% /dev/shm
/dev/sda1            ext4     487652   66444    395608  15% /boot

답변1

새 파티션에 파일 시스템을 생성해야 합니다. 파티션을 생성했지만 해당 파티션에 파일 시스템이 없습니다(누락된 항목 참조 df -T).

그럼 mkfs -t ext4 /dev/sda4설치해 보세요

관련 정보