:::

如何讓其他人也能用rclone掛載的資料夾? / How to Let Other Users to Access the Directory Which Is Mounted by Rclone?

5月 19, 2023 , , 0 Comments Edit Copy Download

2023-0324-004227.png

請加入「--allow-other」參數。


rclone

Rclone_wide_logo.svg.png

https://zh.m.wikipedia.org/wiki/File:Rclone_wide_logo.svg 

(圖片來源:維基百科)

如果要用Linux掛載遠端資料夾的話,rclone應該是目前主要的首選。

https://rclone.org/overview/ 

目前rclone可以掛載的資料類型來到了41種。我通常拿它掛載Google Drive、OneDrive跟WebDAV,非常好用。

讓其他人使用rclone掛載的資料夾 / Let others access the directory mounted by rclone

一般情況下,只要設定好rclone的掛載對象後,我們就能用以下指令進行掛載:

rclone mount --daemon [REMOTE]: [PATH-TO-MOUNT]

不過,有些情況下,我們會希望掛載的資料夾給其他人使用。例如我用root帳號掛載了資料夾,提供給網頁伺服器的使用者www-data使用,讓我們可以直接在網頁系統中存取我掛載的遠端資料。

https://rclone.org/commands/rclone_mount/#options

https://rclone.org/commands/rclone_mount/#options

這時候需要加入選項「--alow-other」,於是指令變成如下:

rclone mount --daemon --allow-other [REMOTE]: [PATH-TO-MOUNT]

這樣就可以了。


你有用過類似rclone的掛載工具嗎?

歡迎在下面分享喔。