Linuxにpkillでプロセスを終了する方法
書式
pkill オプション パターン
操作例
httpdプロセスを終了
# pkill httpd
# pgrep -a httpd
CentOSにmuttとmsmtpをインストールするメモ
1.muttのインストール
#yum install mutt -y
2.muttの設定
#vim/etc/Muttrc
set from=”examplel@gmail.com ...
UbuntuにAIDEを導入するコマンド
$sudo apt install -y aide
$sudo aide.wrapper –init
#dbをコピー
$sudo cp -a/var/lib/aide/aide.db.new/v ...
CentOSにnginx+php7+php-fpmの環境構築操作コマンドメモ
#mkdir/data/php7/cft
#./configure –prefix=/data/php7/cft \
–with-curl \
–with-freetype- ...
「CentOS7入門」firewalld でファイアウォールを設定するコマンド
1.HTTP(80) と HTTPS(443) のポートを開放
# firewall-cmd –zone=public –add-port=80/tcp –permanent
# f ...
[Linux]postfixの設定ファイルを再読み込む方法
操作方法
設定ファイルを再読み込む
# systemctl reload postfix
状態を確認
# systemctl status postfix
サービスを再起動
# syst ...
Ubuntuにphp7.0とapache2のインストールメモ
1.phpとapacheのインストール
# apt-get -y install php php-cgi libapache2-mod-php php-common php-pear php-mbstring
# a2 ...
Linuxにiptablesでポートを解放、停止するメモ
1.ポート接続状況の確認
telnet localhost 5432
ポートを停止
sudo iptables -A INPUT -p tcp –dport 5432 -j DROP
s ...
「Linux」niceコマンドでプログラムの優先度を変更する
書式
nice オプション
使用例
1.デフォルトの優先度は0です
# nice free -s 1 >test21.txt &
2.優先度を低くする
# nice -n ...
Linuxにscreenの基本操作方法を利用するメモ
1.インストール
CentOSの場合
# yum -y install screen
Ubuntuの場合
# sudo apt-get install screen
2.操作方法
CentOS7.2にzsh5.5.1をインストールするメモ
1.ncurses-develのインストール
# yum install -y ncurses-devel
2.zshのインストール
#/usr/local/src
# tar xvf zsh-5. ...
Linuxにiptablesコマンドの使い方
1.アクセスを許可するルールを追加する
書式
iptables -A INPUT -s -j ACCEPT
例
iptables -A INPUT -s 172.17.1.21 -j ACCEPT ...
CentOS7に memcachedをインストールするメモ
1.memcachedのインストール
# yum -y install memcached
2.設定ファイル
# vi/etc/sysconfig/memcached
PORT=”112 ...
「Linux入門」historyでコマンド履歴を表示する
1.コマンド履歴を削除
$ history -c
$ history
1 history
2.過去n回分のコマンドが表示される
# history 3
7 man history ...
「Linux」findコマンドで指定サイズのファイルを検索する方法
書式
find ディレクトリ -type ファイルタイプ f:ファイル d:ディレクトリ l:シンポリックリンク
使用例
1.10MBサイズ以上のファイルを検索
# find/usr/local/s ...
[Linux]mpageコマンドで複数ページを1枚に印刷する
書式
mpage
使用例
3ページを1枚にまとめて印刷
# mpage -3 -P/etc/hosts
# mpage -3/etc/hosts |lpr
「Linux」hostnameでホスト名を表示する方法
書式
hostname オプション 時間
使用例
1.ホスト名を表示
# hostname
2.ホストのドメインを表示
# hostname -d
3.ホストのIPアドレ ...
[Linux入門]splitでファイル分割する
1.ファイル分割
# split -d data_db.zip cft_file
# ls
cft_file00
2.分割するサイズ指定
例500行ごとにファイル分割する場合
# s ...