System Status: All systems are operational • Services are available and operational.
Click for detailed status
Click for detailed status
Accessing Polybox from Euler¶
Polybox is ETH Zürich's on-premise cloud storage service. While you can't access Polybox directly from Euler, you can transfer files between Euler and Polybox using rclone.
Set up rclone for Polybox¶
rclone is already installed on Euler. To configure it for Polybox:
- Run
rclone configon Euler. - Create a new remote (
n), name it (e.g., "polybox"). - Set the storage type to "webdav".
- Enter the WebDAV URL:
https://polybox.ethz.ch/remote.php/dav/files/USERNAME/(replace USERNAME). - Set the software to "nextcloud".
- Enter your Polybox username.
- Choose to enter a password (
y) and provide it twice. - Skip advanced settings and finish the setup.
The configuration file is saved at ~/.config/rclone/rclone.conf.
Using rclone¶
Test your setup:
- List directories:
rclone lsd polybox: - List files:
rclone ls polybox:
To upload files from Euler to Polybox:
Restrictions¶
- Only use rclone for Polybox on Euler.
- Do not use rclone for other cloud providers.
- Use rclone only on login nodes, not in batch jobs.
Performance tips¶
- Compress files before uploading to reduce size and number of files.
- Use
--transfers 8to upload multiple files at once (default is 4). Avoid very high numbers to prevent server overload.