WindowsのCIFSが/home/external/backup
Linux(RHAT7)のディレクトリにマウントされた状況が発生したことがあります。
/home/backup
また、ファイルをディレクトリに保存するようにいくつかのバックアップシステムを設定しました。これでバックアップパスを変更できません。 CIFS マウントディレクトリも変更できません。
home/backup
CIFSディレクトリにバックアップを保存できるように、CIFSディレクトリを既存のディレクトリにマウントする機能はありますか?
答え1
Redhat Knowledge Baseにあります。赤い帽子
次のように、mountコマンドのcifsオプションを使用してRHELシステムにWindows共有をマウントできます。
[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のサポートが欠落している場合は、以下を実行してみてください。
ヤムのインストール 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