Linux

1.ユーザー作成
#useradd -s/sbin/nologin tomcat

2.tomcatファイル展開&配置
#tar zxvf apache-tomcat-8.5.37.tar.gz

Linux

書式
netstat オプション

使用例
1.ネットワークに関する情報
# netstat
Active Internet connections (w/o servers)
Pro ...

Linux

1.設定ファイルの編集
# vim/etc/ssh/sshd_config
修正前 PasswordAuthentication yes
修正後 PasswordAuthentication no

...

Linux

# date +”%Y/%m/%d %p %I:%M:%S”
2017/12/18 AM 01:27:11

# date +”%Y%m%d”
20171218 ...

Linux

設定の表示
#yum-config-manager

リポジトリの一覧表示
yum repolist

リポジトリを追加
#yum-config-manager –add-rep ...

Linux

書式
tee オプション ファイル名
使用例1
ディスプレイとテキストファイルの両方に出力
# date | tee date.txt
2021年 4月 8日 木曜日 23:32:18 EDT ...

Linux

1.SSHを設定
vimのインストール
#sudo apt-get install vim

port番号の変更
#sudo vi/etc/ssh/sshd_config

修正前

Linux

書式
exec > ファイル名

使用例
# bash
# exec > sample.txt
# date
# exit
exit
# cat sampl ...

Linux

1.所有者に実行権限を付与する
# chmod u+x test.sh
# ls -la test.sh
-rwxr–r–. 1 root root 0 4月 15 23:37 test ...

Linux

IRQについて
0 システムタイマー
1 キーボード
2 スレーブの割り込みを転送
3 シリアルポート(COM2)
4 シリアルポート(COM1)
5 パラレルポート(LPT2) ...

Linux

1.Apacheをインストールする
# yum install httpd

2.Apacheを起動する
# systemctl start httpd

自動起動
# systemctl ...

Linux

1.epelをインストールする
# yum install epel-release

2.必要なパッケージをインストールする
# yum install python librsync gnupg pyth ...

Linux

# cat/etc/fstab
内容表示
#
#/etc/fstab
# Created by anaconda on Sun Mar 7 10:44:29 2021
#
# Acces ...

Linux

書式
/文字列/d 文字列が含まれる行を削除
使用例
# cat test.txt
abc
def
#789
errr
# sed/^#/d test.txt
a ...

Linux

使用例
1.行頭に移動
0
2.行末に移動
$
3.ファイルの4行目に移動
4G

Linux

書式
rpm オプション
-a, –all
すべてのパッケージについて問い合わせ/検証します。
問い合わせオプション (-q または –query)

grep オプシ ...

Linux

1.既にインストールしたmysqlを確認
#yum list installed | grep mysql
#yum -y remove mysql-libs.x86_64

2.rpmのダウンロード