MBR GPT MBR GPT Supports disks larger than 2TiB. Supports partitions larger than 2TiB. Supports more than four partitions, with no distinction between primary, extended, and logical partitions. Uses GUIDs as type codes, which means there’s less risk of conflicting/duplicate codes. Uses LBA addressing exclusively, compared to MBR’s dual use of LBA and CHS. (Even […]
[Linux] iscsi(target)를 이용한 공유 디스크 구성
iscsi(target)를 이용한 공유 디스크 구성 iscsi 를 이용한 공유 디스크를 구성한다. TAC 와 같은 Active-Active DB Cluster 를 구성하는 경우, 스토리지 서버 (iscsi target server) 1 대와 DB 서버 2 대 총 3대 의 linux 서버가 필요하다. 스토리지 서버(target server)에서 아래와 같이 /dev/targetcli/lun01 로 이름지어진 block type device 인 lv 를 생성한다. DB 서버(iscsi client) […]
[Linux] NFS server/client installation
NFS server/client installation Package Install (Server/Client 공통) yum install nfs-utils systemctl enable rpcbind systemctl enable nfs-server systemctl enable nfs-lock systemctl enable nfs-idmap systemctl start rpcbind systemctl start nfs-server systemctl start nfs-lock systemctl start nfs-idmap systemctl stop firewalld Server 작업, 폴더 공유 공유 대상 폴더 생성 mkdir /nfs_dir 공유 허용할 호스트 지정 #vi /etc/exports /nfs_dir 192.168.xxx.xxx(rw,sync,no_root_squash,no_all_squash) […]
[Linux] How to mount NTFS on CentOS
How to mount NTFS on CentOS Make sure that you have the rpmforge repo installed yum install fuse fuse-ntfs-3g yum –enablerepo=rpmforge install fuse fuse-ntfs-3g For CentOS 7 or 6, the EPEL repository is carrying later NTFS packages, EPEL is alose usable for CentOS 5. yum install ntfs-3g yum –enablerepo epel install ntfs-3g
[Filesystem] RAID
RAID Redundant Array of Independent Disks or Redundant Array of Inexpensive Disks JBOD JBOD로 구성된 디스크는 데이터를 순차적으로 저장, Disk1부터 Disk2, …, Disk5의 순서로 저장한다. 공간 활용도가 100%이며, 확장이 쉽다. 그렇지만 성능 개선은 없으며, 디스크가 1개라도 고장나면 모든 데이터가 손실된다. RAID 0 모든 볼륨 디스크에 데이터를 저장하며, 가장 빠른 RAID 모드이다. 디스크 셋을 추가하는 만큼 […]