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 |
Tags
- Grad-CAM
- 대칭키
- prompt engineering
- SSIM
- tmux
- 귀납
- Vertex AI
- url
- ARIMA
- public key
- 연역
- mode collapse
- 디자인 패턴
- Design Patterns
- ChatGPT
- PSNR
- Google Cloud
- GCP
- 생성 모델
- uri
- python3
- posterior collapse
- DeepLearing.AI
- session 미종료
- cam
- Inductive Learning
- Transductive Learning
- deepseek
- 생성 모델 평가
Archives
- Today
- Total
목록session 미종료 (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