Summary
This article describes the steps to mount an NTFS thumb drive on systems using Red Hat Linux Enterprise Linux (RHEL) and SUSE Linux Enterprise (SLES) distributions to complete an installation of Esri software.
Procedure
RHEL
- Add the Extra Packages for Enterprise Linux (EPEL) repository for the appropriate RHEL version from the Fedora Project wiki EPEL page, and install the package:
#yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm
#yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
- Install the NTFS driver.
#yum -y install ntfs-3g
- Insert the USB thumb drive and wait for it to automount.
If the device does not automount, follow the steps in the Manually Mounting USB section below.
SLES
- Ensure that the SLES machine has a subscription with the vendor, and sign in to the SLES repository.
- Download and install the ntfs-3g package for the SLES version using the following syntax
#zypper --no-gpg-checks install ntfs-3g-<version>.rpm
- Insert the USB thumb drive and wait for it to automount.
- The GUI requests the Administrator (root) password to mount the thumb drive.
If the USB device does not automount, follow the steps in the Manually Mounting USB section below.
Manually Mounting USB
- Determine the block device assigned to the USB thumb drive by searching for "usb" in /var/log/messages.
- Create a mount point. For example:
mkdir /tmp/tempmount
- Manually mount the USB thumb drive to the mount point created:
mount -t ntfs-3g /dev/sdX /tmp/tempmount
ntfs-3g /dev/sdX /tmp/tempmount