일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- unix
- .cu
- multiprocessor
- Process
- gpgpu sim
- vim
- GPU
- vi
- Producer consumer
- OS
- Linux
- Virtual Address
- cdua
- nvidia
- GPGPU
- 운영체제
- CSAPP
- ostep
- Multithreading
- parallel programming
- Unified Memory
- vi 여러 창
- thread
- 소비자 생산자
- peer-to-peer access
- ubuntu
- tabedit
- C
- gpgpu-sim
- CUDA
Archives
- Today
- Total
목록ubuntu (2)
하루의 대학원 도전기
리눅스 터미널 프롬프트 유용한 단축키들
출처 : http://egloos.zum.com/ranivris/v/4304292 리눅스 쉘(터미널) 단축키 (커맨드라인 편집) 명령어 책을 잘 사긴 했나 보다. 매 챕터 기록해 두고 써 먹을 게 있으니.. 다양한 단축키가 존재하나 우선 제일 많이 써 먹을 것 같은 것으로 정리해 본다. 1. 제일 많이 쓰일 것 같은 단축 키 ctrl + L : 현 egloos.zum.com 1. 제일 많이 쓰일 것 같은 단축 키 ctrl + L : 현재 입력 글자들은 남겨둔 채 'clear' 실행 ctrl + U : 현재 커서 위치부터 그 줄 처음부분 까지 지우기 2. 그나마 좀 쓰일 것 같은 단축키 ctrl + D : 현재 커서에 있는 글자 지우기 alt + B : 이전 단어로 커서 이동 alt + F : 다음 단어로..
프로그래밍/리눅스
2021. 11. 25. 12:47
[UNIX] communication using ordinary pipe
An ordinary pipe is unidirectional. ( 단방향 ) Parent process and Child process communicate through an ordinary pipe. An Ordinary pipe only exits when parent and child processes are communicating. fd[0] = read end of the pipe fd[1] = write end of the pipe
운영체제
2021. 10. 13. 00:40