또 세달간 강제 야근/주말 특근..
세달간 확 돈을 땡겨 벌어 보자 에라이 -_-
'개소리 왈왈 > 직딩의 비애' 카테고리의 다른 글
| LG 에어컨 필터 도착! ㄷㄷ (0) | 2016.07.25 |
|---|---|
| 지친다 (2) | 2016.07.05 |
| 일주일 만에 택배도착 (0) | 2016.06.04 |
| 시놀로지.. freeNAS... 우분투... (0) | 2016.06.01 |
| 어떤 아주머니 (0) | 2016.05.29 |
또 세달간 강제 야근/주말 특근..
세달간 확 돈을 땡겨 벌어 보자 에라이 -_-
| LG 에어컨 필터 도착! ㄷㄷ (0) | 2016.07.25 |
|---|---|
| 지친다 (2) | 2016.07.05 |
| 일주일 만에 택배도착 (0) | 2016.06.04 |
| 시놀로지.. freeNAS... 우분투... (0) | 2016.06.01 |
| 어떤 아주머니 (0) | 2016.05.29 |
합산이야.. 네이버가 구글 넘은지가 오래긴 하지만
가장 큰 파이가 네이버를 넘어 버리다니 ㅠㅠ
아무튼... 티스토리에서 구글에서 유입되는걸 잘 못잡는거 같기도 하고..
그냥 우울하네~ 티스토리 버려야 하나? ㅠㅠ
| 네이버 수상한데... (0) | 2016.07.28 |
|---|---|
| 이 미묘한 기분.. (0) | 2016.07.20 |
| 티스토리.... 망해가나? (4) | 2016.06.02 |
| 5월은 가정 (재정) 파탄의 달?!? (0) | 2016.05.13 |
| 문득... 살아있을까? (0) | 2016.04.27 |
gst-launch-1.0 \
v4l2src device=$VIDEO_DEVICE \
! $VIDEO_CAPABILITIES \
! mux. \
alsasrc device=$AUDIO_DEVICE \
! $AUDIO_CAPABILITIES \
! mux. \
avimux name=mux \
! filesink location=test-$( date --iso-8601=seconds ).avi
[링크 : https://www.linuxtv.org/wiki/index.php/GStreamer]
| 초음파 센서 wiring pi 버전 (0) | 2016.07.10 |
|---|---|
| 초음파/온습도 센서 데이터 시트 복사 (0) | 2016.07.10 |
| beowulf / openMPI (0) | 2016.06.28 |
| redmine on raspberrypi (9) | 2016.06.23 |
| gsteamer rtspsink (0) | 2016.06.21 |
System V와 POSIX 차이
[링크 : http://stackcanary.com/?p=59]
System V
[링크 : http://linux.die.net/man/2/shmget]
[링크 : http://linux.die.net/man/2/shmat] attach
[링크 : http://linux.die.net/man/2/shmdt] detach
[링크 : http://linux.die.net/man/2/shmctl]
POSIX
System V shared memory (shmget(2), shmop(2), etc.) is an older shared memory API. POSIX shared memory provides a simpler, and better designed interface; on the other hand POSIX shared memory is somewhat less widely available (especially on older systems) than System V shared memory.
[링크 : http://linux.die.net/man/7/shm_overview]
[링크 : http://linux.die.net/man/3/shm_open]
| pthread detach while (0) | 2016.12.20 |
|---|---|
| fd <-> fp 변환 (0) | 2016.10.07 |
| 메시지 큐 - ipc (0) | 2016.06.28 |
| pthread mutex shm_open (0) | 2016.06.27 |
| 리눅스 동적 라이브러리(*.so) 사용하기 (0) | 2016.04.04 |
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
struct msgbuf {
long mtype; /* message type, must be > 0 */
char mtext[1]; /* message data */
};
int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg);
ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg);
int msgget(key_t key, int msgflg);
[링크 : http://linux.die.net/man/2/msgsnd]
[링크 : http://linux.die.net/man/2/msgget]
[링크 : http://www.joinc.co.kr/w/Site/system_programing/Book_LSP/ch08_IPC]
[링크 : http://www.joinc.co.kr/w/Site/system_programing/IPC/MessageQueue]
| fd <-> fp 변환 (0) | 2016.10.07 |
|---|---|
| shared memory - linux/IPC (0) | 2016.06.28 |
| pthread mutex shm_open (0) | 2016.06.27 |
| 리눅스 동적 라이브러리(*.so) 사용하기 (0) | 2016.04.04 |
| 리눅스 커널 모듈 관련 문서 (0) | 2015.11.06 |
예전에 학교 실습실 관리할때 beowulf 해보고 싶었는데..
라즈베리 슈퍼 컴퓨터가 beowulf 였네..(알고보니 이것도 찾아두고는 잊은건 아니겠지 -_-)
한번 여러 대 사서 해볼까?
Ubuntu beowulf cluster
[링크 : https://www-users.cs.york.ac.uk/~mjf/pi_cluster/src/Building_a_simple_Beowulf_cluster.html]
Raspberrypi B+ 32 node beowulf cluster
[링크 : http://coen.boisestate.edu/ece/raspberry-pi/]
[링크 : http://coen.boisestate.edu/ece/files/2013/05/Creating.a.Raspberry.Pi-Based.Beowulf.Cluster_v2.pdf]
Examples of MPI software include OpenMPI or MPICH. There are additional MPI implementations available.
[링크 : http://askubuntu.com/questions/624994/what-can-a-beowulf-cluster-help-process]
| 초음파/온습도 센서 데이터 시트 복사 (0) | 2016.07.10 |
|---|---|
| rpi gstreamer mux (0) | 2016.06.28 |
| redmine on raspberrypi (9) | 2016.06.23 |
| gsteamer rtspsink (0) | 2016.06.21 |
| 라즈베리 파이 카메라(rpi cam) 렌즈 교체.. (2) | 2016.06.18 |
pthread_mutexattr_destroy, pthread_mutexattr_init - destroy and initialize the mutex attributes object
[링크 : http://linux.die.net/man/3/pthread_mutexattr_init]
mutex 속성을 설정하여 프로세스간 mutex로도 사용이 가능
ret = pthread_mutexattr_setpshared(&mtx_attr, PTHREAD_PROCESS_SHARED);
[링크 : https://kldp.org/node/107186]
[링크 : http://stackoverflow.com/questions/4252005/what-is-the-attribute-of-a-pthread-mutex]
[링크 : http://mintnlatte.tistory.com/357] mmap
결론은.. 공유 메모리를 통해 mutex 키를 공유하여
다른 프로세스들과도 mutex가 가능하다?
| shared memory - linux/IPC (0) | 2016.06.28 |
|---|---|
| 메시지 큐 - ipc (0) | 2016.06.28 |
| 리눅스 동적 라이브러리(*.so) 사용하기 (0) | 2016.04.04 |
| 리눅스 커널 모듈 관련 문서 (0) | 2015.11.06 |
| readl(), writel() (0) | 2015.11.06 |
getconf는 설정값을 불러오는건데.. 시스템인가 커널인가.. 그건 찾아 봐야 할듯
[링크 : http://linux.die.net/man/1/getconf]
$ getconf GNU_LIBPTHREAD_VERSION
NPTL 2.3.4
[링크 : https://kldp.org/node/107186]
| sysbench (0) | 2016.09.04 |
|---|---|
| grep --exclude-dir (0) | 2016.07.09 |
| cp -Lr (0) | 2016.06.14 |
| libxml 크로스컴파일. (shared library) (0) | 2016.06.13 |
| chvt - change Virtual Termianl (0) | 2016.04.12 |
중공군 핵 탈취하고 적군을 전부 몰아 버리는건데
처음 시작하는 곳은 자원이 적으니 후다닥 모아서
있는 애들다 끌고 3시 방향에 가서 자원채취를 하며
자동수리를 블랙마켓에서 올리면 쉬워짐
| c&c generals - usa 1 (0) | 2016.07.08 |
|---|---|
| c&c general - gla 7 (0) | 2016.07.03 |
| c&c general - gla 5 (0) | 2016.06.26 |
| c&c general - gla 4 (0) | 2016.06.26 |
| c&c general - gla 3 (0) | 2016.06.26 |
군대는 군대인지라.. 성난 군중으로 벙커는 하나도 못꺤다 ㅠㅠ
아무튼.. 버기 + 장탄수 업글 + 자동 수리 하고 쉽게 밀었으나..
적군 벙커(?) 4개 이상을 먹어야 하는데 그걸 모르고 기다리다 보니
친절하게 띄워주는 센스
| c&c general - gla 7 (0) | 2016.07.03 |
|---|---|
| c&c general - gla 6 (0) | 2016.06.26 |
| c&c general - gla 4 (0) | 2016.06.26 |
| c&c general - gla 3 (0) | 2016.06.26 |
| c&c generals - gla 2 (0) | 2016.06.15 |