Preloader image
DDD

리눅스

서버에 설치된 어플리케이션 확인 스크립트

작성자 관리자 (admin)
조회수 32
입력일 2025-07-22 11:22:56

echo "== Installed RPM packages =="

rpm -qa | sort | head -n 10

echo "== Applications in /opt and /usr/local =="

ls /opt ls /usr/local

echo "== Running Services =="

systemctl list-units --type=service | grep running

echo "== Listening Ports =="

ss -tulnp | grep LISTEN