Saturday, September 18, 2010

Resident Evil Afterlife

Yes, this is the title of movie.I like this movie so much, because I'm really really really and really like the story inside. I was following this movie when I'm still in senior high school (about 6 years ago). I knew this (Resident Evil) from it's game first, in 1st version of Play Station game.

In Resident Evil Afterlife, Alice was loss his T-viruses power, so she has to fight as human and with human power ........................................................................

I'm sorry, I feel sleepy, I will continuing to write this post tomorrow morning, see you.....bye....have nice dream everybody ;-)

Wednesday, September 8, 2010

Subversion (svn) under proxy in Linux

Accessing internet in network which using proxy sometimes make me to modify any configuration of application. Tonight I'm connected to the network which using proxy and I'm trying to "checkout" using subversion and I always get ERROR message, arrrrrrgggghhhh....After searching about that problem, finally I found the solution for using subversion under network proxy. You only need to modify subversion configuration file, the file configuration is located under your home directory in hidden directory.
tnto@tnto-laptop$vim ~/.subversion/servers

And then modify the file above with the suitable values of proxy address and proxy port used in your network

Tuesday, September 7, 2010

Use ext2fsd to read ext3 or ext4 partition from Windows

Today I'm try to search tools for reading my linux partition from Windows 7, when I'm dual boot between Windows XP and Ubuntu 8.04 TCUP (Total Commander Ultimate Prime) can read properly linux partition, but now it was unusable, finally I found ext2fsd for reading linux partition from Windows,  currently I'm using two operating system (Windows 7 and Ubuntu 10.10).
You can download this program from it's official website: http://www.ext2fsd.com/

Monday, September 6, 2010

Sharing internet connection in Linux

In this article I want to share about "how to share internet connection in Linux", in my condition, internet come from usb modem interface (ppp0) and I want to share with another network interface, wlan0 interface.  To share internet connection in Linux, you must following some steps bellow:

  1. Enable IP Forward

    #echo 1 > /proc/sys/net/ipv4/ip_forward



  2. Clear ip table
    #iptables -F -t nat


  3. Using ip tables to create internet packet routing
    #iptables --table nat --append POSTROUTING --out-interface ppp0 -j MASQUERADE
    #iptables --append FORWARD --in-interface wlan0 -j ACCEPT


  4. Restart network
    /etc/init.d/networking restart



Note:
I'm using Ubuntu 10.10 (Maverick) 32 bit