- to be run sequentially
description | command |
---|---|
run python script | python xx.py |
run the following command : this pauses the process | CTRL + Z ( this works for ubuntu server) |
put the process in background | bg |
set nu | |
set nocompatible " required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') |
This document shows step by step procedure on how to SSH without using password everytime | |
Type the following commands: | |
1. cd .ssh | |
2. vim config | |
when you open config file, type the following: | |
host snake |
This document is about running jupyter notebook on a server and accessing it on a local machine. | |
On the remote machine, start jupyter notebook | |
remote_user@remote_host$ ipython notebook --no-browser --port=8889 | |
when the notebook will start, it will generate a token. | |
On the local machine, start SSH tunnel |