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