System Processes Flashcards
What command shows real-time CPU, memory, and process usage
Top or htop
Which command provides memory, cpu and processes statistics at intervals?
Vmstat
How do you display detailed memory usage for each purpose?
Smem
What command lists all running processes with detailed info?
Ps aux
Which command kills a process using its PID
kill PID
How do you kill all processes with the same name?
killall process_name
What command finds the PID of a process by name?
pgrep process_name
What command shows processes in a tree-like format?
pstree
How do you check disk space usage for all mounted file systems?
df -h
Which command shows disk usage of a specific directory?
du -sh /path
What command monitors disk I/O performance?
iostat
How do you check memory and swap usage?
free -h
Which command lists memory usage per process with detailed breakdown?
smem
What command shows system logs from the current boot?
journalctl -b
How do you display kernel and hardware-related messages?
dmesg
How do you view logs for a specific service using systemd?
journalctl -u service_name
What command tests basic network connectivity by sending ICMP packets?
ping
How do you trace the path packets take to a network host?
traceroute
What command checks network interface configurations (newer)?
ip addr show
How do you list all open network ports and listening services?
ss -tuln
What command resolves DNS records for a domain?
dig example.com
How do you fetch a web page or test an API endpoint from the command line?
curl http://example.com
Which command tests network bandwidth between two machines?
iperf
What command scans for open ports and running services on a host?
nmap
How do you check if a port is open on a remote machine using netcat?
nc -zv host port
What command changes file permissions?
chmod
How do you change ownership of a file?
chown user: group file
How do you trace system calls made by a process?
strace -p PID
What command shows all kernel parameters?
sysctl -a
How do you enable IP forwarding in the kernel?
sysctl -w net.ipv4.ip_forward=1
How do you schedule a task to run at a specific time in Linux ?
cron or crontab -e
What command shows the last system boot time in Linux ?
uptime
What command reboots a Linux system?
sudo reboot
How do you display the manual page for a command in Linux ?
man command_name
How do you search for a specific string in a file in Linux ?
grep “string” filename
How do you create a symbolic link in Linux?
Ln -s target link_name
What command displays the IP addresses of network interfaces in Linux?
ip addr show
How do you view your system’s IP address in windows ?
ipconfig
What command shows the current routing table in Linux ?
ip route
How do you view open network connections in windows ?
netstat -an
What windows command transfers files over a network using the SMB protocol?
net use
How do you download a file from the web in Linux using wget?
wget http://example.com/file.zip
How do you securely transfer files using rsync in Linux?
rsync -avz source_dir user@remote_host:/destination_dir
What command copies files between two hosts over SSH in Linux ?
scp source_file user@remote_host:/destination_path
How do you monitor system performance in relation to time using windows command prompt?
typeperf
What command kills a specific process by PID in windows ?
taskkill /PID pid_number /F
How do you list all running processes in windows ?
tasklist
What command displays detailed system information in windows ?
systeminfo
Which command shows information about block devices in Linux?
lsblk
What command shows detailed information about the CPU in Linux ?
lscpu
How do you change the permissions of a file to read, write and execute for the owner in Linux?
chmod 755 filename
How do you list all files, including hidden ones, in a directory in Linux?
ls -la
How do you add a new user to a Linux system?
sudo useradd username
What command changes a user’s password in Linux?
sudo passwd username
How do you add a user to a specific group in Linux?
sudo usermod -aG groupname username
How do you update the list of available packages on a Debian-based Linux system?
sudo apt update
How do you remove an installed package on a Debian-based system ?
sudo apt remove package_name
How do you add a static route to a network in windows ?
route add 192.168.1.0 MASK 255.255.255.0 192.168.0.1
How do you check network adapter settings in windows ?
ipconfig /all
What command is used to flush the DNS resolver cache in windows ?
ipconfig /flushdns
What windows commands add a firewall rule to allow traffic on port 80?
netsh advfirewall firewall add rule name=“Allow80” protocol=TCP dir=in local port=80 action=allow
What command is used to manage firewall rules on Linux?
iptables
How do you list all current iptables rules?
iptables -L
How do you add a rule to allow traffic on port 80 using iptables?
iptables -A INPUT -p tcp —dport 80 -j ACCEPT
How do you block all incoming traffic on port 22 using iptables?
iptables -A INPUT -p tcp —dport 22 -j DROP
How do you save iptables rules to make them persistent after reboot?
iptables-save > /etc/iptables/rules.v4
How do you enable the firewall on a Linux system using ufw?
sudo ufw enable
How do you allow traffic on port 22 (SSH) through the firewall using ufw?
sudo ufw allow 22
How do you list active network connections and listening ports using ss?
ss -tuln
What command displays kernel ring buffer messages, useful for hardware diagnostics ?
dmesg
How do you run a port scan using nmap to check for open ports?
nmap -p 1-65535 host
How do you test an HTTP connection and show the headers using curl?
curl -i http://example.com
What tool is used for capturing and analyzing packets with a graphical interface ?
Wireshark
Which command captures and analyzes packets for network diagnostics in a simplified manner?
tshark (terminal version of Wireshark)
How do you filter DNS queries in a packet capture with tshark?
tshark -i eth0 -Y “dns”
How do you open a packet capture file in Wireshark?
Open the .pcap file in the Wireshark GUI
Which command captures packets and saves them to a file for later analysis in Wireshark ?
tcpdump -w capture.pcap
What command filters tcpdump to capture traffic on port 80 only?
tcpdump port 80
How do you capture all traffic on a specific network interface using tcpdump?
tcpdump -i eth0
What command line tool captures and analyzes network packets?
tcpdump
How do you perform a DNS lookup for a domain’s IP address?
dig example.com
What dig option is used to query a specific DNS server?
dig @dns_server example.com
Which command displays all DNS records for a domain, including A, MX, NS, etc?
dig example.com ANY
How do you run a TCP throughout test using ntttcp?
ntttcp -s (server) and ntttcp -c (client)
Which command is used to measure and benchmark network performance on windows ?
ntttcp
How do you trace a TCP connection to a specific host and port?
tracetcp host port
What tool traces TCP connections rather than ICMP?
tracetcp
How do you trace the path packets take to reach a remote host in windows ?
tracert host
What command is the windows equivalent of traceroute ?
tracert
What command is the windows equivalent of traceroute ?
tracert
How do you test if port 80 is open on a remote server using Test-NetConnection?
Test-NetConnection -ComputerName host -Port 80
What PowerShell command is used to test network connectivity and open ports (Windows alternative)?
Test-NetConnection
How do you initiai a Telnet connection to a specific host and port?
telnet host port
What command is used to test basic network connectivity using the Telnet protocol?
telnet
What command is used to start, stop, restart, or manage system services in systemd?
systemctl
How do you enable a service to start at boot using systemctl?
systemctl enable service_name
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?
lsof
How do you use lsof to lists open files and the processes that opened them?
lsof -i :port_number
Which command lists all running processes with detailed information like CPU and memory usage?
ps aux
Which command searches for processes based on name or other attributes and returns their process IDs (PIDs)?
pgrep process_name