2016-06-02 2 views
-2

저는 리눅스 관리자 활동에 초보입니다. 왜/dev/sda3가 하나의 VM에 나타나는지. 하지만 그것은 다른 VM에 표시되지 않습니다. 어디로 가야할지 잘 모르겠다. 누군가 도와 주실 수 있습니까? 다른 VM에서하나의 VM에는/dev/sda3이 표시되지 않지만 다른 VM에는 동일하게 표시됩니다.

[[email protected] ~]# fdisk -l 

Disk /dev/sda: 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: dos 
Disk identifier: 0x0009a61a 

    Device Boot  Start   End  Blocks Id System 
/dev/sda1 *  2048  1026047  512000 83 Linux 
/dev/sda2   1026048 33554431 16264192 8e Linux LVM 

는 :

[[email protected] ~]# fdisk -l 

Disk /dev/sda: 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: dos 
Disk identifier: 0x0009a61a 

    Device Boot  Start   End  Blocks Id System 
/dev/sda1 *  2048  1026047  512000 83 Linux 
/dev/sda2   1026048 33554431 16264192 8e Linux LVM 
/dev/sda3  33554432 104857599 35651584 8e Linux LVM 

답변

0

당신은뿐만 아니라 분할되지 않은 공간을 표시하는 유틸리티를 사용할 필요가 예컨대에 cfdisk 나는 세 개의 파티션을 가지고 8 기가 바이트 SD 카드를 분할 한 예 :

. 우리는뿐만 아니라 분할되지 않은 공간 볼 수 있습니다

$ sudo fdisk -l /dev/sdc 

Disk /dev/sdc: 8068 MB, 8068792320 bytes 
249 heads, 62 sectors/track, 1020 cylinders, total 15759360 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 identifier: 0x4c2671d0 

    Device Boot  Start   End  Blocks Id System 
/dev/sdc1 *  32776  65543  16384 c W95 FAT32 (LBA) 
/dev/sdc2   65544  7438343  3686400 83 Linux 
/dev/sdc3   2048  32775  15364 a2 Unknown 

에 cfdisk으로 : fdisk를 같이이 세 개의 파티션의 총 크기는 8기가바이트보다 작은 여기

$ sudo cfdisk -P s /dev/sdc 
Partition Table for /dev/sdc 

       First  Last 
# Type  Sector  Sector Offset Length Filesystem Type (ID) Flag 
-- ------- ----------- ----------- ------ ----------- -------------------- ---- 
    Pri/Log   0  2047*  0#  2048*Free Space   None 
3 Primary  2048*  32775*  0  30728*Unknown (A2)   None 
1 Primary  32776*  65543*  0  32768*W95 FAT32 (LBA) (0C) Boot 
2 Primary  65544* 7438343*  0  7372800*Linux (83)   None 
    Pri/Log  7438344* 15759359*16*Free Space   None 

당신이 볼 수가있다 디스크의 시작과 끝 모두에서 사용 가능한 여유 공간입니다.

일부 그래픽 유틸리티, 예컨대 GParted와 또한 분할되지 않은 공간

$ sudo gparted /dev/sdc 

gparted showing unpartitioned/free space on disk

을 표시 할 수 있습니다
관련 문제