Main Page: Difference between revisions
Jump to navigation
Jump to search
| Line 26: | Line 26: | ||
==== Login to talon without passwords ==== | ==== Login to talon without passwords ==== | ||
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 user_name@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 user_name@talon.und.edu</syntaxhighlight> | ||
Make a shortcut typing "talon" to login to talon without typing "ssh user_name@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 user_name -AY talon.und.edu"</syntaxhighlight> | ||
=== Other information === | === Other information === | ||
Revision as of 06:06, 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
Login to talon without passwords
Look for your public and private keys inside the ssh directory
cd .ssh
Copy your keys to th .ssh directory in talon
scp keys user_name@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 user_name@talon.und.edu
Make a shortcut typing "talon" to login to talon without typing "ssh user_name@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 user_name -AY talon.und.edu"
Other information
Consult the User's Guide for information on using the wiki software.