Dziewiate_21

 0    21 tarjetas    michalesq
imprimir jugar test de práctica
 
término - definición -
How to renice program, execute command and take every running httpd process
empezar lección
renice -n 10 $(pgrep httpd)
How to tar a file with priority -20 and display time needed to process?
empezar lección
time nice -n -20 tar -cvf test. tar test. file
Where can you find information about number of CPUs?
empezar lección
cat /proc/cpuinfo
What does top -d 2 do?
empezar lección
Set top updates to 2 seconds
What does k do in top command?
empezar lección
kill process
What does r do in top command?
empezar lección
renice process
What does P do in top command?
empezar lección
sort by CPU usage
What does M do in top command?
empezar lección
sort by memory usage
What does t do in top command?
empezar lección
disable line with tasks
What does m do in top command?
empezar lección
disable line with memory usage
What does l do in top command?
empezar lección
disable line with cpu usage
Where all non persistent logs for journalctl are written to?
empezar lección
cd /run/log/journal
How to make journalctl logs persistent?
empezar lección
go to /etc/systemd/journalctl. conf, uncomment storage
Where all persistent logs for journalctl are written to?
empezar lección
/var/log/journal
Where would you configure logrotation for journalctl?
empezar lección
/etc/logrorate.conf
How to display last 10 lines of logs?
empezar lección
journalctl -n
How to display logs with priority info?
empezar lección
journalctl -p info
How to display logs since yesterday?
empezar lección
journalctl --since=yesterday
How to display logs since one hour ago?
empezar lección
journalctl --since "one hour ago"
How to display info about boot process?
empezar lección
systemd-analyze
How to dusplay info about the process lanunched very long?
empezar lección
systemd-analyze blame

Debes iniciar sesión para poder comentar.