일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pulloff
- sidleup
- freebooze
- 자료구조
- MRI
- REINFORCE
- Inorder Traversal
- domain adaptation
- model-free control
- loss functions
- Knowledge Distillation
- rest-api
- clip intensity values
- Excel
- thresholding
- objective functions for machine learning
- checkitout
- Policy Gradient
- sample rows
- resample
- 3d medical image
- scowl
- remove outliers
- non parametic softmax
- normalization
- shadowing
- fastapi
- straightup
- Actor-Critic
- noise contrast estimation
- Today
- Total
목록Programming/Linux (5)
Let's Run Jinyeah

Display all of your drives on a Linux System sudo fdisk -l lsblk 총 2개의 disk (nvme0n1과 nvme1n1)가 마운트 되어 있음 nvme0n1의 마운트 위치: / nvme1n1의 마운트 위치: /data1 Display Size of all of your drives on a Linux System df -h 특정 디렉토리의 File system 용량 확인하기 du -sh # 총 용량 du -h # 모든 하위 디렉토리들의 용량 du -h --max-depth=1 # 첫번째 하위 디렉토리들의 용량
1. 프로세스 확인 및 강제 종료 ps aux | grep python sudo kill -9 4894 2. 장착된 하드디스크 확인 #하드디스크 마운트 위치 예시 /dev/sdq, /dev/sdb... #하드디스크 정보 출력 lsblk 3. 디스크 용량 확인 #파일시스템 용량 확인 df -h #현재 디렉토리 용량 확인 du -sh 4. 디렉토리(파일 제거) rm -rf //
1. local에서 vscode 실행 후 확장(ctrl+shift+X)에서 Remote Development 다운 2. F1을 누른 후 Remote-SSH:Connect to Host...클릭 3. ssh 아이디@ip주소 형식으로 입력하고 비밀번호를 치면 접속됨 참고 https://doheejin.github.io/vscode/2021/02/25/vscode-server.html https://snwo.tistory.com/173
Copy Directory 1. rsync 이용 --ignore-existing : overwriting 없이 복사 가능 -a : 재귀적으로 복사, 권한/그룹/수정시간/소유권 유지 -r : 재귀적으로 복사 -v : 상세 출력 -u : 서버에 있는 파일이 더 최신인 경우 소스에서 서버로 파일을 복사하지 않음 -d : 소스 경로에 없는 파일이 서버에 있을 경우 해당 파일을 삭제함 -R: 상대경로 이용 -h : 사람이 읽기 편한 포맷으로 결과 출력 rsync -avr --ignore-existing // @:// 2. scp 이용 -p : 원본 파일의 변경 시간, 접근시간, 퍼미션 보존 -r : 하위 디렉토리 및 파일까지 재귀적으로 복사 -v : tkdtp wjdqh cnffur -P: 포트 지정 scp -r..
Changing mode from insert mode to command mode From command mode to insert mode - type a/A/i/I/o/O (더보기) From insert mode to command mode - type Esc (escape key) 더보기 Text Entry commands a Append text following current cursor position A Append text to the end of current line i Insert text before the current cursor position I Insert text at the beginning of the cursor line o Open up a new line fol..