System Processes Flashcards

1
Q

What command shows real-time CPU, memory, and process usage

A

Top or htop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which command provides memory, cpu and processes statistics at intervals?

A

Vmstat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you display detailed memory usage for each purpose?

A

Smem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What command lists all running processes with detailed info?

A

Ps aux

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which command kills a process using its PID

A

kill PID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you kill all processes with the same name?

A

killall process_name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What command finds the PID of a process by name?

A

pgrep process_name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What command shows processes in a tree-like format?

A

pstree

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you check disk space usage for all mounted file systems?

A

df -h

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which command shows disk usage of a specific directory?

A

du -sh /path

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What command monitors disk I/O performance?

A

iostat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you check memory and swap usage?

A

free -h

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which command lists memory usage per process with detailed breakdown?

A

smem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What command shows system logs from the current boot?

A

journalctl -b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How do you display kernel and hardware-related messages?

A

dmesg

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you view logs for a specific service using systemd?

A

journalctl -u service_name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What command tests basic network connectivity by sending ICMP packets?

A

ping

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

How do you trace the path packets take to a network host?

A

traceroute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What command checks network interface configurations (newer)?

A

ip addr show

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

How do you list all open network ports and listening services?

A

ss -tuln

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What command resolves DNS records for a domain?

A

dig example.com

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

How do you fetch a web page or test an API endpoint from the command line?

A

curl http://example.com

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Which command tests network bandwidth between two machines?

A

iperf

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What command scans for open ports and running services on a host?

A

nmap

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

How do you check if a port is open on a remote machine using netcat?

A

nc -zv host port

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What command changes file permissions?

A

chmod

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

How do you change ownership of a file?

A

chown user: group file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

How do you trace system calls made by a process?

A

strace -p PID

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

What command shows all kernel parameters?

A

sysctl -a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

How do you enable IP forwarding in the kernel?

A

sysctl -w net.ipv4.ip_forward=1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

How do you schedule a task to run at a specific time in Linux ?

A

cron or crontab -e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

What command shows the last system boot time in Linux ?

A

uptime

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

What command reboots a Linux system?

A

sudo reboot

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

How do you display the manual page for a command in Linux ?

A

man command_name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

How do you search for a specific string in a file in Linux ?

A

grep “string” filename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

How do you create a symbolic link in Linux?

A

Ln -s target link_name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

What command displays the IP addresses of network interfaces in Linux?

A

ip addr show

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

How do you view your system’s IP address in windows ?

A

ipconfig

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

What command shows the current routing table in Linux ?

A

ip route

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

How do you view open network connections in windows ?

A

netstat -an

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

What windows command transfers files over a network using the SMB protocol?

42
Q

How do you download a file from the web in Linux using wget?

A

wget http://example.com/file.zip

43
Q

How do you securely transfer files using rsync in Linux?

A

rsync -avz source_dir user@remote_host:/destination_dir

44
Q

What command copies files between two hosts over SSH in Linux ?

A

scp source_file user@remote_host:/destination_path

45
Q

How do you monitor system performance in relation to time using windows command prompt?

46
Q

What command kills a specific process by PID in windows ?

A

taskkill /PID pid_number /F

47
Q

How do you list all running processes in windows ?

48
Q

What command displays detailed system information in windows ?

A

systeminfo

49
Q

Which command shows information about block devices in Linux?

50
Q

What command shows detailed information about the CPU in Linux ?

51
Q

How do you change the permissions of a file to read, write and execute for the owner in Linux?

A

chmod 755 filename

52
Q

How do you list all files, including hidden ones, in a directory in Linux?

53
Q

How do you add a new user to a Linux system?

A

sudo useradd username

54
Q

What command changes a user’s password in Linux?

A

sudo passwd username

55
Q

How do you add a user to a specific group in Linux?

A

sudo usermod -aG groupname username

56
Q

How do you update the list of available packages on a Debian-based Linux system?

A

sudo apt update

57
Q

How do you remove an installed package on a Debian-based system ?

A

sudo apt remove package_name

58
Q

How do you add a static route to a network in windows ?

A

route add 192.168.1.0 MASK 255.255.255.0 192.168.0.1

59
Q

How do you check network adapter settings in windows ?

A

ipconfig /all

60
Q

What command is used to flush the DNS resolver cache in windows ?

A

ipconfig /flushdns

61
Q

What windows commands add a firewall rule to allow traffic on port 80?

A

netsh advfirewall firewall add rule name=“Allow80” protocol=TCP dir=in local port=80 action=allow

62
Q

What command is used to manage firewall rules on Linux?

63
Q

How do you list all current iptables rules?

A

iptables -L

64
Q

How do you add a rule to allow traffic on port 80 using iptables?

A

iptables -A INPUT -p tcp —dport 80 -j ACCEPT

65
Q

How do you block all incoming traffic on port 22 using iptables?

A

iptables -A INPUT -p tcp —dport 22 -j DROP

66
Q

How do you save iptables rules to make them persistent after reboot?

A

iptables-save > /etc/iptables/rules.v4

67
Q

How do you enable the firewall on a Linux system using ufw?

A

sudo ufw enable

68
Q

How do you allow traffic on port 22 (SSH) through the firewall using ufw?

A

sudo ufw allow 22

69
Q

How do you list active network connections and listening ports using ss?

70
Q

What command displays kernel ring buffer messages, useful for hardware diagnostics ?

71
Q

How do you run a port scan using nmap to check for open ports?

A

nmap -p 1-65535 host

72
Q

How do you test an HTTP connection and show the headers using curl?

A

curl -i http://example.com

73
Q

What tool is used for capturing and analyzing packets with a graphical interface ?

74
Q

Which command captures and analyzes packets for network diagnostics in a simplified manner?

A

tshark (terminal version of Wireshark)

75
Q

How do you filter DNS queries in a packet capture with tshark?

A

tshark -i eth0 -Y “dns”

76
Q

How do you open a packet capture file in Wireshark?

A

Open the .pcap file in the Wireshark GUI

77
Q

Which command captures packets and saves them to a file for later analysis in Wireshark ?

A

tcpdump -w capture.pcap

78
Q

What command filters tcpdump to capture traffic on port 80 only?

A

tcpdump port 80

79
Q

How do you capture all traffic on a specific network interface using tcpdump?

A

tcpdump -i eth0

80
Q

What command line tool captures and analyzes network packets?

81
Q

How do you perform a DNS lookup for a domain’s IP address?

A

dig example.com

82
Q

What dig option is used to query a specific DNS server?

A

dig @dns_server example.com

83
Q

Which command displays all DNS records for a domain, including A, MX, NS, etc?

A

dig example.com ANY

84
Q

How do you run a TCP throughout test using ntttcp?

A

ntttcp -s (server) and ntttcp -c (client)

85
Q

Which command is used to measure and benchmark network performance on windows ?

86
Q

How do you trace a TCP connection to a specific host and port?

A

tracetcp host port

87
Q

What tool traces TCP connections rather than ICMP?

88
Q

How do you trace the path packets take to reach a remote host in windows ?

A

tracert host

89
Q

What command is the windows equivalent of traceroute ?

90
Q

What command is the windows equivalent of traceroute ?

91
Q

How do you test if port 80 is open on a remote server using Test-NetConnection?

A

Test-NetConnection -ComputerName host -Port 80

92
Q

What PowerShell command is used to test network connectivity and open ports (Windows alternative)?

A

Test-NetConnection

93
Q

How do you initiai a Telnet connection to a specific host and port?

A

telnet host port

94
Q

What command is used to test basic network connectivity using the Telnet protocol?

95
Q

What command is used to start, stop, restart, or manage system services in systemd?

96
Q

How do you enable a service to start at boot using systemctl?

A

systemctl enable service_name

97
Q

Which command lists open files and the processes that opened them, helpful for diagnosing resource leaks or identifying which files are in use by a process?

98
Q

How do you use lsof to lists open files and the processes that opened them?

A

lsof -i :port_number

99
Q

Which command lists all running processes with detailed information like CPU and memory usage?

100
Q

Which command searches for processes based on name or other attributes and returns their process IDs (PIDs)?

A

pgrep process_name