LoginSignup
5
1

More than 5 years have passed since last update.

CentOS 7でNTFSフォーマットのディスクをマウント

Posted at

CentOS 7でNTFSフォーマットのディスクをread-onlyでマウントする。

Bash
$ cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core) 
$ sudo fdisk -l 2> /dev/null | grep sdc1
/dev/sdc1              63   976768127   488384032+   7  HPFS/NTFS/exFAT
$ sudo mount -t auto /dev/sdc1 /mnt/usb3
mount: unknown filesystem type 'ntfs'
$ sudo yum -y install ntfs-3g
$ sudo mount -r -t auto /dev/sdc1 /mnt/usb3
$ df -h
$ ls -l /mnt/usb3/
5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1