Shaare your links...
6217 links
Shared links on http://www.la-pub-dans-les-films.fr/shaarli/ Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
page 1 / 1
7 results for tags rclone x
  • Note: rclone exemple
    rclone mount TEST: X: --vfs-cache-mode writes --links
    Fri Aug 22 00:16:10 2025 - permalink -
    - http://www.la-pub-dans-les-films.fr/shaarli/?yoC1Mw
    rclone
  • Note vitœuf: alpine add rclone
    apk add bash curl unzip

    curl https://rclone.org/install.sh | bash


    -----------------------------------------------------------------------
    mount http

    ##### Install FUSE
    apk add fuse3


    ##### Load the FUSE kernel module
    modprobe fuse


    ##### Verify fusermount3 is in the PATH
    which fusermount3


    ##### Create the mount directory if it doesn't exist
    mkdir  /media/toto


    ##### Mount the HTTP remote
    rclone mount testy:/ /media/toto/ --daemon --allow-other -vv
    Sat Aug 3 17:39:46 2024 - permalink -
    - http://www.la-pub-dans-les-films.fr/shaarli/?onaGVQ
    alpine rclone
  • Merging Drives for Large Collections
    A check

    Merging Drives for Large Collectio

    Setup WinFsp

    Setup rclone

    Configure an rclone Union remote

    Mount the Union remote

    Optional: Create a batch script to mount remotes and start RomVault

    Configure directory rules

    Merging Drives for Large Collections

    RomVault does not currently have the ability to assign multiple ROM paths to a single DAT. For example, you cannot assign X:\PS2 and Y:\PS2 to your PlayStation 2 DAT at the same time. This may be problematic if you use multiple drives and a particular collection cannot fit on a single physical drive. However, you can use other applications to merge multiple drives or paths together so they appear consolidated and can be accessed as if it were a single drive.

    This guide should not be necessary if you use an array such as UnRAID or TrueNAS, but it may be helpful if you have several drives and do not use an array. The example below outlines one merging solution for Windows using WinFsp and rclone. There are many solutions available, but this solution should be suitable for simple use cases and allows flexibility so you do not need to change the format of any of your existing drives.


    Setup WinFsp

    First, you will need to download and install WinFsp which is used for mounting virtual filesystems.

    Go to the WinFsp site.

    Download the latest version for your operating system. For this example we will use the standard WinFsp Installer.

    Open the WinFsp installer by double clicking on the .msi file that was downloaded. If prompted with a security warning, choose the “Run” option.

    Install the application by following the prompts. The default settings should be sufficient.


    Setup rclone

    Next, you will need to download and setup rclone which is used for mounting various remote sources so they can be accessed through Windows Explorer. This may not seem intuitive at first if your drives are all connected locally with different drive letters. In this example we will be using rclone just for its merging capabilities, however it can also be used to connect to remote sources such as WebDAV, Google Drives, etc.

    Go to the rclone site.

    Download the latest version for your operating system. For this example we will use the “Intel/AMD - 64 Bit” version for Windows.

    Extract the contents of the .zip file to a location of your choosing. Note that rclone is like RomVault and does not have an installer. For this example we will extract the contents to C:\rclone


    Configure an rclone Union remote

    Next, you need to configure rclone using a special type of remote called a “Union”. The Union remote allows you to virtually merge the contents of multiple sources into a single mount point. This does not impact the filesystems of the source drives and does not require you do to do any reformatting or drive preparation.

    Open a command prompt by typing cmd into the Windows search bar and select Command Prompt

    Navigate to the rclone directory, in this case: cd C:\rclone and press Enter. Note you can also type cd then drag and drop your rclone directory onto the command line to populate the correct path.

    Launch rclone by typing rclone config and press Enter. A configuration wizard will display.

    Choose the option for “New remote” by typing n then press Enter. A name prompt will display.

    Give your remote a friendly name so you know what it is. For this example we will be merging two drives that contain a PlayStation 2 collection, so we will call this remote “PS2”. Press Enter and a long list of remote types will display.

    Choose the union option by typing the number or the word union and press Enter. The config wizard will ask for a list of upstreams, or paths to merge.

    Type or drag and drop the paths you want to include separated by a space, for example: "X:\PS2" "Y:\PS2". Press Enter to continue.

    The setup wizard will walk you through various settings for this remote:

    action_policy: use the default (“epall”)

    create_policy: use the default (“epmfs”)

    search_policy: use the default (“ff”)

    cache_time: use the default (“120”)

    When prompted to edit the advanced config, choose no.

    When prompted to keep the remote, choose yes. You will be taken back to the main menu of the remote configuration wizard.

    Quit the configuration wizard by typing q and press Enter.

    For additional information about the rclone Union remote and the configuration options available, please refer to the rclone help documentation.

    Mount the Union remote

    Now that you have a union remote configured, the next step is to mount the remote to access the files. This will effectively be a shortcut to access your files through the unified view.

    From the command prompt in the rclone directory, launch rclone using the mount option and choose to mount the remote to a new location using the following syntax: rclone mount [remote_name]:[directory_in_remote] [mount_path] [options]. For example: rclone mount PS2:\ "C:\PS2\" --vfs-cache-mode writes and press Enter. Note that rclone for Windows not will not allow you to mount to a directory that already exists, however you must make sure all ancestor directories leading up to the mount point do exist.

    If everything was successful, a message should display indicating that the rclone service has started.

    Check that the mount exists by navigating to your mount path using Windows Explorer. The mount point will appear with a shortcut icon.

    Check that the contents of your drives are accessible through the remote. You should see the contents of both of your drives merged.

    RomVault requires write access to the remote for fix operations. Use the --vfs-cache-mode writes option while mounting the remote to enable write access.

    rclone must be running for the virtual files to be populated in your mount point. You may want to create a simple batch file to launch rclone and mount your union remote so you do not need to use the command line every time.


    Optional: Create a batch script to mount remotes and start RomVault

    If you would like to mount your remotes when you launch RomVault, you can create a simple batch script as follows:

    Navigate to the directory of your RomVault executable

    Right click in blank space in Windows Explorer and select New > Text Document

    Rename the file something friendly with a .bat extension, like MountStartRV.bat

    Open your .bat file in Notepad by right clicking and choosing Edit

    Enter the contents of your batch script. You can use the following as an example:start "rclone" "C:\rclone\rclone.exe" mount PS2:\ C:\PS2 --vfs-cache-mode writes start "" "C:\ROMVault\ROMVault35.exe"

    Make sure RomVault and rclone are both closed, then test your script by double clicking on your *.bat file.

    If everything was successful, rclone will launch and mount your remote and RomVault will also launch.

    Congratulations! You can now mount your remotes and launch RomVault by clicking your batch script file. Note that closing RomVault will not stop your rclone mount. If you would like to unmount your remote, then close the rclone command prompt window.

    Configure directory rules

    Finally, the last step is to update your directory rule in RomVault to use your new mount point as the directory for your ROMs. In this case we will just be updating the directory rule for our PlayStation 2 collection.
    Sun Mar 24 08:10:47 2024 - permalink -
    - https://wiki.romvault.com/doku.php?id=merging_drives
    rclone windows
  • Rclone Union config
    The behavior of union backend is inspired by trapexit/mergerfs.
    Sat Mar 23 18:13:48 2024 - permalink -
    - https://rclone.org/union/
    Rclone
  • Plex avec rclone + uptobox - Ichiboku
    a check

    <h2 class="wp-block-heading">Rclone</h2>



    <p>Rclone est un programme en ligne de commande pour gérer les fichiers sur le cloud.</p>



    <p>L’installation de Rclone est très simple.</p>



    <p>Sur Linux, il suffit d’ouvrir un terminal et de taper</p>



    <pre class="wp-block-code"><code>sudo -v ; curl https://rclone.org/install.sh | sudo bash</code></pre>



    <h2 class="wp-block-heading">Uptobox</h2>



    <p>Une fois effectuée, il suffit de configurer la connexion à uptobox :</p>



    <pre class="wp-block-code"><code>rclone config</code></pre>



    <p>Ensuite, on suit dans le terminal</p>



    <pre class="wp-block-code"><code>Current remotes:

    Name                 Type
    ====                 ====
    TestUptobox          uptobox

    e) Edit existing remote
    n) New remote
    d) Delete remote
    r) Rename remote
    c) Copy remote
    s) Set configuration password
    q) Quit config
    e/n/d/r/c/s/q&gt; n
    name&gt; uptobox
    Type of storage to configure.
    Enter a string value. Press Enter for the default ("").
    Choose a number from below, or type in your own value
    [...]
    37 / Uptobox
      \ "uptobox"
    [...]
    Storage&gt; uptobox
    ** See help for uptobox backend at: https://rclone.org/uptobox/ **

    Your API Key, get it from https://uptobox.com/my_account
    Enter a string value. Press Enter for the default ("").
    api_key&gt; xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Edit advanced config? (y/n)
    y) Yes
    n) No (default)
    y/n&gt; n
    Remote config
    --------------------
    [uptobox]
    type = uptobox
    api_key = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    --------------------
    y) Yes this is OK (default)
    e) Edit this remote
    d) Delete this remote
    y/e/d&gt; </code></pre>



    <p>On installe ensuite fuse s’il n’est pas déjà installé</p>



    <pre class="wp-block-code"><code>sudo apt install fuse</code></pre>



    <p>Une fois configuré, on crée un dossier qu’on va lier à un dossier d’uptobox :</p>



    <pre class="wp-block-code"><code>mkdir /media/uptobox/Films</code></pre>



    <p>Tant qu’on y est, on crée un dossier pour rclone (pour y mettre les logs) et un autre pour le cache</p>



    <pre class="wp-block-code"><code>mkdir /media/rclone
    mkdir /media/rclone/cache</code></pre>



    <p>On lie le dossier local à celui d’uptobox</p>



    <pre class="wp-block-code"><code>rclone mount uptobox:Films /media/uptobox/films/ --allow-other --cache-dir /media/rclone/cache --log-file /media/rclone/rclone.log --vfs-cache-mode=writes --daemon</code></pre>
    Wed Sep 13 20:52:53 2023 - permalink -
    - https://ichiboku.be/plex-avec-rclone-uptobox/
    rclone uptobox
  • Cyberduck | Libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure & OneDrive, Google Drive and Dropbox
    Rclone like??
    Mon Jul 24 14:38:02 2023 - permalink -
    - https://cyberduck.io/
    rclone
  • Rclone downloads
    Tue Aug 30 21:26:18 2022 - permalink -
    - https://rclone.org/downloads/
    rclone
Links per page: 20 50 100
page 1 / 1
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.