Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- MRI
- noise contrast estimation
- sidleup
- Policy Gradient
- 3d medical image
- model-free control
- fastapi
- objective functions for machine learning
- domain adaptation
- normalization
- Actor-Critic
- Inorder Traversal
- remove outliers
- thresholding
- freebooze
- REINFORCE
- pulloff
- non parametic softmax
- checkitout
- 자료구조
- Excel
- resample
- loss functions
- sample rows
- rest-api
- shadowing
- clip intensity values
- straightup
- scowl
- Knowledge Distillation
Archives
- Today
- Total
Let's Run Jinyeah
Linux Command 모음 본문
1. 프로세스 확인 및 강제 종료
ps aux | grep python
sudo kill -9 4894
2. 장착된 하드디스크 확인
#하드디스크 마운트 위치 예시 /dev/sdq, /dev/sdb...
#하드디스크 정보 출력
lsblk
3. 디스크 용량 확인
#파일시스템 용량 확인
df -h
#현재 디렉토리 용량 확인
du -sh <디렉토리명>
4. 디렉토리(파일 제거)
rm -rf /<diretory>/<to/<delete>
5. 퍼미션 조정
#drwxrwxrwx 파일타입-소유자권한-소유그룹권한-모든사람공개권한
#r = 4, w = 2, x = 1
#하위 디렉토리의 모든 디렉토리 및 파일의 퍼미션 변경
chmod -R 777 <파일/디렉토리명>
6. 파일/디렉토리 찾기
# find <찾을 위치> -name <찾을 파일명>
find . -name "patient*.npy"
# 빈 파일 찾기
find . -empty
# 디렉토리만 찾기
find . -name "test*" -type d
7. 파일 및 디렉토리 정보 찾기
-l : 자세한 정보 출력(퍼미션, 포함된 파일수, 소유자, 그룹 , 파일크기, 수정일자, 파일이름)
-h : 사람이 보기 좋게 표시
-R: 하위 디렉토리까지 출력
ls -l
8. 환경변수 확인
# 모든 환경변수 출력
export
# 특정 환경변수 출력
echo $[환경변수명]
'Programming > Linux' 카테고리의 다른 글
Linux Disk 확인 및 Filesystem 용량 확인 (0) | 2022.08.08 |
---|---|
VS Code 원격서버 연동 (0) | 2022.05.17 |
Copy Files from local to Ubuntu server (0) | 2022.05.17 |
VIM Editor Commands (0) | 2021.05.06 |
Comments