
PHP Composer – Command Not Found
Composer lets you manage PHP package dependencies on a per-project basis. You install Composer like…
This tutorial will cover how to mount an NTFS drive on CentOS 7. We’ll use the open-source version of the NTFS for Linux driver by Tuxera, NTFS-3G.
To mount an NTFS drive, start off by adding the remi-release and epel-release repos to your installation
1 2 3 4 5 6 |
#Epel Repo: https://fedoraproject.org/wiki/EPEL yum install epel-release #Remi Repo: https://rpms.remirepo.net wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm rpm -Uvh remi-release-7.rpm |
Issue the following command to install
1 |
yum install ntfs-3g |
You also need the Fuse package but it’s usually pre-installed on CentOS, just verify if it’s installed or not
1 2 3 4 |
yum install fuse #Load the module modprobe fuse |
List the attached drives to find the NTFS drive to mount
1 |
fdisk -l |
To mount this drive, issue the following:
1 2 3 4 5 |
#Make a mount point at a location you choose mkdir /mnt/ntfs-drive #Mount the drive mount -t ntfs-3g /dev/sdb1 /mnt/ntfs-drive/ |
To verify:
1 |
df -h |
That’s it.