1

https://drive.google.com/a/uci.edu/uc?export=download&confirm=LJ_a&id=0Bxy-54SBqeekTlE4Qy1mWWpsYTQ

I am attempting to use Wget to download the file above. However, it only generates 1 KB log file. I enter:

    wget https://drive.google.com/a/uci.edu/uc?export=download&confirm=a-GD&id=0Bxy-54SBqeekTlE4Qy1mWWpsYTQ

However, this gives me a log file instead of actually downloading the file.

The file size is 13 GB tar. The log file looks like this:

    --2017-11-14 13:59:32--  https://drive.google.com/a/uci.edu/uc export=download 
    Resolving drive.google.com (drive.google.com)... [IP ADDRESS GIVEN]
    Connecting to drive.google.com (drive.google.com)|[IP ADDRESS GIVEN]... connected.
    HTTP request sent, awaiting response... 400 Bad Request
    2017-11-14 13:59:33 ERROR 400: Bad Request.

1 Answers1

9
  1. Open download link in the browser with incognito mode. Proceed normally as you would to download that file.
  2. Click "Download" button. When download starts in the browser, pause it and copy the download link.
  3. At command prompt, do

    wget copied_link

It should work for any file. or you can directly download your file from here

Kumar
  • 746
  • 1
  • 6
  • 17