0

I had some problems with Apache, so I removed the entire folder from /etc , /var... now the command:

sudo apt-get install apache2

doesn’t work, I guess because there are no apache folder anymore. So:

  • Do I have to download it?
  • Any other solution?
lofidevops
  • 21,912

1 Answers1

0

Try to uninstall it via apt-get with

sudo apt-get remove apache2

or

sudo apt-get purge apache2

If it doesn't help - provide full output of that commands.

F2nd
  • 176