Ubuntu 14.04にeclipseをインストールするメモ
1.jdkのダウンロード
解凍
#sudo tar zxvf jdk-8u20-linux-i586.tar.gz
2.フォルダーをコピー
#sudo cp -r ~/jdk1.8.0
CentOSにcphalconのインストール方法メモ
1.cphalconのインストール
#cd/usr/local/src
#git clone git://github.com/phalcon/cphalcon.git
#cd/usr/local/src/cp ...
Linuxにphp7.0をyumでインストールするメモ
1.php7のダウンロード
2.php7の解凍
#tar zxvf php-7.0.0.tar.gz
#cd php-7.0.0
3.依存パッケージをインストール
#yum i
Linuxでメモリ開放スクリプトコード
#vi/opt/free.sh
#!/bin/bash
sync
free -m |grep -i mem |awk ‘{if($4 < 400){ printf(“3R ...
「Linux」シェルプログレスバー(処理の進捗)を表示するコード
サンプルコード
#!/bin/bash
b=”
i=0
while
do
printf “progress:%d%%\r” $b $i
s ...
Ubuntuにおけるtomcat起動スクリプトコード
#cd/etc/rc.d/init.d/
#vi tomcat
サンプルコード
#!/bin/sh
#
# tomcat: Start/Stop/Restart tomcat
# ...
CentOS 6.5 にnginxをインストールする
操作コマンド
#sudo yum -y install nginx
# sudo/sbin/iptables -I INPUT 5 -p tcp -m tcp –dport 80 -j ACCEPT
Centos7.3 でポートを開放する方法
# cat/etc/redhat-release
CentOS Linux release 7.3.1611 (Core)
# vim/etc/firewalld/zones/public.xml
< ...
CentOS7のバージョン確認方法
CentOSのバージョンは、/etc/redhat-releaseファイル
# cat/etc/redhat-release
CentOS Linux release 7.3.1611 (Core)
CentOS7に「mastodon is not in the sudoers file. This incident will be reported.」の解決方法
1.エラー現象
$ sudo su
password for mastodon:
mastodon is not in the sudoers file. This incident will be repor ...
Redhat6.5にgccをインストールする手順
操作手順
#rpm -ivh mpfr-2.4.1-6.el6.x86_64.rpm
#rpm -ivh ppl-0.10.2-11.el6.x86_64.rpm
#rpm -ivh cpp-4.4.7-4.e ...
CentOS7.2にjdk1.8をインストールする手順
1.jdk1.8ダウンロード
#wget –no-check-certificate –no-cookies –header “Cookie: oraclelicense=acc ...
「Linux入門」複数のユーザを一括作成するshellコード
サンプルコード
#!/bin/bash
#this shell is use to bachusers
if ;then
echo “Usage:root/batchusers” ...
「Linux入門」よく利用するshellコマンドのまとめ第2回
mvコマンド
#mv file1 file2
#mv file dir/
mkdirコマンド
#mkdir dir
psコマンド
#ps -ef
rmコマンド ...
「Linux入門」よく利用するshellコマンドのまとめ第1回
cdコマンド
#cd/etc
# cd
# cd ..
# cd –
cp コマンド
#cp file file1
#cp dir1 dir2 -r
...
Ubuntu 16.04にZabbix 3.2 をインストールするメモ
1.Apache、MySQLとPHPのインストール
#sudo apt-get install apache2
#sudo apt-get install mysql-server
#sudo apt-get ...
UbuntuにOracle JDKをインストールするメモ
1.jdkダウンロード
2.ダウンロードしたxxx-Linux-xx.tar.gzを解凍
#tar xvzf jdk-xxx.tar.gz
3.解凍後ディレクトリを/usr/local/lib
curlでHTTPステータスコードhttp_code一覧情報を取得する方法
curlコマンド:
curl -I -m 10 -o/dev/null -s -w %{http_code}
情報下記:
$http_code=”Unable to access”; ...