At NC State you need to be associated with a course or with a research PI to gain access to HPC. For BIT CPT, your instructor has added you to the course project workspace and your account is already activated. You must have completed the Henry2 Basic Bioinformatics training course before we begin here.
Text in red indicates a warning that you must not defy.
Text in bold and green denotes that it requires modification for individual users i.e. do not simply copy and paste without properly adapting it first.
Text in bold and orange denote that is requires modification for At vs. Tom work.
Code to login
To login to HPC using a terminal you will need to use your unique NC State Unity ID to adapt the following command:
ssh YourUnityID@login.hpc.ncsu.edu
Once you have submitted this command, you will be prompted to enter your NCSU password. Do not be alarmed when you do not see any characters typed
This will set you in you home space (where you cannot do work because it has basically no storage space). You can confirm your location by using the command 'pwd' to print your working directory
You should get a response of /home/YourUnityID
Do not do any work in your home directory or on the head node. Only use our class directory and submit work as a job to the scheduler.
Change your directory
cd /share/bitcpt/Fall2022
Now that you are in our course project space you can set up your working directory where you will perform RNA sequence analysis!
List out what is in your current working directory
ll
If you use the command to list ll or ls (all lower case letter L) you will see all our learning community working directories.
ll is for list long
ls is for list short
You should see UnityID directory has been made automatically.
If you do not see your UnityID as a subdirectory within the Fall2022 make this new directory now:
mkdir UnityID
Please change permissions on this directory so that your instructors can gain access
chmod g=rwx UnityID
Accessing your project working directory
From now on, after you login on terminal, you can change your directory here
cd /share/bitcpt/Fall2022/UnityID