Main Page: Difference between revisions
Jump to navigation
Jump to search
| Line 24: | Line 24: | ||
==== Experiments ==== | ==== Experiments ==== | ||
= | Look for your public and private keys inside the ssh directory | ||
<syntaxhighlight lang="yaml"> cd .ssh </syntaxhighlight> | |||
Copy your keys to th .ssh directory in talon | |||
<syntaxhighlight lang="yaml"> scp <keys> username@talon.und.edu:.ssh</syntaxhighlight> | |||
Compare the differences between the copied keys | |||
<syntaxhighlight lang="yaml">diff <authorized_keys> <public key></syntaxhighlight> | |||
Unlock private key | |||
<syntaxhighlight lang="yaml">ssh-add</syntaxhighlight> | |||
Agent forwarding to get rid of typing the passphrase when login | |||
<syntaxhighlight lang="yaml">ssh -A username@talon.und.edu</syntaxhighlight> | |||
Make a shortcut typing "talon" to login to talon without typing "ssh username@talon.und.edu" | |||
#Open the bashrc directory in the home directory | |||
<syntaxhighlight lang="yaml">nano ~/.bashrc</syntaxhighlight> | |||
#Type the below statement in your bashrc file and save | |||
<syntaxhighlight lang="yaml">alias talon ="ssh -l username -AY talon.und.edu"</syntaxhighlight> | |||
=== Other information === | === Other information === | ||
Revision as of 06:27, 8 July 2025
Welcome to the Manu and Loh labs' wiki
This wiki is a place to document howtos, protocols, recipes etc. specific to the Manu and/or the Loh labs.
Loh lab
Manu lab
Data transfers
- Transferring files from the Histology Core's server to blastula
- Transferring files from the Imaging Center's server to blastula
- Transferring files from the Epigenetics Core servers to blastula
JupyterHub
- Accessing JupyterHub on Manu Lab's Machines
- Create a condo environment on JupyterHub and add it to JupyterHub
- Creating a git repository on Manu Lab's Machines
- Cloning a git repository from blastula
Experiments
Look for your public and private keys inside the ssh directory
cd .ssh
Copy your keys to th .ssh directory in talon
scp <keys> username@talon.und.edu:.ssh
Compare the differences between the copied keys
diff <authorized_keys> <public key>
Unlock private key
ssh-add
Agent forwarding to get rid of typing the passphrase when login
ssh -A username@talon.und.edu
Make a shortcut typing "talon" to login to talon without typing "ssh username@talon.und.edu"
- Open the bashrc directory in the home directory
nano ~/.bashrc
- Type the below statement in your bashrc file and save
alias talon ="ssh -l username -AY talon.und.edu"
Other information
Consult the User's Guide for information on using the wiki software.