Some users try to use Insync, CloudMounter, or odrive. They do not support Movistar Cloud natively (they support Google Drive, OneDrive, Dropbox, pCloud). You might use rclone + a GUI wrapper like rclone-browser, but that’s just a frontend for rclone.
Estado actual (2025): El método WebDAV a veces es limitado (no permite ciertos tipos de archivos grandes o renombrados masivos). Es útil solo para lectura/escritura básica. No es el "full" ideal, pero es el más integrado con el escritorio Linux.
Stability: No crashes. The service backend is mature (used by millions of Movistar customers).
rclone mount movistar: ~/MovistarCloud --daemon --vfs-cache-mode writes
Ahora tu carpeta ~/MovistarCloud es literalmente tu Movistar Cloud. Puedes arrastrar archivos, abrirlos, editarlos. El --daemon lo ejecuta en segundo plano.
Ventajas: 100% funcional, bajo consumo de recursos. Desventajas: No hay interfaz gráfica nativa (pero puedes crear un lanzador).
Rclone (“rsync for cloud storage”) is the gold standard for Linux cloud access. It supports WebDAV as a backend.
Setup:
rclone config
# Choose "webdav" -> URL: https://cloud.movistar.es/remote.php/webdav/ -> vendor: "nextcloud" (often compatible) or "other"
# Enter your Movistar Cloud credentials.
Once configured, you can:
The mount feature provides a FUSE filesystem. While not as seamless as a native client, for many Linux users this is the closest to a “full” experience: a mounted drive that programs see as local, with commands to sync when needed.
Creamos un script que monitoree una carpeta local y, ante cualquier cambio, ejecute movistar-cloud-cli sync. No es tan elegante como Rclone, pero es 100% código abierto.