EOVSA Data Analysis Tutorial: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Software= Here are some basic information on CASA and the software we are developing: * [https://github.com/binchensun/suncasa suncasa] A CASA/python-based package being deve...") |
|||
Line 8: | Line 8: | ||
===Setup connections to AWS server=== | ===Setup connections to AWS server=== | ||
* Obtain SSH Key from [mailto:bin.chen@njit.edu Bin Chen] | * Obtain SSH Key from [mailto:bin.chen@njit.edu Bin Chen] | ||
* Put it under a secure location on your own machine. Recommend to use "~/.ssh" (create | * Put it under a secure location on your own machine. Recommend to use "~/.ssh" (create if it does not exist by "mkdir ~/.ssh"). | ||
* Edit the permission of ~/.ssh and the key (here I use ~/.ssh as the directory to place your key) | * Edit the permission of ~/.ssh and the key (here I use ~/.ssh as the directory to place your key) | ||
<pre> | <pre> | ||
Line 18: | Line 18: | ||
ssh -XY -i ~/.ssh/guest_key.pem guest@3.208.184.162:22 | ssh -XY -i ~/.ssh/guest_key.pem guest@3.208.184.162:22 | ||
</pre> | </pre> | ||
===Setup SunCASA on your own machine=== | ===Setup SunCASA on your own machine=== |
Revision as of 22:43, 15 April 2019
Software
Here are some basic information on CASA and the software we are developing:
- suncasa A CASA/python-based package being developed for imaging and visualizing spectral imaging data. ONLY AVAILABLE on UNIX-BASED PLATFORMS (MacOS High-Sierra and later, REDHAT 6 & 7 and equivalents)
- Obtaining CASA; CASA Guides
- GSFIT
Using SunCASA
Setup connections to AWS server
- Obtain SSH Key from Bin Chen
- Put it under a secure location on your own machine. Recommend to use "~/.ssh" (create if it does not exist by "mkdir ~/.ssh").
- Edit the permission of ~/.ssh and the key (here I use ~/.ssh as the directory to place your key)
chmod -R 700 ~/.ssh chmod 400 guest_key.pem
- Log on to Bin's test AWS server
ssh -XY -i ~/.ssh/guest_key.pem guest@3.208.184.162:22