I'm Aoddy.

If you lose yourself, you lose everything. — Michael Scofield

Category Archives: linux

How to start a script by root permission at boot time on Ubuntu server 8.10.

by aoddy on March 2, 2009

Today my Opmanger server is down, I start it again but my service doesn’t start by automatic at boot time. So I need to start it by root permission at startup time. And this is my solution. 1. Write your script for start a service #!/bin/bash echo "Start my service!!!"; cd /path/of/my/script/ ./run_my_script.sh

How to install VMWare server on Ubuntu server 8.10.

by aoddy on January 31, 2009

After I spent a lot of time to install VMWare ESXi on my server, I found problem about ESXi could not install on my disk RAID#1. Many people found this problem to : http://communities.vmware.com/message/1142404 So if you would like to install VMWare ESXi into your server, you should check your hardware which is supported by [...]

มาทำความรู้จักกับไฟล์ System ext4 กันหน่อยมั๊ย

by aoddy on January 14, 2009

แอบไปอ่านเจอมาว่าตัว Ubuntu 9.04 ตัวใหม่ที่จะออกมัน Support ไฟล์ระบบแบบ ext4 ก็เลยเกิดคำถามขึ้นในใจว่า มันดีกว่า ext3 ยังไง คุณสมบัติเด่นๆ มีอะไรบ้าง ว่าแล้วผมก็ไปเริ่มที่ wikipedia ก็ไปเจอคำตอบมา ว่าแล้วก็ลองดูกันครับว่ามีอะไรน่าสนใจบ้าง

How to install trac service on Ubuntu for multiple projects using Mod_Python.

by aoddy on October 17, 2008

Previously I have installed a DNS service on my Ubuntu server. Today I would like to install a Trac service which supports for multiple projects using Mod_Python on Apache. Condition : I would like to use sub-domain for trac service that is trac.aoddy.com Trac service can support multiple projects such as trac.aoddy.com/Project1, trac.aoddy.com/Project2 Trac service [...]