우분투에서 매직마우스 속도 조절하기

먼저 xinput 커맨드로 input 장치 목록을 확인한다. 목록중에 보이는 m189618’s Mouse가 애플 매직마우스1 이다. 마우스 속도가 너무 빨라서 xinput에서 직접 속도를 조절해야만 했다. 설정에서 마우스 포인트 스피드를 최하로 설정해도 마우스포인터가 날라다녔다. user1@user1-GE62-2QD:~$ xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ SynPS/2 […]

iOS 채팅 앱 개발후 리젝 사유 등에 대한 내용

꼬마채팅앱을 개발후 심사요청을 했더니 또 Reject 되어 심사를 통과하지 못했다. 그 이유는 아래와 같다. Your app enables the display of user-generated content but does not have the required precautions in place. Next Steps Please revise your app to implement all of the following precautions: – Require that users agree to terms (EULA) and these terms […]

맥북 sleep에서 돌아오지 않을 경우 해결 방법 [임시방편]

가끔식 맥북이 sleep모드에서 화면이 다시 돌아오지 않을때가 있다. 그런데, 이 현상이 한번 시작되면 잦아진다는게 문제인데, 구글링을 해보니 아래처럼 해주면 증상이 완화되는 것을 찾아냈다. 영원히 주무시고 있는 맥북을 되살리고 싶다면 아래처럼 터미널을 열고 처리해주면 되겟다. Turn off system hibernation Since hibernation mode’s only real benefit is to allow you to resume from sleep in the face […]

Tomcat7 우분투 세팅 과정 정리

우분투에서 로컬 세팅 과정 @@ 톰캣 서버를 부팅 대몬 리스트에서 제외한다. sudo update-rc.d tomcat7 disable default @@ 적절하게 디렉토리를 세팅해 둔다. user1@abab-server:~/public_html$ tree . ├── catalina_base │   └── conf │   ├── Catalina │   │   └── localhost │   │   ├── docs.xml │   │   ├── examples.xml │   │   ├── host-manager.xml │   │   └── manager.xml │   ├── catalina.properties […]

Tomcat 7.0 가상호스트 Virtualhost 설정

tomcat에서 도메인을 기준으로 여러개의 사이트를 운영 즉, 가상호스트를 설정하려면 아래와 같이 하면 된다. <Hostname="localhost" appBase="webapps"unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> </Host> <Host name="www.testdomain.com" appBase="new_webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> </Host> 문제가 www 없이 도메인을 입력하고 들어가면 not found가 되거나 localhost로 연결이 된다. 그냥 apache라면 alias를 지정해주면 되었는데… xml 형태라 어떻게 해줘야하나 몰라서 host를 동일하게 추가해보기도 했고 name에 와일드카드(*)를 […]

Bash awk관련 내용 메모

# grep 문 사용하기 cat KR-160315.csv | awk -F"," 'NR > 1 {printf "%-5s|%-10s|%-30s\t|%-5s|%-15s|%-5s|%s\n", $1,$2,$4,$5,$6,$8,$10 | "grep 00K1" }' | head cat KR-160315.csv | awk -F"," 'NR > 1 {printf "%-5s|%-10s|%-40s|%-5s|%-15s|%-5s|%-s\n", $1,$2,$4,$5,$6,$8,$10}' | head   &를 쓰면 매칭된 스트링이 대치된다. user1@ubuntu-desktop:~/Downloads$ echo "candidate a b c " | awk '{ sub(/candidate/, "& and his wife"); […]

Linux Descriptor 편집

[참고문서] http://www.tldp.org/LDP/abs/html/io-redirection.html exec 3<> /tmp/foo # open fd 3. echo a >&3 # write to it exec 3>&- # close fd 3.   Closing File Descriptors n<&- Close input file descriptor n. 0<&-, <&- Close stdin. n>&- Close output file descriptor n. 1>&-, >&- Close stdout. &> 표준출력, 표준에어를 모두 특정 파일에 모두 출력하라는 의미 […]

Linux에서 구글 SMTP 테스트 하기

암호알아내기 user1@ubuntu-desktop:~$ openssl enc -base64 <<< 'email@gmail.com' d2VidGVycm9ydXNAZ21haWwuY29tCg== user1@ubuntu-desktop:~$ openssl enc -base64 <<< 'tkfkdgkqslek.' MThhbGNsaaaaYQo=   메일 보내기 openssl s_client -connect smtp.gmail.com:465 -crlf 220 smtp.gmail.com ESMTP ud10sm124759201pab.27 – gsmtp helo 250 smtp.gmail.com at your service auth login 334 VXNlcm5hbWU6 d2VidGVycm9ydXNAZ21haWwuY29tCg== 334 UGFzc3dvcmQ6 MThhbGNsaaaaYQo= mail from: <email@gmail.com> 250 2.1.0 OK tv6sm70519976pab.4 – gsmtp rcpt to: <email@email.com> […]