Skip to content

Instantly share code, notes, and snippets.

@ilkerkesen
Last active February 14, 2021 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilkerkesen/0c6f47c60f6f9b0a2ea653f01ed4320e to your computer and use it in GitHub Desktop.
Save ilkerkesen/0c6f47c60f6f9b0a2ea653f01ed4320e to your computer and use it in GitHub Desktop.
cluster environment
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export PATH=$PATH:$HOME/.local/bin:$HOME/bin
source /kuacc/apps/anaconda/3.6/etc/profile.d/conda.sh
[ikesen16@login02 ~]$ cat .bashrc
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# set -o vi
export SCRATCH=/scratch/users/$USER
export JULIA_PKGDIR=$SCRATCH/.julia
export TERM=xterm-256color
# modules
module load julia/1.5.3
module load cuda/10.1
module load cudnn/7.6.5/cuda-10.1
module load anaconda/3.6
module load ffmpeg/4.1.3
# module load git/2.16.1
# module load singularity/2.4.2
alias ta="tmux a"
alias tt="tmux a -t"
alias tn="tmux new -t"
alias ts="tmux new -s"
alias tl="tmux ls"
alias ls='ls --color -h --group-directories-first'
export JULIA_REVISE_POLL=1
export LD_LIBRARY_PATH=/kuacc/users/ikesen16/local/lib:$LD_LIBRARY_PATH
export HISTCONTROL=ignoreboth:erasedups
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
mesg n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment