yum install gdisk gdisk /dev/sdb mksf.ext4 /dev/sdb1
Finding Recently Modified PHP Files
Finding Recently Modified PHP Files find . -type f -name '*.php' -mtime -7 Search all PHP Files for Suspicious Code find . -type f -name '*.php' | xargs grep -l "eval *(" --color find . -type f -name '*.php' | xargs grep -l "base64_decode *(" --color find . -type f -name '*.php' | xargs grep […]
Mail Server - Postfix SMTP SSL Certificate Installations and Configuration
# mkdir /etc/postfix/ssl # cd /etc/postfix/ssl # openssl req -new -nodes -keyout smtp.theos.in.key -out smtp.theos.in.csr postfix smtp configuration file smtpd_use_tls = yes smtpd_tls_auth_only = yes smtpd_tls_key_file = /etc/postfix/ssl/smtp.theos.in.key smtpd_tls_cert_file = /etc/postfix/ssl/smtp.theos.in.crt smtpd_tls_CAfile = /etc/postfix/ssl/caroot.crt smtpd_tls_loglevel = 1
window install at usb disk for mac os x by virtual machine
맥에서 윈도우 버전 실험용으로.. 설치법 윈도우7이상 가상머신에서 GetWaikTools 다운로드 http://www.rmprepusb.com/tutorials/getwaiktools C:\wim\GetWaikTools.exe 에 복사 Windows의 ISO 이미지 파일 마운트 install.wim 복사 => C:\win\install.wim 관리자 권한으로 cmd.exe 명령프롬프트 실행 usb 외장하드 포맷 diskpart list disk select disk #디스크번호 clean create partition primary size=350 format fs=fat32 quick active assign letter=f create partition primary format fs=ntfs quick assign letter=g […]
fb share callback needs fb login - user's approval
function ClickFBLike() { FB.login(function(response) { console.log('FB.login response', response); FB.ui({ method: 'share', href: 'http://youdomain.com/?ppp=test', caption: 'title....', }, function(response){ if (response && !response.error_code) { console.log('success!!'); } else { console.log('cancelation!!'); } }); }); }
resin + php 서버에서 순수 PHP 를 사용하려면 ...
vi /usr/local/resin-3.1.12/conf/app-default.xml 아래 구문을 주석처라하면 된다. <servlet-mapping url-pattern="*.php" servlet-name="resin-php"/> 주석처리 후 <!--servlet-mapping url-pattern="*.php" servlet-name="resin-php"/-->
MySQL Join 관련 잘 정리한 정보
출처 : Rapapa Dev Story