Contents

Linux Remove Package and Service

Check Services

1
systemctl list-units --type service

Stop Service

1
systemctl stop apache2

Disable Service

1
systemctl disable apache2

Check Installed Packages

1
apt list --installed

Remove Package

1
apt remove apache2