Ósme_21

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

Trebuie să te autentifici pentru a posta un comentariu.