Dziesiate_21

 0    21 词汇卡    michalesq
打印 检查自己
 
问题 - 答案 -
Copy ACL between files
开始学习
getfacl file1 | setfacl --set-file=- file2
ACL - setting mask for the file to read only
开始学习
setfacl -m m: r file1
Set the default permissions on dir1 to read, write and execute for the starbuck user; execute only if it is a directory
开始学习
setfacl -d -m u: starbuck: rwX dir1
Using setfacl, change the "other" permissions to none on file1.
开始学习
setfacl -m o:- file1
Remove the default permissions from dir1.
开始学习
setfacl --remove-default dir1
Displays all IPs on the machine
开始学习
ip addr
Displays IP of the particular device
开始学习
ip addr show eth0
Command which shows all hops to get the IP
开始学习
treceroute IP
Command to show all listening ports and established connections
开始学习
ss
Command to show all listening and established connection
开始学习
ss -a
Display all devices in the system
开始学习
ls /sys/class/net
Location of network-scripts
开始学习
cd /etc/sysconfig/network-scripts/
Command to add new network connection and create script in /etc/sysconfig/network-scripts/
开始学习
nmcli con add con-name "my connection" autoconnect yes type ethernet ifname eth1
Command to show network connections
开始学习
nmcli dev show
Command to add network connection with static IP and GW and create script in /etc/sysconfig/network-scripts/
开始学习
nmcli con add con-name "my connection" autoconnect yes type ethernet ifname eth1 ip4 10.0.0.0 gw4 10.0.0.1
File where we can modify if Kernel should look to resolv. conf or /etc/hosts for finding IPs and names
开始学习
/etc/nsswitch.conf
How to set hostname - not persistent?
开始学习
hostnamectl set-hostname <hostname>
How to set hostname - persistent?
开始学习
/etc/hostname
How to add DNS server with nmcli (this will modify /etc/sysconfig/network-scripts/ifcfg-eths0 and resolv. conf)?
开始学习
nmcli con mod "System eth0" ipv4. dns 8.8.8.8
How to display Google IP and domain name?
开始学习
getent hosts google.com
How to up and interface with nmcli?
开始学习
nmcli con up eths0

您必须登录才能发表评论。