zoukankan      html  css  js  c++  java
  • linux 下 ntfs移动硬盘挂载

    fdisk -l

    Disk /dev/sdb: 500.0 GB, 500074283008 bytes
    255 heads, 63 sectors/track, 60797 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes

    Device Boot Start End Blocks Id System
    /dev/sdb1 * 1 60798 488352768 7 HPFS/NTFS

    下载 ntfs-3g 包

    http://www.tuxera.com/community/open-source-ntfs-3g/
    https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz

    wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2013.1.13.tgz
    或者 通过 ftp 来中转。

    ftp hostname
    cd /temp
    get ntfs-3g_ntfsprogs-2013.1.13.tgz

    安装 ntfs-3g

    tar zxf ntfs-3g_ntfsprogs-2013.1.13.tgz
    cd ntfs-3g_ntfsprogs-2013.1.13
    ./configure

    提示:You can type now 'make' to build ntfs-3g.

    make
    make install

    CAT /usr/local/share/doc/ntfs-3g/README

    挂载ntfs

    mkdir /mnt/usb1
    mount -t ntfs-3g /dev/sdb1 /mnt/usb1

    Tty725 说:
    欢迎转载,但请注明内容的来源或URL;
    [转]”篇章,必须保留原始来源且勿添加本blog指向。
  • 相关阅读:
    算法设计--求连续子向量的最大和问题--论想法思路的重要性
    --a和a--
    程序员一个知道的一些法则
    django admin
    Python递归
    Python内置函数
    Python协程函数
    Python 生成器
    Python迭代器
    Python装饰器
  • 原文地址:https://www.cnblogs.com/Tty725/p/5018618.html
Copyright © 2011-2022 走看看