Dropbox Uploader is a BASH script which can be used to upload, download, list or delete files from Dropbox, an online file sharing, synchronization and backup service.
This works great for uploading small files to Dropbox but I have a file that is about 300mb and I get an error when chunking because my shared hosting account is not able to run dd command. Is there another option besides dd?
I've tried changing the chunk size from 5 to 150 and a few numbers in between but the only thing that changes is the total number of chunks.
It will run forever if I don't stop it with ctrl-C.
Uploading chunk 1 of 3
Warning: Couldn't read data from file "/home4/fvxjblmy/tmp/du_chunk_32198",
Warning: this makes an empty POST.
######################################################################## 100.0%
Uploading chunk 2 of 3
Warning: Couldn't read data from file "/home4/fvxjblmy/tmp/du_chunk_32198",
Warning: this makes an empty POST.
######################################################################## 100.0%
Uploading chunk 3 of 3
Warning: Couldn't read data from file "/home4/fvxjblmy/tmp/du_chunk_32198",
Warning: this makes an empty POST.
######################################################################## 100.0%
Uploading chunk 4 of 3
Warning: Couldn't read data from file "/home4/fvxjblmy/tmp/du_chunk_32198",
Warning: this makes an empty POST.
######################################################################## 100.0%
Uploading chunk 5 of 3
Warning: Couldn't read data from file "/home4/fvxjblmy/tmp/du_chunk_32198",
Warning: this makes an empty POST.
######################################################################## 100.0%
This works great for uploading small files to Dropbox but I have a file that is about 300mb and I get an error when chunking because my shared hosting account is not able to run dd command. Is there another option besides dd?
I've tried changing the chunk size from 5 to 150 and a few numbers in between but the only thing that changes is the total number of chunks.
It will run forever if I don't stop it with ctrl-C.