我在 Mac 上安装了 Parallels,并创建了 Fedora 11 虚拟机。一切正常,只是我的 Mac 和 VM 之间的文件共享不起作用。在 Parallels 文档中,他们说我必须禁用 SELinux 才能使共享文件夹正常工作。
如何在 Fedora 11 上禁用 SELinux?
文档中提到的另一件事(并且效果不太好)是在 fstab 中进行配置:
无 /media/psf prl_fs 默认,共享 0 0
但是当我尝试安装该单元时,我收到了错误的 fs 类型消息。
有人知道我该怎么办吗?
答案1
如果你打开,/etc/selinux/config
你会看到一行内容:
SELINUX=enforcing
更改为:
SELINUX=disabled
禁用 SELinux。
未知文件系统类型消息意味着未加载并行文件系统驱动程序。您可以粘贴命令的输出lsmod
吗?
答案2
在虚拟机内部,编辑文件/etc/selinux/config
SELINUX 指令以将其禁用,如下所示:
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of these two values:
# targeted - Targeted processes are protected,
# mls - Multi Level Security protection.
SELINUXTYPE=targeted