Ó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

Вы должны войти в свой аккаунт чтобы написать комментарий.