1. 디렉토리 확인

1
2
3
4
5
6
7
8
$ ls /data0*
/data01:
 
/data02:
 
/data03:
$
 
cs

* 위와 같이 /data01, /data02, /data03 가 조회되고 있고 /data01 디렉토리에 마운트를 하겠습니다.



2. 마운트 실행

1
$ sudo mount -t ext4 /dev/sdb1 /data01/
cs

* /dev/sdb1 은 새롭게 추가된 물리디스크에 파티션 설정을 한 디스크로 /data01 디렉토리와 마운트를 진행합니다.



3. 마운트 여부 확인

1
2
3
$ sudo mount |grep data01
/dev/sdb1 on /data01 type ext4 (rw,relatime,data=ordered)
 
cs

* 별다른 설정을 하지 않을 경우 부팅 시 마운트 해제된 상태가 됩니다.

* 이후의 설정은 부팅 시에도 자동으로 마운트가 설정되도록 합니다.


4. 디스크의 UUID 를 확인

1
2
3
4
5
6
7
8
9
10
$ sudo blkid
/dev/sr0: UUID="2017-08-01-11-30-13-00" LABEL="Ubuntu-Server 16.04.3 LTS amd64" TYPE="iso9660" PTUUID="13b1ab35" PTTYPE="dos"
/dev/sda1: UUID="d12d165b-6f73-412x-1104-9f5059fe8c7c" TYPE="ext2" PARTUUID="90a811ef-01"
/dev/sda5: UUID="SFfKYf-Xr0l-3bF8-A6gc-cDxH-eUeM-i8Ma3U" TYPE="LVM2_member" PARTUUID="90a811ef-05"
/dev/mapper/ubuntu--vg-root: UUID="16fe7a43-f5fd-430f-a9dc-f447eb6fadc6" TYPE="ext4"
/dev/mapper/ubuntu--vg-swap_1: UUID="126x654c-6dc0-196a-b0dc-d30c5dca3c42" TYPE="swap"
/dev/sdc1: UUID="0445ab70-16c0-41dc-9fa2-ea3a87e9c1bd" TYPE="ext4" PARTUUID="613a1c39-01"
/dev/sdb1: UUID="3b362b42-2b3b-4431-a6ca-5a64219ed3a5" TYPE="ext4" PARTUUID="6abd9b62-01"
/dev/sdd1: UUID="2ed06613-c8db-4129-8f2e-aa13b2d4x131" TYPE="ext4" PARTUUID="1011114x-01"
 
cs

* UUID 및 PARTUUID 의 값은 예시로 임의의 값입니다.



5. fstab 파일을 편집

1
2
$ sudo vi /etc/fstab
 
cs



6. fstab 파일에 디스크의 정보를 등록

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
<file system> <mount point>   <type>  <options>       <dump>  <pass>
/dev/mapper/ubuntu--vg-root /               ext4    errors=remount-ro       1
/boot was on /dev/sda1 during installation
UUID=d12d165b-6f73-412x-1104-9f5059fe8c7c /boot           ext2    defaults              2
/dev/mapper/ubuntu--vg-swap_1 none            swap    sw                    0
UUID=3b362b42-2b3b-4701-a6ca-5a64219ec1a5 /data01       ext4    defaults              0
UUID=0445ab70-16c0-45da-9fa2-ea3a87e9a5bd /data02       ext4    defaults
      0
UUID=2ed06613-c8db-4009-8f2e-aa13b2d4c038 /data03       ext4    defaults
      0
 
cs

* 위 4번에서 확인한 디스크 정보를 양식에 맞춰서 작성하고 저장합니다.

 ㄴ UUID

 ㄴ 마운트 포인트

 ㄴ 파일 시스템 타입


* 주의사항

 -> 부팅 시 해당 디스크가 예기치 못한 상황으로 존재하지 않는 경우 자동 마운트 실패 문제가 발생할 수 있습니다.


'Operating System > Linux' 카테고리의 다른 글

Ubuntu Server 설치  (0) 2017.10.12
SSH 생성 및 분배  (0) 2017.10.10
방화벽 ON / OFF  (0) 2017.09.28
host 파일 설정  (0) 2017.09.26
maven 설치  (0) 2017.09.26

+ Recent posts