Linux

1.jdkのダウンロード

解凍
#sudo tar zxvf jdk-8u20-linux-i586.tar.gz

2.フォルダーをコピー
#sudo cp -r ~/jdk1.8.0

Linux

1.cphalconのインストール
#cd/usr/local/src
#git clone git://github.com/phalcon/cphalcon.git
#cd/usr/local/src/cp ...

Linux

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 ...

Linux

#cd/etc/rc.d/init.d/
#vi tomcat

サンプルコード
#!/bin/sh
#
# tomcat: Start/Stop/Restart tomcat
# ...

Linux

操作コマンド

#sudo yum -y install nginx
# sudo/sbin/iptables -I INPUT 5 -p tcp -m tcp –dport 80 -j ACCEPT

Linux

# cat/etc/redhat-release
CentOS Linux release 7.3.1611 (Core)

# vim/etc/firewalld/zones/public.xml
< ...

Linux

CentOSのバージョンは、/etc/redhat-releaseファイル
# cat/etc/redhat-release
CentOS Linux release 7.3.1611 (Core)

Linux

1.エラー現象
$ sudo su
password for mastodon:
mastodon is not in the sudoers file. This incident will be repor ...

Linux

操作手順
#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 ...

Linux

1.jdk1.8ダウンロード
#wget –no-check-certificate –no-cookies –header “Cookie: oraclelicense=acc ...

Linux

サンプルコード
#!/bin/bash
#this shell is use to bachusers
if ;then
echo “Usage:root/batchusers” ...

Linux

mvコマンド
#mv file1 file2
#mv file dir/

mkdirコマンド
#mkdir dir

psコマンド
#ps -ef

rmコマンド ...

Linux

cdコマンド
#cd/etc
# cd
# cd ..
# cd –

cp コマンド
#cp file file1
#cp dir1 dir2 -r

...

Linux

1.Apache、MySQLとPHPのインストール
#sudo apt-get install apache2
#sudo apt-get install mysql-server
#sudo apt-get ...

Linux

1.jdkダウンロード

2.ダウンロードしたxxx-Linux-xx.tar.gzを解凍
#tar xvzf jdk-xxx.tar.gz

3.解凍後ディレクトリを/usr/local/lib

Linux

curlコマンド:
curl -I -m 10 -o/dev/null -s -w %{http_code}

情報下記:
$http_code=”Unable to access”; ...