Ósme_21

 0    21 adatlap    michalesq
Nyomtatás játszik ellenőrizze magát
 
kérdés - válasz -
What manages services in RHEL 7?
kezdjen tanulni
systemd
Can systemd start multiple services in the same time?
kezdjen tanulni
yes
List available targets in the system
kezdjen tanulni
systemctl list-units --type=target
List available unit types
kezdjen tanulni
systemctl -t help
Unique configuration files are located in?
kezdjen tanulni
/etc/systemd/system
Display current target
kezdjen tanulni
systemctl get-default
What are the targets in RHEL?
kezdjen tanulni
multi-user. target, graphical. target, emergency. target, rescue. target
Display dependencies for multi-user. targer
kezdjen tanulni
systemctl list-dependencies multi-user. target
How to change target to different target?
kezdjen tanulni
systemctl isolate multi-user. target
How to set default target?
kezdjen tanulni
systemctl set-default
Where are all unit configuration files?
kezdjen tanulni
/usr/lib/system
Where are all unit configuration files for downloaded and installed programs?
kezdjen tanulni
/etc/systemd/system
How to boot a system into different target?
kezdjen tanulni
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?
kezdjen tanulni
root#jobs
How to stop program with id 1
kezdjen tanulni
kill -SIGSTOP %1
How to resume previously stopped program?
kezdjen tanulni
kill -sigcont %1
What is the most prioritized level?
kezdjen tanulni
-20
What is the least priorizted level?
kezdjen tanulni
19
How to create 1G file with dd command?
kezdjen tanulni
dd if=/dev/zero/ of=/root/test. file bs=1M count=1024
How to check runing services and their nice level?
kezdjen tanulni
ps axo pid, comm, nice | grep <nazwa serwisu>
How to start httpd service with priority 0, previously must be stopped
kezdjen tanulni
nice -n 0 httpd

Kommentár közzétételéhez be kell jelentkeznie.