Lamp panel::Ubuntu - linux

Hi I just install ubuntu 10.04.
I use to use wamp server on windows that have manager panel.
Is lamp have such panel, or I have to time manually?
Thanks,
Yosef

sudo apt-get install lamp-server^
Probably a question for superuser though.
To restart your server:
sudo /etc/init.d/apache2 restart

Related

Ubuntu Server Install GUI and Remote Access

How can I install a GUI for a remote server and then access it over RDP (or similar)
I've done a sudo apt-get install ubuntu-desktop and sudo apt-get install xrdp, but when I go to access it and login, I just get a blank screen. I presume the windowing system hasn't started?
Thanks
Did the desktop fail to start up because there is no display attached?
I think the easiest approach is to use LXDE (Lightweight X11 Desktop Environment) with xrdp.
Refer This Link

Need GUI to run qemu on Ubuntu server

Need GUI to run qemu on Ubuntu server: I need to run QEMU for ARM on a Ubuntu srever. THis QEmu is not supporting a text mode, so I need to install GUI software on Ubuntu server 13.04. Please suggest any that I can do a sudo apt-get install and get started quickly.
Are you connecting to the server over ssh? You could just use X forwarding to your local machine.
See the very good first answer here.
Then you can just start the software and interact with the GUI on a computer that already has the desktop environment installed.
You can do the following
sudo apt-get install ubuntu-desktop
For more info, look to this link

install apache2 in linux after removing old installation

while searching for installing apache web server in linux ubuntu lucid ,I found that some articles use the name apache2 while others use httpd..Is apt-get install apache2 the correct way to install?
I want to remove all of my current apache2 installation ,and install everything fresh. Should I use
sudo apt-get remove --purge apache2
I currently have apache in /etc/apache2
apache2 is Ubuntu's name for the Apache httpd version 2 branch (currently using 2.2, I think). The best source for information on Ubuntu packages is probably its own documentation; see https://help.ubuntu.com/10.04/serverguide/httpd.html. But yes, those two commands are correct.

Installing lighttpd in CentOS 6.0

I never used CentOS, I only used Ubuntu, and I'm really new in web server matters. I couldn't find any easy way to install Lighttpd in CentOS 6.0. Could anyone please instruct me how to install Lighttpd in CentOS 6.0? Waiting for help.
Run the following to add the proper repo and install it.
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.i686.rpm
rpm -Uhv rpmforge-release-0.5.3-1.el6.rf.i686.rpm
yum install lighttpd
Or for 64bit
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
rpm -Uhv rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
yum install lighttpd
This guide is very easy and just works:
http://www.howtoforge.com/installing-lighttpd-with-php5-and-mysql-support-on-centos-6.0
sudo yum list available 'lighttpd*'
this should tell you which lighttpd package are available for your arch and you can then do
yum install package.

virtual machine and mint linux installation of apache

I install mint on a virtual machine workstation
What command is used to install Apache web server ?
I have tried
admin> apt-get install Apache
but no such files are found on any server. Thank you.
Use this:
sudo apt-get install apache2
Try apt-cache search apache to find out the name of the relevant packages.
Try this:
First you have to open up Terminal
Applications > Accessories > Terminal
Copy paste the following command
sudo apt-get install apache2

Resources