我刚刚安装了 Ubuntu 13.10。
眼镜:
- 处理器:AMD A10-7700K
- APU:配备 Radeon(TM) R7 显卡 × 4
- 主板:技嘉 GA-f2a88xm-d3h
- 内存:8GB
- HDD:主 128GB + 辅助 2TB
安装后,我使用 NTFS 文件系统快速格式化了第二个硬盘,然后开始复制文件。当我重新启动系统时,第二个硬盘被分成 3 个分区,只有两个显示出来,当我尝试访问时,我收到以下消息:
Unable to access “372 GB Volume”
error mounting /dev/sdb2 at /media/mihalis/2604497C1A110D84: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdb2" "/media/mihalis/2604497C1A110D84"' exited with non-zero exit status 12: NTFS signature is missing.
Failed to mount '/dev/sdb2': Invalid argument
The device '/dev/sdb2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
请帮帮我,这是我第一次尝试使用 Ubuntu。我对此一无所知。
答案1
安装ntfs-progs
或ntfs-3g
应该可以解决您遇到的问题。
我认为安装哪个都无所谓,你可以查看 Ubuntu 文档,看看哪个是首选。我记得其中一个是首选Arch Linux但我不记得是哪一个了。
您可以使用以下方法检查是否已安装它们:
dpkg -l | grep ntfs | grep ii # if there is no output, then you need to install
# one of the ntfs pacakges.
安装示例ntfs-progs
apt-get install ntfs-progs # make sure that you run this as root
要以 root 身份运行某些程序,请在命令前加上前缀sudo
:
sudo apt-get install ntfs-progs