UbuntuでCurlFtpFSを使用して、FTPサーバ上のディレクトリをマウントするには、以下の手順を実行します。
1.CurlFtpFSのインストール
sudo apt-get install curlftpfs
2.FTPサーバ上のディレクトリのマウント
mkdir ~/ftp
curlftpfs -o user=user1:pass ftp://192.168.1.122/ ~/ftp
ls ~/ftp
3.アンマウント
fusermount -u ~/ftp
動作環境
Ubuntu 10.10
2011年1月19日水曜日
2010年12月26日日曜日
Ubuntuでhttpfs2を使用して、URL上のファイルをマウントする
Ubuntuでhttpfs2を使用して、URL上のファイルをマウントするには、以下の手順を実行します。
1.httpfs2のインストール
sudo apt-get install httpfs2
2.URLをマウント
http://localhost/icons/README.htmlを~/testにマウント
mkdir ~/test
httpfs2 http://localhost/icons/README.html ~/test
cat ~/test/README.html
3.アンマウント
fusermount -u ~/test
または
sudo umount httpfs2
動作環境
Ubuntu 10.10
1.httpfs2のインストール
sudo apt-get install httpfs2
2.URLをマウント
http://localhost/icons/README.htmlを~/testにマウント
mkdir ~/test
httpfs2 http://localhost/icons/README.html ~/test
cat ~/test/README.html
3.アンマウント
fusermount -u ~/test
または
sudo umount httpfs2
動作環境
Ubuntu 10.10
登録:
投稿 (Atom)