MaruNote
  • Study Notes
    • Nmap + Nessus Cheat Sheet
    • SQL Injection Fundamentals
      • SQL Argument
      • Introduction
      • Subverting Query Logic
      • Using Comments
      • Union Clause
      • Union Injection
      • Database Enumeration
      • Reading Files
      • Writing Files
      • Mitigation
      • Skill Assessment
    • Stack-Based Buffer Overflows on Linux x86
      • Introduction
    • Stack-Based Buffer Overflows on Windows x86
      • Introduction
  • Tech Notes
    • Linux Cookbook
      • [Ubuntu] Limiting Lenovo Laptop Battery Charging to 80% in Ubuntu
      • [Debian] Firefox User Exprience
    • Windows Cookbook
    • MacOS Cookbook
    • NGFW
    • Rclone
    • Jellyfin
    • Docker
    • Wireguard
    • Powerlevel10k
  • Troubleshooting
    • [Python] error: Microsoft Visual C++ 14.0 or greater is required.
  • Code Draft
    • Python Network Reconnaissance
    • Java File Management
    • Synology Schedule Task
Powered by GitBook
On this page
  1. Tech Notes

Rclone

Mount

rclone mount onedrive:Media /mnt/onedrive \
    --allow-other \
    --read-only \
    --vfs-cache-mode writes \
    --dir-cache-time 12h \
    --vfs-read-chunk-size 512M \
    --vfs-read-chunk-size-limit 10G \
    --daemon \
    -vv

Unmount

fusermount -u /mnt/onedrive
PreviousNGFWNextJellyfin

Last updated 1 year ago