http://www.rabbitmq.com/releases/rabbitmq-java-client/v1.7.0/rabbitmq-java-client-javadoc-1.7.0/overview-summary.html
Just another WordPress site
http://www.rabbitmq.com/releases/rabbitmq-java-client/v1.7.0/rabbitmq-java-client-javadoc-1.7.0/overview-summary.html
http://www.rabbitmq.com/build-dotnet-client.html#obtaining
###########################################################
# A startup item has been generated that will aid in
# starting rabbitmq-server with launchd. It is disabled
# by default. Execute the following command to start it,
# and to cause it to launch at startup:
#
# sudo port load rabbitmq-server
###########################################################
http://www.rabbitmq.com/install-generic-unix.html
You can also start the server in “detached” mode with rabbitmq-server -detached, in which case the server process runs in the background.
생각할 수도 없고…
단지 통제에 따르기만 하면된다…
정보의 통제는 이렇기 때문에 예전부터 그 주도권을 가지려했던 대상…
이렇게 편한 방법이!!
=_= 그냥 시스템 설정의 키보드에서 바꿀 수 있음
http://www.eriksmartt.com/blog/archives/273
mkdir -p /tmp/archives/partial && apt-get -d -o dir::cache=/tmp -o Debug::NoLocking=1 install package
http://stackoverflow.com/questions/4419268/how-do-i-download-a-package-from-apt-get-without-installing-it
dpkg -x {deb package file} {dest}
dpkg -x ovpc_1.06.94-3_i386.deb /tmp/ov
How to View and Extract Files from rpm, deb, depot and msi Packages
dylib을 쓰는 어플리케이션을 만들었을 때, 참조하는 lib path가 절대 경로로 들어가 애먹는 경우가 있을때…
install_name_tool -change {old path} {new path} {binary name}
하면 library 참조 경로를 수정할 수 있음…
belliny-on-air:tcmalloctest1 belliny$ otool -L test test: /usr/local/lib/libtcmalloc.4.dylib (compatibility version 6.0.0, current version 6.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0)
belliny-on-air:tcmalloctest1 belliny$ otool -L test test: @executable_path/lib/libtcmalloc.4.dylib (compatibility version 6.0.0, current version 6.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0)
http://stackoverflow.com/questions/4677044/how-to-use-dylib-in-mac-os-x-c
http://ynniv.com/blog/2006/02/deploying-app-that-use-dylibs-on-mac.html