[Centos 7] ntfs usb 외장하드 인식하기 [ntfs usb 복사하기] > 기술자료 | 해피정닷컴

[Centos 7] ntfs usb 외장하드 인식하기 [ntfs usb 복사하기] > 기술자료

본문 바로가기

사이트 내 전체검색

[Centos 7] ntfs usb 외장하드 인식하기 [ntfs usb 복사하기] > 기술자료

Linux [Centos 7] ntfs usb 외장하드 인식하기 [ntfs usb 복사하기]

페이지 정보


본문

Centos 7 에서 ntfs usb 외장하드 인식하기 [ntfs usb 복사하기]

1. ntfs 관련 패키지 설치
[root@localhost ~]# yum install ntfs*
Loaded plugins: fastestmirror
base                                                     | 3.6 kB     00:00     
epel/x86_64/metalink                                     | 7.2 kB     00:00     
epel                                                     | 4.7 kB     00:00     
extras                                                   | 3.4 kB     00:00     
ius                                                      | 2.3 kB     00:00     
mariadb                                                  | 2.9 kB     00:00     
updates                                                  | 3.4 kB     00:00     
webtatic                                                 | 3.6 kB     00:00     
(1/3): epel/x86_64/updateinfo                              | 868 kB   00:00     
(2/3): epel/x86_64/primary_db                              | 6.2 MB   00:00     
(3/3): ius/x86_64/primary_db                               | 212 kB   00:01     
Loading mirror speeds from cached hostfile
 * base: ftp.nara.wide.ad.jp
 * epel: mirror.dmmlabs.jp
 * extras: ftp.riken.jp
 * ius: mirror.team-cymru.org
 * updates: ftp.riken.jp
 * webtatic: sp.repo.webtatic.com
Resolving Dependencies
--> Running transaction check
---> Package ntfs-3g.x86_64 2:2017.3.23-1.el7 will be installed
---> Package ntfs-3g-devel.x86_64 2:2017.3.23-1.el7 will be installed
---> Package ntfsprogs.x86_64 2:2017.3.23-1.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

=============================================================================================================
 Package                     Arch                 Version                           Repository          Size
=============================================================================================================
Installing:
 ntfs-3g                     x86_64               2:2017.3.23-1.el7                 epel               263 k
 ntfs-3g-devel               x86_64               2:2017.3.23-1.el7                 epel                81 k
 ntfsprogs                   x86_64               2:2017.3.23-1.el7                 epel               363 k

Transaction Summary
=============================================================================================================
Install  3 Packages

Total download size: 707 k
Installed size: 1.9 M
Is this ok [y/d/N]: y
Downloading packages:
(1/3): ntfs-3g-2017.3.23-1.el7.x86_64.rpm                                             | 263 kB  00:00:00     
(2/3): ntfs-3g-devel-2017.3.23-1.el7.x86_64.rpm                                       |  81 kB  00:00:00     
(3/3): ntfsprogs-2017.3.23-1.el7.x86_64.rpm                                           | 363 kB  00:00:00     
-------------------------------------------------------------------------------------------------------------
Total                                                                        2.1 MB/s | 707 kB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Installing : 2:ntfs-3g-2017.3.23-1.el7.x86_64                                                          1/3 
  Installing : 2:ntfsprogs-2017.3.23-1.el7.x86_64                                                        2/3 
  Installing : 2:ntfs-3g-devel-2017.3.23-1.el7.x86_64                                                    3/3 
  Verifying  : 2:ntfs-3g-2017.3.23-1.el7.x86_64                                                          1/3 
  Verifying  : 2:ntfsprogs-2017.3.23-1.el7.x86_64                                                        2/3 
  Verifying  : 2:ntfs-3g-devel-2017.3.23-1.el7.x86_64                                                    3/3 

Installed:
  ntfs-3g.x86_64 2:2017.3.23-1.el7 ntfs-3g-devel.x86_64 2:2017.3.23-1.el7 ntfsprogs.x86_64 2:2017.3.23-1.el7

Complete!
[root@localhost ~]# 



2. 마운트할 폴더 생성
[root@localhost ~]# mkdir /폴더명



3. ntfs 드바이스 정보 표시
[root@localhost ~]# fdisk -l
Disk /dev/sda: 256.0 GB, 256022937600 bytes, 500044800 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: 0x000dc73b

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      411647      204800   83  Linux
/dev/sda2          411648   500043775   249816064   83  Linux

Disk /dev/sdb: 500.1 GB, 500074307584 bytes, 976707632 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: 0xaa538d37

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048   976707631   488352792   83  Linux

Disk /dev/sdc: 1000.2 GB, 1000204886016 bytes, 1953525168 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
Disk label type: dos
Disk identifier: 0x3093bcdb

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1   *        2048  1953521663   976759808    7  HPFS/NTFS/exFAT
[root@localhost ~]# 



4. 외장하드를 externHD 경로로 마운트하기
[root@localhost ~]# mount /dev/sdc1 /폴더명/
[root@localhost ~]



5. 용량 확인
[root@localhost ~]# df -h
Filesystem      Size  Used Avail Use% Mounted on
...
/dev/sdc1       932G  529G  404G  57% /폴더명
[root@localhost ~]# 



6. 영구적인 mount 를 원한다면
[root@localhost ~]# vi /etc/fstab
맨 하단에 내용 추가
/dev/sdc1  /폴더명  ntfs  defaults  0 0



참고자료
http://skylove1982.tistory.com/357
http://idchowto.com/?p=3493

댓글목록

등록된 댓글이 없습니다.


Total 124건 1 페이지
  • RSS
기술자료 목록
124
Linux   963  2024-11-18 15:45 ~ 2024-11-18 15:48  
123
Linux   2888  2023-11-09 19:55  
122
Linux   3264  2023-11-01 21:41 ~ 2023-11-02 10:30  
121
Linux   3663  2023-03-28 18:09 ~ 2023-03-28 18:11  
120
Linux   4798  2022-01-11 11:54  
119
Linux   6026  2021-04-07 12:20 ~ 2023-05-23 13:42  
118
Linux   6804  2020-06-10 14:12 ~ 2020-06-10 16:00  
117
Linux   7547  2020-01-24 02:33 ~ 2020-01-28 13:29  
116
Linux   6736  2020-01-14 12:02  
115
Linux   5340  2019-12-27 22:36  
114
Linux   6345  2019-12-27 18:29  
113
Linux   8054  2019-12-13 21:28  
112
Linux   5915  2019-10-02 16:42 ~ 2019-10-02 16:49  
111
Linux   6672  2019-09-30 18:06 ~ 2021-09-01 13:12  
110
Linux   5723  2019-09-23 23:03  
109
Linux   8023  2019-01-21 15:38 ~ 2021-02-26 16:51  
108
Linux   16336  2019-01-21 07:18 ~ 2020-03-31 00:18  
107
Linux   7556  2018-11-13 00:15 ~ 2018-11-15 05:37  
106
Linux   7151  2018-07-13 18:29  
105
Linux   25926  2018-01-30 17:16  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.