Ósme_21

 0    21 词汇卡    michalesq
打印 检查自己
 
问题 - 答案 -
What manages services in RHEL 7?
开始学习
systemd
Can systemd start multiple services in the same time?
开始学习
yes
List available targets in the system
开始学习
systemctl list-units --type=target
List available unit types
开始学习
systemctl -t help
Unique configuration files are located in?
开始学习
/etc/systemd/system
Display current target
开始学习
systemctl get-default
What are the targets in RHEL?
开始学习
multi-user. target, graphical. target, emergency. target, rescue. target
Display dependencies for multi-user. targer
开始学习
systemctl list-dependencies multi-user. target
How to change target to different target?
开始学习
systemctl isolate multi-user. target
How to set default target?
开始学习
systemctl set-default
Where are all unit configuration files?
开始学习
/usr/lib/system
Where are all unit configuration files for downloaded and installed programs?
开始学习
/etc/systemd/system
How to boot a system into different target?
开始学习
Interrupt booting with e, go to linux16, add systemd. unit=emergency. target at the end, ctrl+x
How to list all jobs working in the background?
开始学习
root#jobs
How to stop program with id 1
开始学习
kill -SIGSTOP %1
How to resume previously stopped program?
开始学习
kill -sigcont %1
What is the most prioritized level?
开始学习
-20
What is the least priorizted level?
开始学习
19
How to create 1G file with dd command?
开始学习
dd if=/dev/zero/ of=/root/test. file bs=1M count=1024
How to check runing services and their nice level?
开始学习
ps axo pid, comm, nice | grep <nazwa serwisu>
How to start httpd service with priority 0, previously must be stopped
开始学习
nice -n 0 httpd

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