글러스터 구성하다가 아래와 같이 대용량 디스크에서 파티셔닝 하다가 나타나는 문제점에 대해서는
잘 정리되어 있는 문서입니다...
=======================================================================================
참조 : http://blog.seabow.pe.kr/?p=2132
Linux 에서 fdisk -l 을 하게되면
Partition “X” does not end on cylinder boundary. 라는 문구를 볼 수 있다.
ex)
Device Boot Start End Blocks Id System
/dev/sda1 * 1 26 204800 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2 26 287 2097152 83 Linux
왜 위와 같은 문구를 출력 하는 것일까?
파티셔닝 작업에서는 LBA (Logical Block Addressing)기반으로 파티셔닝을 한다.
그러나 fdisk -l 상에서는 CHS (Cylinder/Head/Sector)기반으로 결과를 보여 줌으로써 위와 같은 메시지가 출력되는 것 이다.
이를 회피하는 방법?
$ sfdisk -uS -l /dev/Device
Disk /dev/sda: 9726 cylinders, 255 heads, 63 sectors/track
Units = sectors of 512 bytes, counting from 0
Device Boot Start End #sectors Id System
/dev/sda1 * 63 409662 409600 83 Linux
/dev/sda2 409663 4603966 4194304 83 Linux
/dev/sda3 4603967 156248189 151644223 8e Linux LVM
/dev/sda4 0 - 0 0 Empty
참고 자료 :
Link 2 : http://www.symantec.com/business/support/index?page=content&id=TECH164072
Link 3 : http://www.novell.com/support/kb/doc.php?id=7005639
'Linux 이야기. > LInux Article.' 카테고리의 다른 글
CentOS and Red Hat team up 이 주는 의미는 ?? (0) | 2014.01.18 |
---|---|
ntp설정 (0) | 2013.11.22 |
서버가 응답이 없어요..INfo:task <process>:<pid> lock for more than 120 seconds" (0) | 2013.04.04 |
튜닝을 위한 리눅스 커널 파라메터들 (0) | 2013.03.29 |
리눅스 3.7 커널 릴리즈: TCP Fast Open, vxLan 지원 (0) | 2012.12.28 |