일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ostep
- multiprocessor
- vim
- Producer consumer
- GPGPU
- GPU
- Linux
- Unified Memory
- vi
- unix
- cdua
- C
- vi 여러 창
- Process
- Virtual Address
- tabedit
- .cu
- gpgpu sim
- parallel programming
- Multithreading
- CSAPP
- OS
- ubuntu
- peer-to-peer access
- thread
- CUDA
- nvidia
- gpgpu-sim
- 소비자 생산자
- 운영체제
- Today
- Total
목록전체 글 (58)
하루의 대학원 도전기
https://codex.cs.yale.edu/avi/os-book/OS10/practice-exercises/index-solu.html Operating System Concepts - Practice Exercises We provide solutions to the Practice Exercises of the Tenth Edition of Operating System Concepts , by Silberschatz, Galvin and Gagne. These practice exercises are different from the exercises provided in the text. (Solutions to the exercises in the text ar codex.cs.yale.ed..
출처 : 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 : 다음 단어로..
ostep-projects중 initial-utilities/wzip의 해답 코드입니다. 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 ..

why write on bar inode ? -> to update the inode with a new last-accessed time.

a small disk with 64 blocks. i = inode bitmap d = a data bitmap
ls cd [directory] pwd mkdir [directory name] rmdir [directory] rm [file or directory] clear vi ( editor ) ps mv cp cat echo chmod gcc [c file] gdb [executable file] man [linux command or c function] : open man page [ useful options ] ls -l ls -a you can combine two or more options together. e.g.,) ls -al rm -rf ps -ef gcc -o gcc -Wall -Werror when you compile c file with gcc, sometimes you need ..

PCIe ( Peripheral Componenct Interconnect Express )

initial value of semapohre should be 1.

when a processor accesses memory, it spends a significant amount of time waiting for the data to becom available. this situation is called memory stall (M). ( compute time : C ) with two hardware threads per core( CPU ), we can remedy this situation. this technique is called CMT. chip multithreading.