Siedemnaste_21

 0    21 fiche    michalesq
Imprimir jogar verifique-se
 
questão - resposta -
Delete the last line
começar a aprender
sed '$d' file. txt
Print only lines with three consecutive digits
começar a aprender
sed '/[0-9]\{3\}/p' file. txt
Unless boom is found replace aaa with bb
começar a aprender
sed '/boom/! s/aaa/bb/' file. txt
Delete all lines from line 17 to 'disk'
começar a aprender
sed '17,/disk/d' file. txt
How to install software for firewall and firewall-conf
começar a aprender
yum install firewall firewall-config
Display firewall zones
começar a aprender
firewall-cmd --get-zones
Display display default zone
começar a aprender
firewall-cmd --get-default-zone
List services in default zone (public)
começar a aprender
firewall-cmd --list-all
List services in home zone
começar a aprender
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)
começar a aprender
firewall-cmd --zone=home --add-source=192.168.1.0/24
How to reload firewalld
começar a aprender
firewall-cmd --reload
Persistently add source IP to zone home, all services will be allowed for this source (needs reload/restart to appear)
começar a aprender
firewall-cmd --zone=home -- permanent --add-source=192.168.1.0/24
Not persistently add port 80/tcp to zone public
começar a aprender
firewall-cmd --zone=public --add-port=80/tcp
Persistently add port 80/tcp to zone public
começar a aprender
firewall-cmd --zone=public --permanent --add-port=80/tcp
opens a GUI firewall config if you use graphical interface
começar a aprender
firewall-config
how to generate public and private key for authentication
começar a aprender
ssh-keygen -t rsa
display state of selinux
começar a aprender
getenforce
changing state to permissive
começar a aprender
setenforce 0
changing state to enforcing
começar a aprender
setenforce 1
disable selinux
começar a aprender
/etc/selinux/config SELINUX=disabled
Display full SElinux context (user, role and type)
começar a aprender
ls -Z

Você deve entrar para postar um comentário.