rcloneを利用したMicrosoft One Driveの接続
1.概要
onedriveアプリを利用したMicrosoft OneDriveの接続をしましたが、もっと便利なrcloneをネットで見つけたので試してみました。その内容を記述します。
2.詳細
環境はubuntu-20.04.6のデスクトップ環境です。
手順は以下のとおりです。
(a) install
(b) config
(c) mount
(a) install
sudo apt-get install curl
curl https://rclone.org/install.sh | sudo bash
(b) config
rclone config
ここでmicrosoft onedriveを定義して、認証を受けます。
参考資料に沿って作業します
(c) mount
mkdir msonedrive
rclone mount onedrive: msonedrive
と実行するとエラーになります。
<5>NOTICE: OneDrive root '': --vfs-cache-mode writes or full is recommended for this remote as it can't stream
Fatal error: failed to mount FUSE fs: fusermount: exec: "fusermount3": executable file not found in $PATH
ネットで調べて下記シンボリックリンクを作成
sudo ln -s /bin/fusermount /bin/fusermount3
rclone mount onedrive: msonedrive
<5>NOTICE: OneDrive root '': --vfs-cache-mode writes or full is recommended for this remote as it can't stream
ls msonedrive
で参照できます。
参考
[外部サイト参照]
・RcloneでクラウドストレージをLinuxに自動マウント
・rcloneでOneDriveからLinuxサーバにファイルを移動する
・Rclone 1.62.2 Fatal error: failed to mount FUSE fs:
コメント
コメントを投稿