운영체제82 윈도우7 부팅 usb 만들기 윈도우7 ISO가 있다는 가정하여 진행하겠습니다. 우선 아래 Windows7-USB-DVD-Download-Tool-Installer-ko-KR .exe 다운로드 받습니다. 다운로드 완료 후 설치해 줍니다. 그런데 설치 하려고 하니까 오류가 나오네요. 당황하지 마시고 아래 링크를 이용하여 다운로드 받아 주세요. https://www.microsoft.com/ko-kr/download/details.aspx?id=6041 이링크를 클릭후 한국어로 다운로드 해주고 설치하시면 오류가 해결됩니다. 설치 완료 후 다시 설치해 주면 오류없이 실행됩니다. 실치 완료후 Windows7-USB-DVD-Download-Tool-Installer-ko-KR 를 실행하시면 아래 화면에 iso파일을 선택 할 수 있는 화면이 나.. 2024. 4. 2. find 특정 파일 제외 검색 [find | xargs grep ] 리눅스 find명령어에서 특정 파일 제외 후 검색하는 방법 현재 실무에서 요긴하게 쓰고 있는 명령어 이다. 연동하고 있는 프로그램의 로그를 검색할 때 하루에도 여러 번 사용하고 있다. → 현재폴더에 log확장자를 제외한 파일에서 search 문자열을 검색하는 명령어 find ./ -name "*" -and ! -name "*.log" | xargs grep -n --color=auto "search" 2>/dev/null ./log/search_20211219.txt: 1001: search test ./log/search_20212220.txt: 1001: search test ./log/search_20212220.txt: 1001: search test 중간의 xargs 는 앞에 find에서 찾은 .. 2021. 12. 20. php 5.3에 phpredis 컴파일설치 설치할 서버에 php환경 설치환경 php 5.3.3 redis-2.2.7 파일을 다운로드합니다. wget http://pecl.php.net/get/redis-2.2.7.tgz cs 다운로드한 파일을 압축 풀어 줍니다. 압축 푼 폴더로 이동후 /usr/local/php/bin/phpize 실행해 줍니다. (phpize는 php의 확장 모듈을 올리는 유틸이다.) tar -zxvf redis-2.2.7.tgz package.xml redis-2.2.7/tests/array-tests.php redis-2.2.7/tests/memory.php redis-2.2.7/tests/mkring.sh redis-2.2.7/tests/test.php redis-2.2.7/tests/TestRedis.php redis-2.. 2021. 12. 3. CentOS 7.6 에 redis 설치 /usr/local/src로 이동후 wget 명령으로 파일을 다운로드하고 압축을 푼 후 차례대로 실행합니다. wget http://download.redis.io/redis-stable.tar.gz tar -zxvf redis-stable.tar.gz cd redis-stable make make install [root@localhost redis-stable]# make install cd src && make install make[1]: Entering directory `/usr/local/src/redis-stable/src' Hint: It's a good idea to run 'make test' ;) INSTALL redis-server INSTALL redis-benchmark INST.. 2021. 12. 2. 이전 1 ··· 14 15 16 17 18 19 20 21 다음