최근 포스트

TCP/IP server & send file sample

최대 1 분 소요

sample code  #include <unistd.h>                                                                                                                      ...

임의 binary file 만들기.

최대 1 분 소요

TEST code.. 간단히 file 만들어서 write 하는 코드입니다. #include <stdio.h> #define FULL 320*240 void main(void) { FILE *myimage; myimage = fopen("./myimage.rgb...

raspberrypi - install ubuntu 64bit

최대 1 분 소요

Try to intalll ubuntu 64bit version on raspberrypi4 8GB version . connect LAN guide_link1 guide_link2 ID/PW : ubuntu/ubuntu sudo apt-get update sudo ...

[linux]process 확인후 계속 살리기

최대 1 분 소요

#!/bin/bash while [ 1 ] do Cnt=ps -aux|grep "seekware-tcpip"|grep -v grep|wc -l PROCESS=ps -aux|grep "seekware-tcpip"|grep -v grep|awk '{print $1}' if [...