• CentOS7|Redhat7挂载NTFS格式磁盘


    //下载安装ntfs-3g_ntfsprogs.tgz软件包进行编译安装
    tar -zxf ntfs-3g_ntfsprogs.tgz
    cd ntfs-3g_ntfsprogs
    ./configure
    make
    make install
    
    //查看磁盘
    fdisk –l  		
    Device 	Boot	Start		End	Blocks  Id  System
    /dev/sdb1  *		7486	170667	14686336 7    HPFS/NTFS
    
    //创建挂载点
    [root@xuliangwei ~]# mkdir -p /mnt/usb 
    
    //使用mount指定ntfs-3g格式挂载
    [root@xuliangwei ~]# mount -t ntfs-3g /dev/sdb1 /mnt/usb  
    
    //查看ntfs磁盘内文件
    [root@xuliangwei ~]# ls /mnt/usb		
     drivethelife6_net_setup.ext GHO
    
    //使用umount卸载ntfs格式磁盘
    [root@xuliangwei ~]# umount -l /dev/sdb1   
    
  • 相关阅读:
    POJ
    POJ
    HDU
    HDU
    HDU
    POJ
    HDU
    POJ
    A-meeting 2019牛客暑期多校第四场 (树的直径)
    算法与数据结构实验题 2.1 塔防
  • 原文地址:https://www.cnblogs.com/xuliangwei/p/8530542.html
Copyright © 2020-2023  润新知