본문 바로가기
공부/프로그래밍

[linux-centos7] 디스크 마운트(mount)

by demonic_ 2018. 10. 20.
반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# 디스크 확인
fdisk -l
 
# 마운트가 안된 디스크 확인
/dev/sdb1
 
# 마운트 및 파티션 지정
fdisk /dev/sdb1
 
The device presents a logical sector size that is smaller than
the physical sector size. Aligning to a physical sector (or optimal
I/O) size boundary is recommended, or performance may be impacted.
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.
 
 
Command (m for help): n
Partition type:
   p   primary (1 primary, 0 extended, 3 free)
   e   extended
Select (default p): 1
Invalid partition type '1'
 
Command (m for help): p
 
Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes, 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk label type: dos
Disk identifier: 0x5c35f85c
 
   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048  1953521663   976759808    7  HPFS/NTFS/exFAT
 
Command (m for help): w
The partition table has been altered!
 
Calling ioctl() to re-read partition table.
Syncing disks.
 
 
# 파티션 포멧
mkfs -t ext4 /dev/sdb1
 
 
# 마운트
mkdir /DATA
chmod 777 /DATA
mount /dev/sdb1 /DATA

 
# 확인
df -h
 
...
/dev/sdb1                917G   77M  871G   1/DATA
 
 
 
################################# 영구 마운트
# blkid 명령어를 이용해 UUID 값 확인
blkid
 
# /dev/sdb1 로 시작하는 UUID 를 찾는다.
...
/dev/sdb1: UUID="93bbfeee-xxxxxxx" TYPE="ext4"
 
 
# 등록
vi /etc/fstab
 
# 아래내용 추가
UUID=93bbfeee-xxxxxxx /DATA ext4 defaults 1 2
 
 
# 재부팅해서 자동 mount 되어있는지 확인
df -h
cs


반응형

댓글