如何在山狮中以读写方式重新安装内部驱动器


9

突然,具有HFS +分区的辅助驱动器从读写更改为只读。如何在mountain lion中使用mount命令将其反转?

Answers:


16

尝试使用mount -u -w

sudo mount -u -w /Volumes/YourDriveName

-u修改已经安装的文件系统的状态。-w挂载文件系统为可读写。


1
mount_hfs: Invalid argument
2rs2ts '01

1
如果是ntfs,则可能需要更多的参数:apple.stackexchange.com/questions/20889/…,也可能需要卸载然后重新安装,以避免出现“只读驱动器”消息...
rogerdpack

完成此操作后,是否有任何方法可以撤销写访问权限?
Noldorin

您必须卸载驱动器,然后将其重新安装为只读。
TJ Luoma

3

该线程中的答案对我不起作用,但这确实有效:

  sudo mount -u -o rw /Volumes/VolName

2

偶尔发生这种情况时,我需要使用OSX随附的磁盘实用程序来验证和修复磁盘。任何尝试使用mount -u -w /Volume/NIKON-S9700都会因以下错误而失败:

$ sudo mount -u -w "/Volumes/NIKON-S9700"
mount_msdos: /dev/disk2s1 on /Volumes/NIKON-S9700: Permission denied

您可以像下面这样告诉磁盘已只读安装:

$ mount
/dev/disk1 on / (hfs, local, journaled)
devfs on /dev (devfs, local, nobrowse)
map -hosts on /net (autofs, nosuid, automounted, nobrowse)
map auto_home on /home (autofs, automounted, nobrowse)
/dev/disk2s1 on /Volumes/NIKON-S9700 (msdos, local, nodev, nosuid, read-only, noowners)

注意:请注意,在上面的设备输出中为“只读” /dev/disk2s1

一旦我从磁盘工具运行了修复盘,安装后的驱动器就会显示如下:

$ mount
/dev/disk1 on / (hfs, local, journaled)
devfs on /dev (devfs, local, nobrowse)
map -hosts on /net (autofs, nosuid, automounted, nobrowse)
map auto_home on /home (autofs, automounted, nobrowse)
/dev/disk2s1 on /Volumes/NIKON-S9700 (msdos, local, nodev, nosuid, noowners)

修复盘按钮有时可能会显示为灰色。通常,我必须在运行“磁盘工具”的情况下卸下并重新装入磁盘,以使此按钮显示为可单击的。

装有SD卡的Disk Utility的屏幕截图

     ss#1


1

有时在驱动器文件系统损坏时发生。运行磁盘工具,然后检查文件系统和驱动器是否有错误。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.