Siedemnaste_21

 0    21 フィッシュ    michalesq
印刷 遊びます 自分をチェック
 
質問 - 答え -
Delete the last line
学び始める
sed '$d' file. txt
Print only lines with three consecutive digits
学び始める
sed '/[0-9]\{3\}/p' file. txt
Unless boom is found replace aaa with bb
学び始める
sed '/boom/! s/aaa/bb/' file. txt
Delete all lines from line 17 to 'disk'
学び始める
sed '17,/disk/d' file. txt
How to install software for firewall and firewall-conf
学び始める
yum install firewall firewall-config
Display firewall zones
学び始める
firewall-cmd --get-zones
Display display default zone
学び始める
firewall-cmd --get-default-zone
List services in default zone (public)
学び始める
firewall-cmd --list-all
List services in home zone
学び始める
firewall-cmd --zone=home --list-all
Not persistently add source IP to zone home, all services will be allowed for this source (disappaear after a reload/restart)
学び始める
firewall-cmd --zone=home --add-source=192.168.1.0/24
How to reload firewalld
学び始める
firewall-cmd --reload
Persistently add source IP to zone home, all services will be allowed for this source (needs reload/restart to appear)
学び始める
firewall-cmd --zone=home -- permanent --add-source=192.168.1.0/24
Not persistently add port 80/tcp to zone public
学び始める
firewall-cmd --zone=public --add-port=80/tcp
Persistently add port 80/tcp to zone public
学び始める
firewall-cmd --zone=public --permanent --add-port=80/tcp
opens a GUI firewall config if you use graphical interface
学び始める
firewall-config
how to generate public and private key for authentication
学び始める
ssh-keygen -t rsa
display state of selinux
学び始める
getenforce
changing state to permissive
学び始める
setenforce 0
changing state to enforcing
学び始める
setenforce 1
disable selinux
学び始める
/etc/selinux/config SELINUX=disabled
Display full SElinux context (user, role and type)
学び始める
ls -Z

コメントを投稿するにはログインする必要があります。