Linux

書式
pkill オプション パターン

操作例
httpdプロセスを終了
# pkill httpd
# pgrep -a httpd

Linux

1.muttのインストール
#yum install mutt -y

2.muttの設定
#vim/etc/Muttrc

set from=”examplel@gmail.com&# ...

Linux

$sudo apt install -y aide
$sudo aide.wrapper –init

#dbをコピー
$sudo cp -a/var/lib/aide/aide.db.new/v ...

Linux

#mkdir/data/php7/cft
#./configure –prefix=/data/php7/cft \
–with-curl \
–with-freetype- ...

Linux

1.HTTP(80) と HTTPS(443) のポートを開放
# firewall-cmd –zone=public –add-port=80/tcp –permanent
# f ...

Linux

操作方法
設定ファイルを再読み込む
# systemctl reload postfix
状態を確認
# systemctl status postfix
サービスを再起動
# syst ...

Linux

1.phpとapacheのインストール
# apt-get -y install php php-cgi libapache2-mod-php php-common php-pear php-mbstring
# a2 ...

Linux

1.ポート接続状況の確認
telnet localhost 5432

ポートを停止
sudo iptables -A INPUT -p tcp –dport 5432 -j DROP
s ...

Linux

書式
nice オプション
使用例
1.デフォルトの優先度は0です
# nice free -s 1 >test21.txt &
2.優先度を低くする
# nice -n ...

Linux

1.インストール
CentOSの場合
# yum -y install screen

Ubuntuの場合
# sudo apt-get install screen

2.操作方法

Linux

1.ncurses-develのインストール
# yum install -y ncurses-devel

2.zshのインストール
#/usr/local/src
# tar xvf zsh-5. ...

Linux

1.アクセスを許可するルールを追加する
書式
iptables -A INPUT -s -j ACCEPT


iptables -A INPUT -s 172.17.1.21 -j ACCEPT ...

Linux

1.memcachedのインストール
# yum -y install memcached

2.設定ファイル
# vi/etc/sysconfig/memcached
PORT=”112 ...

Linux

1.コマンド履歴を削除
$ history -c
$ history
1 history
2.過去n回分のコマンドが表示される
# history 3
7 man history ...

Linux

書式
find ディレクトリ -type ファイルタイプ f:ファイル d:ディレクトリ l:シンポリックリンク

使用例
1.10MBサイズ以上のファイルを検索
# find/usr/local/s ...

Linux

書式
mpage
使用例
3ページを1枚にまとめて印刷
# mpage -3 -P/etc/hosts
# mpage -3/etc/hosts |lpr

Linux

書式
hostname オプション 時間
使用例
1.ホスト名を表示
# hostname

2.ホストのドメインを表示
# hostname -d

3.ホストのIPアドレ ...

Linux

1.ファイル分割
# split -d data_db.zip cft_file
# ls
cft_file00

2.分割するサイズ指定
例500行ごとにファイル分割する場合
# s ...