sudo apt-get update
sudo apt-get -y upgrade
echo "deb http://repo.pritunl.com/stable/apt focal main" | sudo tee /etc/apt/sources.list.d/pritunl.list
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
sudo apt update
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
| <?php | |
| // -------------------------- | |
| // | |
| // さくら 共用レンタルサーバー a-blog cms v2.6.1.3 インストーラー | |
| // | |
| // -------------------------- | |
| # インストーラー の | |
| # MySQL の設定を事前に行う場合に |
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
| #!/bin/bash | |
| # Description:UpdateMotd by screenFetch | |
| # References: http://goo.gl/xpWV7L | |
| # 2015/07/08 @ysaotome | |
| FILE_MOTD='/etc/motd' | |
| BIN_DATE='/bin/date' | |
| BIN_FIGLET='/usr/bin/figlet' | |
| BIN_HOSTNAME='/bin/hostname' |
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
| #Wordpress構築チートシート | |
| #元ネタ:https://gist.github.com/ysaotome/2235302 | |
| #対決相手:http://tily.github.io/jtf2013/ | |
| ############################################### | |
| # 環境変数を定義 WEB/APPサーバおよびDBサーバの双方で実行 | |
| ############################################### | |
| ## MySQL管理ユーザのパスワード | |
| export MYSQL_ROOT_PASS='mysql##123' | |
| ## Wordpressデータベース名 |
http://www.sublimetext.com/
Total: USD $70
ちょっと値上がってましたね。。
- クロスプラットフォーム
- windows
- mac
- linux
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
| aptitude install -y git curl python-dev python-pip redis-server ruby1.9.1-full rubygems1.9.1 | |
| aptitude install -y mysql-server libmysqlclient-dev | |
| adduser --system --shell /bin/sh --gecos 'git version control' --group --disabled-password --home /home/git git | |
| adduser --disabled-login --gecos 'gitlab system' gitlab | |
| usermod -a -G git gitlab | |
| su - gitlab | |
| ssh-keygen -q -N '' -t rsa -f /home/gitlab/.ssh/id_rsa | |
| aptitude install gitolite | |
| cp /home/gitlab/.ssh/id_rsa.pub /home/git/gitlab.pub | |
| su - git |