This file contains hidden or 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
| '-------------------------------------------------------------------- | |
| ' テスト用実行関数① | |
| '-------------------------------------------------------------------- | |
| Sub Test() | |
| Dim nmc_tagger As New NmcTagger | |
| Dim nmc_node As NmcNodeCollection | |
| Dim nmc_param As New NmcParam | |
| ' 各初期化 | |
| nmc_param.DicDir = "C:\All\MeCab\NMeCab0.06.4\dic\ipadic" |
This file contains hidden or 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
| 2015-04-20 00:33:29 [INFO] [Minecraft-Server] <test-kun> てすてすてす |
This file contains hidden or 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
| 2015-04-20 00:27:56 [INFO] [Minecraft-Server] <test-kun> ?????? |
This file contains hidden or 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
| [Server thread/INFO]: Done (0.675s)! For help, type "help" or "?" |
This file contains hidden or 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
| $ tail -n 200 latest.log |
This file contains hidden or 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
| # フォルダ作成 | |
| $ mkdir /root/minecraft | |
| # ファイルのダウンロード | |
| $ wget https://s3.amazonaws.com/Minecraft.Download/versions/1.6.4/minecraft_server.1.6.4.jar | |
| # Minecraftサーバが存在してるかチェック | |
| $ ps aux | |
| # screenコマンド |
This file contains hidden or 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
| $ top |
This file contains hidden or 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
| // 初めてスクリーンを立ち上げる時 | |
| # screen -S Minecraft | |
| // 前回使ったスクリーンにアタッチする場合 | |
| # screen -r Minecraft | |
| // 私が実際に使用しているscreenの場合 | |
| [screen0番目] | |
| 先ほど作ったfunctionを使います。 | |
| # minecraft_run |
This file contains hidden or 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
| $ source .bashrc |
This file contains hidden or 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
| #---------------------------------- | |
| # minecraft commond for mod server | |
| #---------------------------------- | |
| function minecraft_run | |
| { | |
| java -Xms1024M -Xmx2048M -Dfile.encoding=UTF-8 -jar | |
| minecraftforge-universal-1.6.4-9.11.1.965-v164-pregradle.jar | |
| } |