forked from miccio-dk/machine-learning-workstation-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# To or from the Internet | ||
This section illustrates some of the most common ways of retrieving data (e.g. datasets) from websites or repositories. | ||
|
||
## Wget | ||
Wget is a simple command for downloading content from direct URLs. | ||
In order to download a file from `<URL>` and call it `<FILENAME>`, just type: | ||
```sh | ||
wget -O <FILENAME> <URL> | ||
``` | ||
|
||
## Rclone | ||
Rclone is a file manager and synchronization tool for a variety of cloud storage and file sharing platforms (e.g. Dropbox, Google Drive, Microsoft OneDrive, Amazon S3). | ||
You can start by adding a platform with typing: | ||
```sh | ||
rclone config | ||
``` | ||
|
||
The interactive instruction will guide you through the setup process. | ||
Refer to their [documentation](https://rclone.org/) for specific guidance with a given platform. | ||
|
||
|
||
## Remote browser (X forwarding) | ||
In some cases the only way of downloading content is from a browser. | ||
In these instances it may be possible to use [X forwarding](/connection/x-forwarding-running-software-with-gui.md) to open a browser running remotely, on your local screen. |