Quick Start Guide
1. If you're on Windows, download PuTTY or something like that.
2. Run PuTTY.
3. Type in your linode's IP address (which you can find in the "Network" tab of Linode Manager) and hit Enter.
4. That'll drop you into your linode's shell (terminal).
5. Log in as "root" using the password you set up when you deployed your Linux distribution.
6. Now you can start typing away other commands.
Or alternatively, you can find a web-based shell in the "Console" tab of Linode Manager. It's called LISH. The web-based shell tends to break some screen layouts, though.
Quick Apache + PHP + MySQL setup:
Code:
apt-get update
apt-get upgrade
apt-get install apache2 php5 php5-mysql mysql-server mysql-client
(You can replace apt-get with aptitude)