Last active
March 10, 2016 05:23
-
-
Save moxuse/d08975cb02936fd07473 to your computer and use it in GitHub Desktop.
oF on SAKURA VPS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 前提条件 | |
// サクラVPS OS Ubuntu 14.04 | |
// 下準備 | |
$ sudo apt-get update | |
$ sudo apt-get upgrade | |
$ sudo apt-get install pkg-config | |
// linux用のoFをDLしてきて | |
$ wget http://www.openframeworks.cc/versions/v0.9.2/of_v0.9.2_linux64_release.tar.gz | |
$ tar zxvf of_v0.9.2_linux64_release.tar.gz | |
// 今回はubuntu環境なのでlinux/ubuntuのスクリプトを使ってインストール | |
$ cd of_v0.8.4_linux64_release/scripts/linux/ubuntu | |
$ sudo ./install_codeblocks.sh | |
$ sudo ./install_dependencies.sh | |
// xvfbで仮想ディスプレイを作成 | |
$ sudo apt-get install xvfb | |
$ Xvfb :1 -screen 0 1024x768x24 -nolisten tcp & | |
// これで準備できました、あとはプロジェクトを作ってmakeでビルドしましょう | |
// 実行する時DISPLAY環境変数を与えます | |
$ DISPLAY=:1 <Your App> | |
// 肉眼で描画されてる様子を見たいならx11xncでvncを立ててリモートから接続しながら実行しましょう | |
$ x11vnc -listen 0.0.0.0 -rfbport 5900 -noipv6 -passwd password -display :1 -forever & | |
以上です。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment