User Tools

Site Tools


dt

sidebar

Listed below are instructions for setting up an account on deepthought2 (DT2) located at UMD.

Instructions:

Dr. Klauda will submit a request to add you as a user to our account on DT2. Once this is done, you should get a generic email from IT regarding the resource.

Details of DT2 can be found:

https://hpcc.umd.edu/

Now for the cluster setup:

If you are not familiar with the use of LINUX, I would first go through some on-line tutorials for commands to use in LINUX and here (Linux Guide). To login to DT2 (login.deepthought2.umd.edu) with Windows you will need to have PuTTY (Extra Software) to connect to deepthought:

http://www.chiark.greenend.org.uk/%7Esgtatham/putty/

And the following program will be useful to transfer files between deepthought and your computer

http://winscp.net/eng/index.php

Built-in commands for MAC users can be used to connect via the command line (scp) and apps for file transfer (eg, cyberduck).

Then, take a general look at the website of the HPCC OIT to get a general idea on how to login and submit jobs. Your jobs should not run in your home directory. They should instead be in the /lustre directory. You should first make a subdirectory in this with your username (mkdir is the command). Running simulations should be in organized directories. So think of some naming scheme for simulations. Before starting a simulation, you will need to make a slight change to you .cshrc file in your home directory. Using the program nano or vim type the following when you are in your home directory:

 nano .cshrc.mine 

At the end of the file add the following line:

 unset noclobber 

This is needed for the simulations to allow for files to write over existing files.

One more recent change is that you will need to allow me to look into your /lustre files. After you've made the directory (described above), you will need to allow access to the files by typing and replacing username with yours below. Please copy and paste these commands after the first, as if you omit a '.' this will now work properly.

cd /lustre/username 
chmod a+r . 
chmod -R a+r * 
find . -type d -exec chmod a+x {} \; 
dt.txt · Last modified: 2021/06/30 09:59 by admin