Saturday, June 13, 2020

Seedr.cc

http://Seedr.cc 
can be a next-generation product or service going to deliver the bit-torrent encounter into a completely degree. While torrents are certainly not precisely legal as well as safe and sound, nonetheless they have now grow to be part and also package of our on-line lifetime right now. And so, gain access to these in the quickest and also best way achievable we have now Seedr.

https://www.seedr.cc/

Monday, April 22, 2013

Installing Apache2 + PHP5 + MySQL (On Ubuntu 12.04 LTS)


LAMP on Ubuntu

1. Installing MySQL
apt-get 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.


2. Installing Apache2
apt-get install apache2

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



3. Installing PHP5
apt-get install php5 libapache2-mod-php5 php5-mysql 
/etc/init.d/apache2 restart


4. Testing PHP5 / Getting Details About Your PHP5 Installation
The document root of the default web site is /var/www. We will now create a small PHP file (info.php) in that directory and call it in a browser. The file will display lots of useful details about our PHP installation, such as the installed PHP version.

vi /var/www/info.php





<?php
  phpinfo();
?>


Now we call that file in a browser (e.g. http://ServerIP/info.php):




Wednesday, October 13, 2010

Manju Wanniarachchi-13-10-2010

Wednesday, September 30, 2009

UoM and CSE became the top in Google Summer of Code

We are again the best in world. University of Moratuwa and Department of Computer Science and Engineering became the top in Google Summer of Code.



Top 10 Schools in 2009 by # of Accepted Students

Sri Lanka - University of Moratuwa - 22
Brazil - University of Campinas / UNICAMP - 12
China - Graduate University of Chinese Academy of Sciences - 11
Romania - Polytechnic University Of Bucharest - 11
Poland - Gdansk University of Technology - 10
Austria - Vienna University of Technology - 9
India - Birla Institute of Technology and Science Pilani, Goa campus - 9
Sweden - Royal Institute of Technology - 9
India - Institute of Technology, Banaras Hindu University - 8
Singapore - National University of Singapore - 8



Congratulations for this International level achievement ……

Ref:
http://google-opensource.blogspot.com/2009/09/tasty-new-google-summer-of-code-stats.html

Tuesday, May 27, 2008

Google Open Source Blog: This Week's Top 10's: Universities for Google Summer of Code 2008

Google Open Source Blog: This Week's Top 10's: Universities for Google Summer of Code 2008

University of Moratuwa is the 1st in Top 10 Universities for Google Summer of Code 2008



I'm very proud to see that University of Moratuwa(UOM) is the 1st among top 10 universities. This is a BIG achievement. UoM has fist places for both Most Applicants and Most Accepts list.

Monday, March 24, 2008

Nameserver

The resolv.conf file is the resolver configuration file. It is use to configure client side access to the Internet Domain Name System (DNS). This file defines which name servers to use.

The resolver is a set of routines in the C library that provide access to the Internet Domain Name System (DNS). The resolver configuration file contains information that is read by the resolver routines the first time they are invoked by a process. The file is designed to be human readable and contains a list of keywords with values that provide various types of resolver information

Note: File name is /etc/resolv.conf and not /etc/resolve.conf.


Sample resolv.conf file

nameserver 202.54.1.10
nameserver 202.54.1.11