일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ngs
- github
- CSS
- julia
- drug development
- pandas
- DataFrame
- HTML
- Batch effect
- javascript
- js
- matplotlib
- ChIPseq
- scRNAseq
- Bioinformatics
- CUT&RUN
- scRNAseq analysis
- single cell
- single cell rnaseq
- 싱글셀 분석
- MACS2
- EdgeR
- python matplotlib
- PYTHON
- CUTandRUN
- 비타민 C
- Git
- cellranger
- drug muggers
- single cell analysis
Archives
- Today
- Total
목록서버에서 파일 복사 (1)
바이오 대표
[ SSH ] 내 IP 주소 확인하기 (ifconfig), 서버 연결하기 (ssh), 서버에서 파일 복사하기(scp)
내 IP 주소 확인 방법 $ ifconfig (Linux) $ ipconfig getifaddr en0 (macOS) 서버 연결하기 $ ssh username@remoteHost or ssh username@server_IP_address 예시) ssh ybae@132.26.4.5 서버에서 local 로 데이터 복사 하기 $ scp username@remoteHost:/remote/dir/file.txt /local/dir/ ** 이때 복사를 받을 파일의 acess permission 에 wirte permission 가 있어야 한다. $ls -l 을 하였을때 파일 앞쪽에 drwxr-xr-x이면 실행되지 않을 것이다. 이를 drwxrwxr-x로 바꿔주고 싶으면 $chmod 775 /local/dir/ 를..
Programming enviorment
2023. 4. 7. 07:37