Here are a few links useful when installing Ubuntu:
- Video depicting dual-boot along with Windows on the system. http://www.youtube.com/watch?v=w8a-smrPlvE&feature=related
- Enable wireless WPA access point : http://www.debianadmin.com/enable-wpa-wireless-access-point-in-ubuntu-linux.html
- 13 things to do after Ubuntu installation : http://linuxondesktop.blogspot.com/2007/02/13-things-to-do-immediately-after.html
- Java installation : http://www.ubuntugeek.com/install-java-runtime-environment-jre-in-ubuntu-9-10-karmic.html
- Sample java program : Follow these steps to test installation with a java program – vi Sample.java, Type in this code snippet : class Sample {
public static void main(String args[]) {
System.out.println(“Sample program”);
}
} - prashant@xyz-laptop:~$ javac Sample.java
prashant@xyz-laptop:~$ java Sample
Sample program - If you see the above output, you can be sure the java installation is working fine. If you see errors, make sure javac has been installed correctly by (whereis javac). If this cannot be located, install java sdk as described in the above article.
- How to set environment variable JAVA_HOME – locate where java is installed, mine was installed at /usr/lib/jvm/java-6-sun – sudo vi /etc/bash.bashrc
and insert
JAVA_HOME=/usr/lib/jvm/java-6-sun
export JAVA_HOME - Now exit the shell and reopen it, type echo $JAVA_HOME and you should see the path set
- Skype installation : https://help.ubuntu.com/community/Skype
- chm reader : sudo apt-get install xchm
I will continue to add helpful resources as I proceed with my installation…