반응형

학습자료(~2017) 232

데이터 모델(플래폼별 데이터 타입의 크기)

64비트 리눅스 FreeBSD NetBSD 데이터타입 iAPX68IA-32 IA-64 SPARC-64 ARM-32 Alpha OpenBSD char 88 8 8 8 8 8 short 1616 16 16 16 16 16 int 1632 32 32 32 32 32 long 3232 32 64 32 64 64 long long N/A64 64 64 64 64 64 pointer 16/3232 64 64 32 64 64 이기종간 데이터 통신시 데이터 모델을 확실히 이해하고 프로그램하자.혹은 stdint.h 에 있는 INT32_T 같은 데이터 타입을 사용하면 좋겠다.

[리눅스] rpm 패키지 파일의 의존 리스트(목록) 확인

원본 : http://www.cyberciti.biz/faq/how-do-i-find-what-dependencies-a-rpm-file-has/ How do I find what dependencies a rpm file has?BY NIXCRAFT ON JANUARY 14, 2006 · 2 COMMENTS · LAST UPDATED AT AUGUST 28, 2006RPM is a Package Manager for popular distribution such as Red Hat, Suse and many others. It is a powerful command line package management system for installing uninstalling, verifying, queryi..

[리눅스] 프로세스 추적(디버그) 개발 방법에 도움이 되는 글

원문 : http://www.linuxjournal.com/article/6100 아래는 제가 보기 편하기 위해 위 글을 복사 붙여넣기 했습니다. Playing with ptrace, Part I From Issue #103November 2002Oct 31, 2002 By Pradeep Padala inSysAdminUsing ptrace allows you to set up system call interception and modification at the user level.Have you ever wondered how system calls can be intercepted? Have you ever tried fooling the kernel by changing system call ar..

ca-bundle.crt, ca bundle file 이란, howto create CA bundle file, CA bundle 파일 만들기

원본 : http://certifie.com/ca-bundle/ ca-bundle.crtInformation on obtaining or building a ca-bundle.crt fileWhat is ca-bundle.crt?ca-bundle.crt is a file that contains well known root CAcertificates.(What is a root CA?) What is it used for?It is used by openssl to validate certificates issued by well known root CAs. It is also used by any third party applications that use openssl, and some that do..

[시리얼(직렬) 통신] 개념, 프로그래밍 자료조사외 터미널 제어

시리얼 통신 자료 출처 : http://kelp.or.kr/korweblog/stories.php?story=07/04/28/0163643&topic=15 시리얼 포트란?http://blog.naver.com/PostView.nhn?blogId=smilekid24&logNo=10029651484&redirect=Dlog&widgetTypeCall=truehttp://blog.naver.com/PostView.nhn?blogId=tomakr&logNo=70005294898&redirect=Dlog&widgetTypeCall=true 터미널 제어http://www.joinc.co.kr/modules/moniwiki/wiki.php/article/terminal#AEN315http://wiki.kldp.org..

학습자료(~2017) 2012.11.02

[리눅스] HOWTO : Creating a Dynamic MOTD in Linux (로그인시 설정 화면 출력)

출처 : http://parkersamp.com/2010/10/howto-creating-a-dynamic-motd-in-linux/ An MOTD is a great way to display relevant messages to users when they connect. But what if you wish to have the MOTD display messages relevant to the specific user or system? What if you want a dynamic MOTD that you can copy to multiple servers with little to no editing of the script?SolutionCreate a custom shell script ..

캐시 자료조사

http://www.terms.co.kr/cache.htm 텀즈 캐시 용어http://kiise.or.kr/e_journal/2012/8/CST/pdf/07.pdf 스토리지의 고성능화에 따른 버퍼캐쉬 계층의 유효성 분석 및 PCM용 캐슁 기법 설계http://stone.backrush.com/pds/f104-sunsolaris.pdf Solaris 파일시스템파일시스템의캐시http://www.ibm.com/developerworks/kr/library/l-linux-filesystem/ 리눅스 파일시스템 분석http://nengjung.kit.ac.kr/~yskim/lecture/com_5_5.html 강남정보대학 - 캐시http://blog.naver.com/PostView.nhn?blogId=count..

학습자료(~2017) 2012.10.22

yum repository 를 변경 (로컬로 변경가능 - rpm 종속 한번에 설치)

yum repository 를 자신이 구축해서 사용할 수도 있고 네트워크 환경이 되지 않는 상황일 때 설치 DVD를 마운트하고 yum repository로 사용할 수 도 있다.글쓴이는 이것을 mysql-server 설치시에 아주 유용하게 사용했다.네트워크 환경이 되지 않는 곳에서 설치 DVD 만 가지고 mysql-server 를 설치할 일이 있었다. 다른 rpm 파일들은 rpm 명령을 이용하여 설치했다. 종속성에 크게 영향이 없는 것들은 종속된 패키지 몇개를 같이 설치하면 되었다. 하지만 mysql-server는 종속성이 너무 많았다. 이 방법 저 방법 찾다가 yum repository를 변경하면 된다는 사실을 알았다.yum repository를 DVD 마운트 포인트로 변경하고 yum 명령어를 치니 my..

[리눅스] yumdownloader (rpm 다운받기)

yum install 에 의해 설치되는 rpm 파일을 직접 받고 싶을 때나 어딘가의 인터넷이 안되는 환경의 장비에 리눅스와 유틸들을 설치 해야할 때가 존재한다.네트워크 환경이 구축이 안된곳에서는 yum 명령이 사용 될 리가 없기 때문에 rpm 파일을 직접 들고 가야할 경우가 생기는데 이때 하나의 패키지를 받기 위해 의존되는 패키지들을 하나하나 다운받기 너무 귀찮을 때가 있다.이때 yumdownloader 를 사용하면 된다. 명령은 간단히 yumdownloader --resolve [패키지명] 이다. 예) nfs-utils 를 받고 싶을 때 yumdownloader --resolve nfs-utils--resolve 옵션은 의존되는 모든 패키지들을 다운 받으라는 의미이다. 패키지 프로젝트 사이트에서 rpm..

반응형