WindowsとLinuxでファイル共有してみた。
はじめに
こんにちは、山田です。
今回は、CIFSでWindowsとLinuxでファイル共有するについて記載していきます。
Windows共有フォルダの作成
①:今回はCドライブに、cifsフォルダ
を作成してそれを共有フォルダにします。
②:cifsフォルダ作成後、プロパティを開きます。
③:共有をクリックして、共有するユーザーを選択する。
④:テスト用にcifsフォルダ直下にtest.txt
を作成しておく。
LinuxでCIFSマウント
①:cifs-util
をインストールする。
yum -y install cifs-utils
②:マウントポイントを作成する。
今回は/cifs
をマウントポイントとする。
mkdir /cifs
③:Windows共有フォルダをマウントする。
mount.cifs -o user=test-user,password=P@ssw0rd //10.1.0.110/cifs /cifs
④:test.txt
をコピーする。
cd /cifs
cp test.txt /tmp #test.txtを/tmpにコピーする。
cd /tmp #コピーできているかlsコマンドを打ち確認する。
ls #以下のようにtest.txtがコピーされていればOK。
test.txt
Author And Source
この問題について(WindowsとLinuxでファイル共有してみた。), 我々は、より多くの情報をここで見つけました https://qiita.com/kuromame1020611/items/800b57569d868dd61887著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .