Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to access the NTFS filesystem on CentOS?

Tags:

linux

centos

ntfs

i tried:

mkfs.ntfs /dev/sdc1

but command not found, and the locate command shows nothing for mkfs.ntfs.

I tried gparted but the ntfs is hidden...Can anybody help to me?

like image 810
kodaek98 Avatar asked Oct 28 '25 18:10

kodaek98


2 Answers

   sudo yum install ntfsprogs
   sudo yum install ntfs-3g
like image 70
kodaek98 Avatar answered Oct 31 '25 09:10

kodaek98


- EPEL repository

yum -y install epel-release

- Install ntfs-3g

yum -y install ntfs-3g

- Update Grub

grub2-mkconfig -o /boot/grub2/grub.cfg
like image 39
Saddam ZEMMALI Avatar answered Oct 31 '25 07:10

Saddam ZEMMALI