목록작업/리눅스 (39)
도전2022
오늘 가입한 곳에 괜찮은 내용이 있어서 퍼옴. (내가 해온, 해야 할 일을 적어 놓은 듯 해서.ㅋ) 목록 해커가 알아야 할 30가지 (유닉스관련) | ☞--유닉스-1 2006.12.26 15:45 말달리자(kwcma) 카페매니저 http://cafe.naver.com/gozjeogkr/2370 1. 유닉스 기존의 대형 network는 대부분 유닉스를 기반으로 구성되어 있었으며 해커들은 여기서 자양분을 공급받았고 해킹을 해왔다. 그러므로 당연히 알아야 된다. 2. 리눅스 리눅스는 유닉스와 비슷한 형태의 운영체제로 PC 에서구동될 수 있도록만든 유닉스 비슷한 운영체제라고 보면된다. 명령도 거의 비슷하고 커널 구조도 거의 흡사해서 유닉스 사용자는 리눅스를 무리없이 쓸 수 있고 유닉스 해킹법은 리눅스에서도 거의..
자주 사용하는 것인데, 가끔 생각이 나지 않아서 검색, 작성. (가끔 bz2 파일을 풀지 못하는 경험을 했음.) 묶고, 압축하는 형태는 다음과 같다. http://mokuzin21.egloos.com/2363138의 자료를 참고 1. [파일이름].tar 압축 : tar cvf [압축될 파일이름].tar [압축할 파일이름] 풀기 : tar xvf [압축된 파일이름].tar 2. [파일이름].tar.gz, [파일이름].tgz, [파일이름].tar.z 압축 : tar zcvf { [파일이름].tar.gz / .tgz / .tar.z } [압축할 파일이름] 풀기 : tar zxvf { [파일이름].tar.gz / .tgz / .tar.z } 3. [파일이름].tar.bz2 압축 : tar jcvf [파일이름]...
1. MinGW 가 뭘까? http://ko.wikipedia.org/wiki/MinGW MinGW는 마이크로소프트 윈도로 포팅한 GNU 소프트웨어 도구 모음이다. MinGW는 윈도 API를 구현할 수 있는 헤더 파일들을 가지고 있으며 이로써 개발자들이 "자유롭게 쓸 수 있는" 컴파일러인 GCC를 사용할 수 있다. 시그윈 포팅을 사용할 경우 컴파일한 프로그램 결과물이 유닉스 계통의 기능을 가상으로 구현하는 런타임에 의존하는 반면, MinGW의 경우 이러한 기능에 의존하지 않고 마이크로소프트 윈도 기반 프로그램들을 만들 수 있다. 이 MinGW 프로젝트는 두 개의 기본 꾸러미를 관리하고 배포한다. 첫째로는 포팅된 GCC 컴파일러들은 윈도 명령 줄에서, 아니면 IDE에 통합된 채로 쓸 수 있다. 아니면 둘째..
인터넷을 검색해보았는데, 잘 안되더군요. 조금 오래 찾고 wget에서 help도 해보고 몇차래 시도 끝에 성공.ㅋㅋ. 간단한것도 직접 하려니, 시간이 많이 걸리네.ㅠ.ㅠ wget 사용법은 다음과 같다. 인터넷 파일 다운로드 wget http://linux.co.kr/images/linetwork1.gif ftp인 경우에는 사용자의 패스워드를 넣을 수 있는 것이 필요한데 wget에서는 다음의 옵션을 제공한다. FTP options: --ftp-user=USER set ftp user to USER. --ftp-password=PASS set ftp password to PASS. --no-remove-listing don't remove `.listing' files. --no-glob turn off F..
http://linux.die.net/man/ Linux man pages If you know the name of the Linux command, function, or file you are interested in, type it in: SectionsMan pages are grouped into sections. To see the full list of Linux man pages for a section, pick one of: Section 1 user commands (introduction) Section 2 system calls (introduction) Section 3 library functions (introduction) Section 4 special files (in..
LINUX System Call Quick Reference http://www.cheat-sheets.org/saved-copy/Linux_Syscall_quickref.pdf Jialong He Jialong_he@bigfoot.com http://www.bigfoot.com/~jialong_he Introduction System call is the services provided by Linux kernel. In C programming, it often uses functions defined in libc which provides a wrapper for many system calls. Manual page section 2 provides more information about sy..
http://www.linuxfordevices.com/c/a/Linux-For-Devices-Articles/Embedded-Linux-Graphics-Quick-Reference-Guide/ Embedded Linux Graphics Quick Reference Guide By Rick Lehrbaum 2002-02-28 Article Rating: / 4 Rate This Article: Add This Article To: Poor Best When you install Linux on a desktop PC, you normally choose from among a few "standard" graphics support components. You'll likely use the X Wind..
http://www.linux-kvm.org/page/Main_Page Kernel Based Virtual Machine KVM (for Kernel-based Virtual Machine) is a full virtualization solution for Linux on x86 hardware containing virtualization extensions (Intel VT or AMD-V). It consists of a loadable kernel module, kvm.ko, that provides the core virtualization infrastructure and a processor specific module, kvm-intel.ko or kvm-amd.ko. KVM also ..