Thursday, February 11, 2010
by Less Talk, More Example
The Goal
Upgrading ubuntu using alternate ISO without having to burning it to the CD. We mount the ISO manually and install from there.
The Process
Important, upgrading an ubuntu require you to do it in sequence manner. For example, if your current version is Ubuntu 8.04 and you want to upgrade to Ubuntu 9.10 you must upgrade to 8.10 first, then 9.04 and finally 9.10. This tutorial cover upgrading from Ubuntu 9.04 to 9.10. So, here we go.
Monday, February 8, 2010
by Less Talk, More Example
The Goal
Updating twitter status via shell script. The command used to send the HTTP request is POST a.k.a lwp-request (a perl script) that included in most linux distribution.
The Process
- Open your text editor i.e. gedit/geany/etc or even vi you are die hard fans of this editor.
- Copy and paste code below.
Sunday, February 7, 2010
by Less Talk, More Example
The Goal
Creating a simple plugin that replace <!--ltme=COLOR--> with BIG and colored "Less Talk, More Example" words. Take a look at images below.
The Process
- Open your text editor then create a new file.
- Copy and paste code below.
by Less Talk, More Example
The Goal
Creating animated progress bar using javascript and pure CSS. The final result will look like this:
The Process
- Open your favorite text editor and create a new file.
- Copy and paste code below:
by Less Talk, More Example
The Goal
Creating progress bar using pure CSS. The final result will look like this:
The Process
- Open your favorite text editor and create a new file.
- Copy and paste code below
by Less Talk, More Example
The Goal
You can install Apache Ant on Ubuntu Linux using manual installation method.
The Process
My Environment
- My $HOME is located in /home/ltme
- I put Ant package in $HOME/archive/a
- I extract the package to $HOME/programs
- My Ant version is 1.7.1
Pre-Installation
You must have Java Development Kit (JDK) installed first, refer to this article if you not install the JDK yet.
Saturday, February 6, 2010
by Less Talk, More Example
The Goal
You can install Sun JDK on Ubuntu Linux using "unpack and run" method not via apt-get.
The Process
- Download the Sun JDK for Linux from http://java.sun.com/
- Open the terminal to extract the package, move to the saved location first:
(I assume you save it to your home directory)
$ cd /home/user
$ sh jdk-6u7-linux-1586.bin - You will be asked "License Agreement" and type yes to Agree.
$ sudo mv jdk1.6.0_07 /usr/local
$ sudo ln -s /usr/local/jdk1.6.0_07 /usr/local/java
- Check the current java that running on your system
$ update-alternatives --list java
/usr/bin/gij-4.2
- After running that command we knew that there is no alternative for java. So, we need to add our new JDK to the alternatives.