卸载 CIFS 目录:

卸载 CIFS 目录:

我曾经遇到过这样的情况:windows的CIFS已经挂载到/home/external/backupLinux(RHAT7)上的目录了。

另外,我还配置了一些备份系统,将文件存储到/home/backup目录中。现在我无法更改备份路径。 CIFS 挂载目录也无法更改。

是否有能力将 CIFS 目录挂载到现有home/backup目录,以便备份可以存储在 CIFS 目录中?

答案1

你可以在 Redhat 知识库中查找:红帽

可以使用 mount 命令的 cifs 选项将 Windows 共享安装在 RHEL 系统上,如下所示:

[root@host ~]# mount -t cifs -o username=<share user>,password=<share password> //WIN_PC_IP/<share name> /mnt

如果您的用户位于 Windows 域中,那么您可以按如下方式定义域:

[root@host ~]# mount -t cifs -o username=<share user>,password=<share password>,domain=example.com //WIN_PC_IP/<share name> /mnt

编辑 如果缺少 Cifs 支持,请尝试运行

yum 安装 cifs-utils

答案2

执行此操作的唯一方法是使用以下命令卸载 CIFS 目录,然后将其重新挂载到存储备份文件的目录:

卸载 CIFS 目录:

umount /mnt

将 CIFS 目录挂载到存储备份的文件夹:

mount -t cifs -o username=<share user>,password=<share password> //WIN_PC_IP/<share name> /home/backup

相关内容