20140406

After u install Ubuntu Server 12.04

Lightweight Desktop-environment for Ubuntu-server:
http://www.htpcbeginner.com/lightweight-desktop-environment-for-ubuntu-server/

Install GUI on Ubuntu-12.04 server:
http://www.ubuntugeek.com/how-to-install-gui-on-ubuntu-12-04-precise-server.html


Change Ubuntu-server from DHCP to a static ip address
http://www.howtogeek.com/howto/ubuntu/change-ubuntu-server-from-dhcp-to-a-static-ip-address/

One More: http://askubuntu.com/questions/342705/how-to-set-a-static-ip-address

Important:
http://askubuntu.com/questions/151440/important-things-to-do-after-installing-ubuntu-server

http://n00tz.net/2008/07/vlc-media-server-ubuntu-hardy/

http://www.videolan.org/doc/vlc-user-guide/en/ch04.html


http://www.videolan.org/doc/play-howto/en/ch04.html




Temporary IP Address Assignment

For temporary network configurations, you can use standard commands such as ip, ifconfig and route, which are also found on most other GNU/Linux operating systems. These commands allow you to configure settings which take effect immediately, however they are not persistent and will be lost after a reboot.
To temporarily configure an IP address, you can use the ifconfig command in the following manner. Just modify the IP address and subnet mask to match your network requirements.
sudo ifconfig eth0 10.0.0.100 netmask 255.255.255.0

To configure a default gateway, you can use the route command in the following manner. Modify the default gateway address to match your network requirements.
sudo route add default gw 10.0.0.1 eth0 
 
(For More: https://help.ubuntu.com/10.04/serverguide/network-configuration.html) 

--------