dev/linux

리눅스 외장 스토리지 마운트 Linux mount external storage

재삐신생 2021. 8. 30. 16:33
반응형

클라우드 서버 이용중, 추가 공간이 필요하여, 외장 스토리지를 신청함.

 

이후 os 설정은 알아서 해야할터..

 

1. 일단 디스크를 확인하자.

fidsk -l

-----

Disk /dev/vdb: 107.4 GB, 107374182400 bytes, 209715200 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

-----

새로 추가된 녀석을 찾음, 필자의 경우 /dev/vdb

 

2. fdisk로 파티셔닝 작업

fdisk /dev/vdb

-----

Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0xba71a8b6.

Command (m for help): m
Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   g   create a new empty GPT partition table
   G   create an IRIX (SGI) partition table
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)

-----

-> n을 눌러러 파티션을 추가, p를 눌러 primary 선택 후, 1눌러서 파티션번호 1번 할당, 시작/끝 센터는 파티션을 나눌것이 아니므로 enter enter

(필자의 경우 100기가 디스크를 그대로 한개 파티션으로 만듦)

이후 w를 눌러서 저장하고 종료

 

3. 디스크 포맷

필자는 ext4로 포맷할 계획이다.

mkfs -t ext4 /dev/vdb

-----

mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
6553600 inodes, 26214400 blocks
1310720 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2174746624
800 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000, 7962624, 11239424, 20480000, 23887872

Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

-----

문제없이 진행

 

4. 마운트

mkdir /docker-data
mount /dev/vdb /docker-data

필자는 root에 docker-data 디렉토리에 마운트 함.

 

5. 확인

df -h

-----

/dev/vdb         99G   61M   94G   1% /docker-data

-----

정상적으로 마운트 되었음을 확인

 

6. 시스템 부팅후 자동 마운트 설정 fstab

vi /etc/fstab

-----

#
# /etc/fstab
# Created by anaconda on Mon Sep  5 11:52:12 2016
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=f13d84b4-c756-4d89-9d5e-6b534397aa14 /                       xfs     defaults        0 0

-----

추가로 입력을 해주려니 UUID??

디스크 uuid를 확인하자.

ls -l /dev/disk/by-uuid

그리고 위 파일을 수정하여 설정

설정 순서는

[Device] [디렉토리] [파일 시스템 형식] [파일 시스템 고유 옵션] [dump 작동 여부] [무결성체크여부]

e.g.

UUID=a5405b0f-783c-4c7d-bad5-24310aacee71 /docker-data            ext4    defaults        1 2

[dump 작동 여부] : dump가 필요하면 1, 필요없으면 0

[무결성체크여부] : 부팅시 디스크검사 여부 필요없으면 0, 필요하면 1이상값(순서)

 

재부팅후 마운트여부 확인해보자.

 

반응형

'dev > linux' 카테고리의 다른 글

Docker Compose 설치 (Ubuntu 22.04)  (0) 2023.12.04
[CentOS] Install mongodb 5.0 on CentOS8  (0) 2022.04.18
Docker Data 디렉토리 변경  (1) 2021.06.16
centos7 install golang 1.16.3  (0) 2021.04.14
CentOS7 Minimal - setup 커맨드 활성화  (0) 2021.02.03