LAMP server configration on ubuntu linux


LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver 

on an Ubuntu 9.04 server with PHP5 support (mod_php) and MySQL support..
*Installing MySQL 5.0:-
#aptitude install mysql-server mysql-client
You will be asked to provide a password for the MySQL root user – this password is valid for the user root@localhost as well as
root@server1.example.com, so we don’t have to specify a MySQL root password manually later on:
New password for the MySQL “root” user: <– yourrootsqlpassword
Repeat password for the MySQL “root” user: <– yourrootsqlpassword

*Installing Apache2:-

#aptitude install apache2

Now direct your browser to http://192.168.0.100, and you should see the Apache2 placeholder page (It works!):

6 Stages of Linux Boot Process (Startup Sequence)


Press the power button on your system, and after few moments you see the Linux login prompt.
Have you ever wondered what happens behind the scenes from the time you press the power button until the Linux login prompt appears?
The following are the 6 high level stages of a typical Linux boot process.

Auto mounting a partition


It’s been a while. A while since I’ve had to actually had to manually edit the /etc/fstab to automount a partition. So long, that I searched my blog trying to find out how to do it. To my surprise, I’d never actually written one. If I had, I couldn’t find it. Here’s to you, memory:
According to /etc/fstab this is how it’s done
# <file system> <mount point> <type> <options> <dump> <pass>
For those of us that are human, that can mean very little. What you can do, in hopefully slightly more understandable terms is add a line that looks like this:

Ways to install Linux on a netbook


With my new Acer Aspire Netbook, it occured to me that it had been a long time since I’d installed Linux on a system without a CDRom. This post outlines some methods you can use to get it installed
External CDRom install
The easiest method. Plug in the USB CDRom, and install as normal. Perhaps this is a no brainer but to be honest, I forgot about it when I first got my netbook so its worth a mention.
USB Install
If you don’t have an external CDRom drive laying around you can use a USB Stick. The easiest way to get Linux installed via a USB key is too use a handy tool called UNetBootin.
Network install
Network installs are actually easier than people may think thanks to PXE and open source software. Basically you set up a TFTP server, and a DHCP server. The machine wanting to boot gets an IP and downloads the install image from TFTP. There you continue as a normal installation except download the packages from a web server rather than installing from the CD/DVD.

How To Extract Audio From FLV Files Using VLC


This method allows you to extract the audio of FLV files (e.g. YouTube videos) using VLC and save it in MP3 format. I tested the instructions below with VLC on Mac OS X.
  1. Open the FLV file with VLC and stop it as soon as it starts playing.
  2. Open the VLC Wizard by clicking on File > Streaming/Exporting Wizard…
  3. Select Transcode/Save to file. Next
  4. Select your file from the Playlist. Next

Add Admin Rights, Disable or Reset Password For A Windows Account



Add caption
      Now a days everyone likes to keep password on their system but sometimes when you forget your password then there in no way to retrieve it. Some times while using your computer or laptop you would have observed that in spite of being the only user of your system you are not the administrator of the system as a result you are not able to authorize some operations. Are you tired of resetting the passwords and remembering them after a specified duration because you are forced to do it. Then I have got a solution to all your problems an application named PC Login Now.

Setting up a LAMP Server Remotely


LAMP time!It’s been said a million times over — Linux is awesome on servers! With over 60 per cent of the Web’s servers gunning away on the mighty penguin, the robust, resilient, scalable and stable Linux plays a major role in keeping the Internet running like a well-oiled machine. In this article, I will describe how to set up a LAMP (Linux, Apache, MySQL and PHP) server from scratch, remotely. The only step requiring physical access is installing Ubuntu Server. The rest can be done the geeky way, via SSH! Read on if getting your hands dirty gives you a kick!