Skip to content
Snippets Groups Projects
Commit ca5fe1c0 authored by Carrie A Brown's avatar Carrie A Brown
Browse files

Merge branch 'WinGeneral' into 'master'

QuickStart updates

See merge request !46
parents fbd93a23 fa6a5992
Branches
Tags
1 merge request!46QuickStart updates
......@@ -78,7 +78,7 @@ Resources
- ##### Tusker - consists of 106 AMD Interlagos-based nodes (6784 cores) interconnected with Mellanox QDR Infiniband.
- ##### [Red](http://hcc.unl.edu/red/index.php) - This cluster is the resource for UNL's US CMS Tier-2 site.
- ##### Red - This cluster is the resource for UNL's US CMS Tier-2 site.
- [CMS](http://www.uscms.org/)
- [Open Science Grid](http://www.opensciencegrid.org)
......@@ -86,7 +86,7 @@ Resources
- ##### Anvil - HCC's cloud computing cluster based on Openstack
- ##### [Glidein](The-Open-Science-Grid_11635314.html) - A gateway to running jobs on the OSG, a collection of computing resources across the US.
- ##### Glidein - A gateway to running jobs on the OSG, a collection of computing resources across the US.
Resource Capabilities
---------------------
......
......@@ -7,8 +7,12 @@ weight = "22"
##### Use of Duo two-factor authentication is **required** to access HCC resources.
##### Please see [Setting up and Using Duo]({{< relref "setting_up_and_using_duo" >}}).
---
###### [Jump to the Mac Tutorial Video](#mac-tutorial-video) | [Jump to the Linux Tutorial Video](#linux-tutorial-video)
- [Access to HCC Supercomputers] (#access-to-hcc-supercomputers)
- [File Transferring with HCC Supercomputers] (#file-transfering)
- [SCP] (#using-the-scp-command)
- [CyberDuck] (#using-cyberduck)
- [Mac Tutorial Video](#mac-tutorial-video)
- [Linux Tutorial Video](#linux-tutorial-video)
This quick start will help you configure your personal computer to work
with the HCC supercomputers.
......@@ -19,7 +23,7 @@ Users]({{< relref "for_windows_users" >}}).
Access to HCC Supercomputers
-------------------------------
For Mac/Linux users, use the system program Terminal to assess to the
For Mac/Linux users, use the system program Terminal to access to the
HCC supercomputers. In the Terminal prompt,
type `ssh <username>@tusker.unl.edu` and the corresponding password
to get access to the HCC cluster **Tusker**. Note that &lt;username&gt;
......@@ -37,8 +41,10 @@ $ <password>
File Transferring with HCC Supercomputers
-----------------------------------------
### Using the SCP command
For Mac/Linux users, file transferring between your personal computer
and the HCC supercomputers can be achieved through the commend `scp`.
and the HCC supercomputers can be achieved through the command `scp`.
Here we use **Tusker** for example. **The following commands should be
executed from your computer. **
......@@ -48,7 +54,7 @@ executed from your computer. **
$ scp -r ./<folder name> <username>@tusker.unl.edu:/work/<group name>/<username>
{{< /highlight >}}
The above commend line transfers a folder from the current directory
The above command line transfers a folder from the current directory
(`./`) of the your computer to the `$WORK` directory of the HCC
supercomputer, Tusker. Note that you need to replace `<group name>`
and `<username>` with your HCC group name and username.
......@@ -59,11 +65,11 @@ and `<username>` with your HCC group name and username. 
$ scp -r <username>@tusker.unl.edu:/work/<group name>/<username>/<folder name> ./
{{< /highlight >}}
The above commend line transfers a folder from the `$WORK` directory of
The above command line transfers a folder from the `$WORK` directory of
the HCC supercomputer, Tusker, to the current directory (`./`) of the
your computer.
Using Cyberduck
### Using Cyberduck
---------------
If you wish to use a GUI, be aware that not all programs will function
......
......@@ -8,8 +8,45 @@ weight = "20"
##### Please see [Setting up and Using Duo]({{< relref "setting_up_and_using_duo" >}}).
---
###### [[Jump to the Tutorial Video]](#tutorial-video)
- [Access to HCC Supercomputers] (#access-to-hcc-supercomputers)
- [For Windows 10 Users](#windows-10)
- [For Windows 7 and 8.1 Users](#windows-7-and-8-1)
- [File Transferring with HCC Supercomputers] (#file-transferring)
- [SCP - Command Line] (#scp)
- [WinSCP - GUI] (#winscp)
- [Tutorial Video](#tutorial-video)
Access to HCC Supercomputers
-------------------------------
{{% notice info %}}
If you are on a Mac, please use the quickstart for [For Mac/Linux
Users]({{< relref "for_maclinux_users" >}}).
{{% /notice %}}
### Windows 10
--------------
For Windows 10 users, use the Command Prompt, accessed by entering `cmd` in the start menu, to access to the
HCC supercomputers. In the Command Prompt,
type `ssh <username>@tusker.unl.edu` and the corresponding password
to get access to the HCC cluster **Tusker**. Note that &lt;username&gt;
should be replaced by your HCC account username. If you do not have a
HCC account, please contact a HCC specialist
({{< icon name="envelope" >}}[hcc-support@unl.edu] (mailto:hcc-support@unl.edu))
or go to http://hcc.unl.edu/newusers.
To use the **Crane** cluster, replace tusker.unl.edu with crane.unl.edu.
{{< highlight bash >}}
C:\> ssh <username>@tusker.unl.edu
C:\> <password>
{{< /highlight >}}
### Windows 7 and 8.1
--------------
This quick start will help you configure your personal computer to work
with the HCC supercomputers. Here we use the two third party application
**PuTTY** and **WinSCP** for demonstration.
......@@ -17,15 +54,6 @@ with the HCC supercomputers. Here we use the two third party application
PuTTY: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
or [Direct Link](https://the.earth.li/~sgtatham/putty/latest/w32/putty.exe)
WinSCP: http://winscp.net/eng/download.php
{{% notice info %}}
If you are on a Mac, please use the quickstart for [For Mac/Linux
Users]({{< relref "for_maclinux_users" >}}).
{{% /notice %}}
Access to HCC Supercomputers
-------------------------------
Here we use the HCC cluster **Tusker** for demonstration. To use the
**Crane** or cluster, replace `tusker.unl.edu` with `crane.unl.edu`.
......@@ -82,6 +110,43 @@ Here we use the HCC cluster **Tusker** for demonstration. To use the
File Transferring with HCC Supercomputers
-----------------------------------------
{{% notice info%}}
For best results when transfering data to and from the clusters, refer to [Handling Data]({{< ref "/guides/handling_data" >}})
{{%/notice%}}
### SCP
For Windows users, file transferring between your personal computer
and the HCC supercomputers can be achieved through the command `scp`.
Here we use **Tusker** for example. **The following commands should be
executed from your computer. **
**Uploading from local to remote**
{{< highlight bash >}}
C:\> scp -r .\<folder name> <username>@tusker.unl.edu:/work/<group name>/<username>
{{< /highlight >}}
The above command line transfers a folder from the current directory
(`.\`) of the your computer to the `$WORK` directory of the HCC
supercomputer, Tusker. Note that you need to replace `<group name>`
and `<username>` with your HCC group name and username.
**Downloading from remote to local**
{{< highlight bash >}}
C:\> scp -r <username>@tusker.unl.edu:/work/<group name>/<username>/<folder name> .\
{{< /highlight >}}
The above command line transfers a folder from the `$WORK` directory of
the HCC supercomputer, Tusker, to the current directory (`.\`) of the
your computer.
### WinSCP
WinSCP: http://winscp.net/eng/download.php
Usually it is convenient to upload and download files between your personal computer
and the HCC supercomputers through a Graphic User Interface (GUI).
Download and install the third party application **WinSCP**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment