4

I am trying to install lamp server in ubuntu 13.10. But it gives the following error.

E: Unable to locate package lamp-server
Mahammad Adil Azeem
  • 325
  • 4
  • 5
  • 12

2 Answers2

8

That is not the correct command.

sudo apt-get install tasksel
sudo tasksel install lamp-server
Rinzwind
  • 299,756
4

To install LAMP server, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-get install lamp-server^
Mitch
  • 107,631
  • That's indeed the command recommended by the documentation at https://help.ubuntu.com/community/ApacheMySQLPHP First time I tried I forgot the ^ at the end and thus got the same error as asker. – Nicolas Raoul May 28 '14 at 08:22