Hello.
Could anyone please show me how to download folders/files that I had previously uploaded to Google Cloud Storage? I tried with the gsutil commands and it kept returning with "[Errono 28] No space left on device". Greatly appreciate your help.
Best regards,
Thang
Verify that the temporary directory on your client machine is not at capacity (on Linux, you may run df -h to check free space). If the temporary directory is indeed at capacity, you may set the TMPDIR variable to point to an alternative directory using one of the following approaches:
export TMPDIR=/some/directory
Another option is increasing the Memory on your VM. You can also try reducing the amount of data used with the rsync command into small chunks that can be handled by your local device. You can also try to use the “cp” command with -n option to prevent overwriting the content of existing files.