리눅스에 디스크 마운트하기

2023. 2. 25. 19:30OS

ntfs 마운트하기

# 마운트 대상 찾기
sudo fdisk -l

# 마운트할 디렉토리 생성
sudo mkdir /mnt/usb1

# ntfs 마운트하기
sudo mount -t ntfs /dev/sdb1 /mnt/usb1

# 결과 확인
df -h

마운트가 안될 경우,

# 에러
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Falling back to read-only mount because the NTFS partition is in an
unsafe state. Please resume and shutdown Windows fully (no hibernation
or fast restarting.)
Could not mount read-write, trying read-only

# 조치
# 이렇게 하면 읽기만 됨
sudo ntfsfix /dev/sdb1

# rw가 되게 마운트 하기
# unmount
sudo umount /dev/sdb1

# mount
sudo mount -t ntfs /dev/sdb1 /mnt/usb1

마운트할 위치를 /media/계정/usb1으로 잡아야 UI에서 자동으로 잡힘

 

'OS' 카테고리의 다른 글

우분투 kubectl 설치  (0) 2023.03.01
우분투에 HDD 자동 마운트하기  (0) 2023.02.25
termux 에러  (0) 2022.08.10
리눅스 NFS 설정  (0) 2022.03.20
Windows 명령어  (0) 2021.12.31