Cannot read and create files on Telebox (Linkbox)

STOP and READ USE THIS TEMPLATE NO EXCEPTIONS - By not using this, you waste your time, our time and really hate puppies. Please remove these two lines and that will confirm you have read them.

What is the problem you are having with rclone?

I cannot read files and create files using rclone linkbox on github codespace
When I try to create a txt file (also .py or anyother file), I popped out :

touch: failed to close 'hello.txt': Input/output error

Run the command 'rclone version' and share the full output of the command.

rclone v1.71.0-beta.8897.5e539c6a7
- os/version: ubuntu 24.04 (64 bit)
- os/kernel: 6.8.0-1027-azure (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.24.5
- go/linking: static
- go/tags: none

Which cloud storage system are you using? (eg Google Drive)

Telebox (Linkbox)

The command you were trying to run (eg rclone copy /tmp remote:tmp)

touch hello.txt

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

[telebox]
type = linkbox
token = XXX
### Double check the config for sensitive info before posting publicly

A log from the command that you were trying to run with the -vv flag

2025/07/15 19:33:21 DEBUG : rclone: Version "v1.71.0-beta.8897.5e539c6a7" starting with parameters ["rclone" "mount" "telebox:" "/workspaces/bibichan_secret_garden/>
2025/07/15 19:33:21 DEBUG : Creating backend with remote "telebox:"
2025/07/15 19:33:21 DEBUG : Using config file from "/home/codespace/.config/rclone/rclone.conf"
2025/07/15 19:33:21 DEBUG : rclone: Version "v1.71.0-beta.8897.5e539c6a7" finishing with parameters ["/usr/bin/rclone" "mount" "telebox:" "/workspaces/bibichan_secr>
2025/07/15 19:33:21 DEBUG : rclone: Version "v1.71.0-beta.8897.5e539c6a7" starting with parameters ["/usr/bin/rclone" "mount" "telebox:" "/workspaces/bibichan_secre>
2025/07/15 19:33:21 DEBUG : Creating backend with remote "telebox:"
2025/07/15 19:33:21 DEBUG : Using config file from "/home/codespace/.config/rclone/rclone.conf"
2025/07/15 19:33:21 INFO  : Linkbox root '': poll-interval is not supported by this remote
2025/07/15 19:33:21 NOTICE: Linkbox root '': --vfs-cache-mode writes or full is recommended for this remote as it can't stream
2025/07/15 19:33:21 DEBUG : Linkbox root '': Mounting on "/workspaces/bibichan_secret_garden/telebox"
2025/07/15 19:33:21 NOTICE: mount helper error: fusermount3: failed to access mountpoint /workspaces/bibichan_secret_garden/telebox: Permission denied
2025/07/15 19:33:21 CRITICAL: Fatal error: failed to mount FUSE fs: fusermount: exit status 1

welcome to the forum,

can you test without using rclone mount

instead using something like this and post the full output.
rclone touch telebox:hello.txt -vv


--vfs-cache-mode writes or full is recommended for this remote as it can't stream


need to fix that error.

Can't upload empty files:

2025/07/15 20:48:40 DEBUG : rclone: Version "v1.71.0-beta.8897.5e539c6a7" starting with parameters ["rclone" "touch" "telebox:hello.txt" "-vv"]
2025/07/15 20:48:40 DEBUG : Creating backend with remote "telebox:"
2025/07/15 20:48:40 DEBUG : Using config file from "/home/codespace/.config/rclone/rclone.conf"
2025/07/15 20:48:40 DEBUG : Touch time 2025-07-15 20:48:40.840416283 +0800 HKT m=+0.024380665
2025/07/15 20:48:40 DEBUG : Linkbox root '': Touching (creating) "hello.txt"
2025/07/15 20:48:40 ERROR : Attempt 1/3 failed with 1 errors and: failed to touch (create): can't upload empty files to this remote
2025/07/15 20:48:40 DEBUG : Touch time 2025-07-15 20:48:40.891037446 +0800 HKT m=+0.075001858
2025/07/15 20:48:41 DEBUG : Linkbox root '': Touching (creating) "hello.txt"                                                                                         2025/07/15 20:48:41 ERROR : Attempt 2/3 failed with 1 errors and: failed to touch (create): can't upload empty files to this remote
2025/07/15 20:48:41 DEBUG : Touch time 2025-07-15 20:48:41.055780332 +0800 HKT m=+0.239744724
2025/07/15 20:48:41 DEBUG : Linkbox root '': Touching (creating) "hello.txt"
2025/07/15 20:48:41 ERROR : Attempt 3/3 failed with 1 errors and: failed to touch (create): can't upload empty files to this remote
2025/07/15 20:48:41 DEBUG : 6 go routines active
2025/07/15 20:48:41 NOTICE: Failed to touch: failed to touch (create): can't upload empty files to this remote

i guess that is a quirk of telebox.
so instead copy a small text file from local to telebox and post the full debug log

It can, but can I live edit the files in rclone? Now I can copy files but cannot edit them.

Because I need to edit the files on github vscode codespace.

need to use the vfs file cache.
--vfs-cache-mode writes or full is recommended for this remote as it can't stream

check out my summary of the two rclone vfs caches

After using "--vfs-cache-mode full", I can create and read files, but the changes are not showed on Telebox's panel.