RcloneView Slack 遠端控制:用手機管理雲端工作
· 閱讀時間約 7 分鐘
將 RcloneView 變成一個 chatops 控制台:即使你不在電腦前,也能在 Slack 上接收工作通知、列出工作清單,並啟動或停止工作。
透過 Slack 遠端控制功能,RcloneView 會將工作開始、完成與錯誤的通知傳送到你的手機,並接受簡單的斜線指令來執行或停止工作。這對長時間的備份、通宵的同步,或是你仍想透過手機快速控制的遠端伺服器來說非常實用。

在同一處管理與同步所有雲端
RcloneView 是 rclone 的跨平台 GUI。透過清爽的視覺化介面比較資料夾、傳輸或同步檔案,並自動化多雲工作流程。
- 一鍵作業:複製 · 同步 · 比較
- 排程器與歷史記錄,打造可靠的自動化
- 支援 Google Drive、OneDrive、Dropbox、S3、WebDAV、SFTP 等
WindowsmacOSLinux
免費開始使用 →核心功能免費。Plus 提供自動化功能。
你可以在 Slack 上做什麼
- 即時通知:工作開始、完成或發生錯誤時立即收到提醒。
- 列出工作:以簡潔的清單檢視所有已註冊的 RcloneView 工作。
- 遠端工作控制:以名稱或索引(#N)啟動工作,或立即停止工作。
- 即時狀態查詢:隨時查看進度、傳輸速度以及預估剩餘時間。
注意:RcloneView 必須在你的電腦或伺服器上執行,才能處理 Slack 指令。
事前準備
- 已安裝並執行 RcloneView(桌面版或無介面版)。
- 擁有 Slack 帳號與自己的工作區(workspace)。
- 網際網路連線。
步驟 1:建立你的 Slack 應用程式(使用 Manifest)
為了最大程度的安全性,RcloneView 採用「私有應用程式」的方式,讓你自行建立機器人。這確保你的資料不會經過任何第三方伺服器——資料會直接從你的電腦傳送到 Slack。
-
前往 Slack API 儀表板,點選 [Create New App]。
-
選擇 [From a manifest]。
-
選擇你想安裝此應用程式的 Workspace,然後點選 [Next]。
-
選擇 [JSON] 分頁,刪除既有內容,並貼上以下程式碼:
{
"display_information": {
"name": "RcloneView",
"description": "Effortlessly browse, organize, transfer files across your cloud storages.",
"background_color": "#3f2f3f"
},
"features": {
"bot_user": {
"display_name": "RcloneView",
"always_online": false
},
"slash_commands": [
{
"command": "/help",
"description": "Show all commands",
"should_escape": false
},
{
"command": "/joblist",
"description": "List jobs",
"should_escape": false
},
{
"command": "/start",
"description": "Start a job (Enter number or name)",
"usage_hint": "<#number> or <jobName>",
"should_escape": false
},
{
"command": "/stop",
"description": "Stop a running job by JobId",
"usage_hint": "<JobId>",
"should_escape": false
},
{
"command": "/jobstatus",
"description": "Check status by JobId",
"usage_hint": "<JobId>",
"should_escape": false
}
]
},
"oauth_config": {
"scopes": {
"bot": [
"commands",
"chat:write",
"chat:write.public",
"im:write",
"app_mentions:read",
"files:write"
]
}
},
"settings": {
"interactivity": {
"is_enabled": true
},
"org_deploy_enabled": false,
"socket_mode_enabled": true,
"token_rotation_enabled": false
}
}
- 點選 [Next],然後點選 [Create] 完成應用程式建立。