일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- gfortran
- cygwin
- polyglot
- h5py
- jupyter
- HFS+
- HDF5
- MAC
- vim
- hyperref
- GSL
- SSH
- Matplotlib
- virtual
- c++
- datascience
- portforwarding
- arXiver
- conda
- Anaconda
- cython
- tab space
- Windows
- Visual Studio
- openmp
- python
- LaTeX
- intel compiler
- vi
- mpi4py
- Today
- Total
목록SSH (2)
Astro Coke
source: https://gist.github.com/roxlu/5038729 1) 우선은 cygwin set-up 실행파일을 통해 openssh 와 cygrunsrv 패키지를 설치해야한다. 2) Configure SSHD - open a cygwin terminal: start > RIGHT MOUSE ON "Cygwin terminal" AND "RUN AS ADMINISTRATOR" - $ ssh-host-config - Are you sure you want to continue: YES - You have the required privileges: YES - Overwrite existing /etc/ssh_config: YES - Should privilege separation be u..
source: https://www.digitalocean.com/community/tutorials/how-to-set-up-a-jupyter-notebook-to-run-ipython-on-ubuntu-16-04 서버에 접속을 해서 jupyter (or ipython) 를이용할 때, 기본적으로는 서버에 있는 브라우저를 통해 작업을 하도록 설정이 되어 있어 속도가 현저히 느려진다. 이를 해결하기 위해, portforwadring 을 통하여 현재(리모트) 컴퓨터의 브라우저를 대신 이용하는 방법이 있다. 1) portforwarding > ssh -L 8080:localhost:8080 astrodoo@xxx.xxx.xxx.xxx ssh 를 통해 portforwarding을 하는 방법. (-L) 앞의 80..