Checkout our Sandbox channel for more videos.
username : student
password : bigdata123
We have setup SSH port forwarding on port number 2222.
So from the host computer (Windows / Mac), try the following settings.
ssh hostname : localhost
ssh port number : 2222
ssh username : student
ssh password : bigdata123
So from terminal you can do:
$ ssh -l student -p 2222 localhost
Sandbox will have access to Internet. Here are some usage scenarios
$ git clone https://github.com/elephantscale/sandbox
# example
$ wget <a url>
# downloading 2016 Election contribution results
$ wget ftp://ftp.fec.gov/FEC/Presidential_Map/2016/P00000001/P00000001-ALL.zip
Use the SCP or any secure FTP program
hostname : localhost port : 2222 user : student password : bigdata123
A sample command line usage:
# copy a single file
$ scp -P 2222 file_to_copy student@localhost:
# copy a directory (using -r flag)
$ scp -r -P 2222 dir_to_copy student@localhost: