linux挂载ntfs移动硬盘
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
linux挂载ntfs移动硬盘
# 一般情况下,Linux是识别不了NTFS格式移动硬盘的(需要重编译Linux核心才能,加挂NTFS分区),这时候为了能让Linux服务器能够识别NTFS的移动硬盘,可以安装ntfs-3g(Third Generation Read/Write NTFS Driver)的包。
#下载地址
http://www.tuxera.com/community/ntfs-3g-download/
#解压安装NTFS-3G
tar -xvzf ntfs-3g_ntfsprogs-2017.3.23.tgz
cd ntfs-3g_ntfsprogs-2017.3.23
./configure
make
make install
#配置挂载NTFS格式的移动硬盘
sudo fdisk -l | grep NTFS #查看NTFS分区的信息
mount -t ntfs-3g /dev/sdc1 /mnt/usb #或者直接用 ntfs-3g ntfs-3g /dev/sdc1 /mnt/usb
#实现开机自动挂载,可以在/etc/fstab里面添加如下格式语句(这样可以实现NTFS分区里中文文件名的显示。 )
ntfs-3g silent,umask=0,locale=zh_CN.utf8 0 0
#卸载分区可以用umount实现
umount 挂载文件夹
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献12条内容
所有评论(0)