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 |
Tags
- 귀납
- Transductive Learning
- Vertex AI
- 연역
- 디자인 패턴
- 대칭키
- Inductive Learning
- Design Patterns
- tmux
- 생성 모델 평가
- Grad-CAM
- python3
- cam
- public key
- SSIM
- posterior collapse
- ARIMA
- DeepLearing.AI
- 생성 모델
- uri
- session 미종료
- deepseek
- url
- ChatGPT
- Google Cloud
- PSNR
- mode collapse
- GCP
- prompt engineering
Archives
- Today
- Total
목록tmux (1)
데이터 과학 노트
tmux (terminal multiplexer)
tmux tmux 는 terminal multiplexer 이다. ssh 연결 (session) 이 끊겨도 서버의 작업이 계속 실행될 수 있도록 사용을 한다. tmux의 계층적 구조 session, window, pane 로 이루어져 있다. session 주요 명령어 tmux # new session (0, 1, 2, ...) tmus new -s [SESSION_NAME] # 특정 이름으로 새 세션 만들기 (ctrl) + b -> d # 세션 분리 / 나오기 (detach) tmux a # 마지막 세션 연결 tmux a -t [SESSION_NAME] # 특정 세션 연결 (attach) window (미사용) (ctrl) + b -> c # 새 윈도우 생성 (ctrl) + d # 윈도우 끄기 (ctrl..
Development
2024. 3. 27. 11:52