Home > Article > Operation and Maintenance > Unable to mount mobile hard disk in linux
1. First determine the file format of the mobile hard disk to be mounted;
df -T
Check the mounted partition and file system type
fdisk -l
can display all mounted and unmounted partitions, but does not display the file system type
parted -l
View unmounted partitions Downloaded file system type
Free learning video tutorial recommendation: linux video tutorial
2. If it is ntfs format, you need to install the ntfs-3g
plug-in To mount;
3. To view the location of the device to be mounted, you can use fdisk -l
. Note here that if the mobile hard disk is not partitioned, only /dev/ may be displayed. sdc, but when mounting, you must mount dev/sdc1
4. Mount:
mount -t ntfs-3g /dev/sdc1 /mnt
The mount point can be defined by yourself
Recommended related articles and tutorials: linux tutorial
The above is the detailed content of Unable to mount mobile hard disk in linux. For more information, please follow other related articles on the PHP Chinese website!