Wednesday, October 20, 2010

puguh time

senin-kamis 12.00

jumat 13

sabtu 11

Wednesday, October 13, 2010

usb live usb

http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

Tuesday, October 12, 2010

LMSL

P61

Sunday, October 10, 2010

online manga

http://manga.animea.net/

printer

http://eecchhoo.wordpress.com/2010/04/14/menginstall-printer-epson-tx111-di-ubuntu-linux/

Menginstall Printer Epson TX111 di Ubuntu Linux

i

5 Votes

Quantcast

Saat ditulisnya artikel ini printer Epson TX111 lumayan baru keluar. Mungkin yang jadi masalah buat pengguna Linux adalah, apakah printer ini bisa jalan jika pake Linux? Karena printer ini adalah printer multifungsi, selain bisa mencetak bisa juga untuk melakukan proses scan dan potocopy, yup Epson TX111 adalah printer multifungsi:

Jadi bagaimana cara menginstall printer Epson TX111 ini?
Instalasi CUPS (Common UNIX Printing System)

Coba buka aplikasi perambah anda, lalu buka alamat :

http://localhost:631/

Jika tidak muncul halaman seperti ini :

Artinya dalam Ubuntu anda belum terinstall CUPS, install dengan perintah :

sudo apt-get install cups

selesai :D
Download Driver Epson TX111

Untuk download driver Epson TX111, silahkan masuk ke halaman web :

http://www.avasys.jp/lx-bin2/linux_e/spc/DL1.do

Pilih tipe printernya Epson TX111 :

Setelah itu next, dan muncul halaman downloadnya. Download driver untuk Ubuntu :

Karena printer Epson TX111 itu gabung dengan Scanner, jadi kita juga harus download aplikasi iScan untuk scanner nya, scroll ke bagian bawah nanti terlihat bagian :

Download iScan untuk Ubuntu :

Instalasi Driver Epson TX111

Sekarang di komputer kita telah terdapat file :

pips-snx110-ubuntu8.04-3.8.0-CG.tgz
iscan_2.24.0-4.ltdl7_i386.deb

sekarang tinggal menginstall Driver Printer lalu menginstall iScan, caranya extract file pips-snx110-ubuntu8.04-3.8.0-CG.tgz dan jalankan hasil extractnya, perintah terminalnya seperti dibawah ini :

tar xvf pips-snx110-ubuntu8.04-3.8.0-CG.tgz
./pips-snx110-ubuntu8.04-3.8.0-CG.install

karena hasil ekstrak nya hanyalah file pips-snx110-ubuntu8.04-3.8.0-CG.install. Ikuti proses instalasi sampai selesai.
Instalasi Printer Epson TX111 pada CUPS

Buka halaman http://localhost:631/ menggunakan browser, maka akan terdapat halaman CUPS.

Buka halaman Adminstration.

Pada bagian Pinters, pilih Find New Printer, setelah itu akan terlihat printer EPSON Epson Stylus TX111, tambahkan printer tersebut :

Setelah itu ikuti tahapan2nya sampai selesai.

Setelah selesai lihatlah bagian Printers, maka sekarang printer Epson TX111 telah terregister ke CUPS :

Sekarang Printer sudah bisa digunakan, namun scannernya belum bisa :D
Instalasi Scanner Epson TX111

Cara menginstall scanner cukup sederhana, caranya, dobel klik file iscan_2.24.0-4.ltdl7_i386.deb, lalu pilih Install Package, tunggu sampai proses instalasi selesai. Setelah selesai sekarang anda dapat melihat aplikasi Image Scan! for Linux.

Buka aplikasi Image Scan! for Linux di lewat menu Ubuntu -> Graphics -> Image Scan! for Linux :

Saturday, October 9, 2010

squid

Squid is a fully-featured HTTP/1.0 proxy which is almost (but not quite - we’re getting there!) HTTP/1.1 compliant. Squid offers a rich access control, authorization and logging environment to develop web proxy and content serving applications.

This is a short guide on how to set up a transparent squid proxy server. Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It reduces bandwidth and improves response times by caching and reusing frequently-requested web pages. Squid has extensive access controls and makes a great server accelerator.

Install Squid

Install squid and squid-common

sudo aptitude install squid squid-common

Edit the squid config file.

sudo vi /etc/squid/squid.conf

Set the allowed hosts.

acl internal_network src 192.168.0.0/24 (Where 192.168.0.0/24 is your IP range.)
http_access allow internal_network

Set the correct permissions.

sudo chown -R proxy:proxy /var/log/squid/
sudo chown proxy:proxy /etc/squid/squid.conf

You will need to restart squid for the changes to take affect.

sudo /etc/init.d/squid restart

Now open up your browser and set your proxy to point to your new squid server on port 3128

Authentication

If you wish to use authentication with your proxy you will need to install apache2 utilities

sudo aptitude install squid squid-common apache2-utils

To add your first user you will need to specify -c

sudo htpasswd -c /etc/squid.passwd first_user

Thereafter you add new users with

sudo htpasswd /etc/squid.passwd another_user

Edit the squid config file

sudo vi /etc/squid/squid.conf

Set the the authentication parameters and the acl

auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid.passwd
auth_param basic children 5
auth_param basic realm NFYE Squid proxy-caching web server
auth_param basic credentialsttl 3 hours
auth_param basic casesensitive off

acl users proxy_auth REQUIRED

acl sectionx proxy_auth REQUIRED

http_access allow users

So this is what your squid.conf should look like.

acl all src 0.0.0.0/0.0.0.0
acl internal_network src 192.168.0.0/24
acl users proxy_auth REQUIRED
acl manager proto cache_object
acl localhost src 127.0.0.1/255.255.255.255
acl to_localhost dst 127.0.0.0/8
acl SSL_ports port 443 563 # https, snews
acl SSL_ports port 873 # rsync
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl Safe_ports port 631 # cups
acl Safe_ports port 873 # rsync
acl Safe_ports port 901 # SWAT
acl sectionx proxy_auth REQUIRED
acl purge method PURGE
acl CONNECT method CONNECT

http_access allow manager localhost
http_access allow users
http_access allow internal_network
http_access deny manager
http_access allow purge localhost
http_access deny purge
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
http_access allow localhost
http_access deny all
http_reply_access allow all
icp_access allow all

Redirect the all HTTP traffic.

If you would like to redirect the all HTTP traffic through the proxy without needing to set up a proxy manually in all your applications you will need to add some rules

iptables -t nat -A PREROUTING -i eth1 -p tcp -m tcp --dport 80 -j DNAT --to-destination 192.168.0.1:3128
iptables -t nat -A PREROUTING -i eth0 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 3128

Where eth1,eth0 are the LAN, WAN devices and 192.168.0.1 is the IP address of your LAN device.

If you wish to monitor the performance of your proxy you can look as some log parser’s (sarg, calamaris, ect.)

droid

Here is a potential work around. It uses the command line to add an
http proxy.

Note: you may need to update the escaping to use for windows.

cd to the location of adb
replace the pieces [host_or_IP] and [port] with the correct values for
the proxy. So if your proxy is corp_proxy, on port 8080, then in the
quotes should be corp_proxy:8080
----
./adb shell sqlite3 /data/data/com.google.android.providers.settings/
databases/settings.db "\"INSERT INTO system
VALUES(99,'http_proxy',' [host_or_IP]:[port]');\""
----

To see if it was added correctly you can run the following command
line. You should see 99|http_proxy| [host_or_IP]:[port]
----
./adb shell sqlite3 /data/data/com.google.android.providers.settings/
databases/settings.db "\"SELECT * FROM system\""
----

To remove the proxy, the following script can be run:
---
./adb shell sqlite3 /data/data/com.google.android.providers.settings/
databases/settings.db "\"DELETE FROM system WHERE _id=99\""
---

1. install Java SE and configure envirornment variables
get the Java SE from here: http://java.sun.com/javase/downloads/index.jsp
then you will get a bin file named with "jdk-6u17-linux-i586.bin"
open a shell terminate input command as below:
$ cd /opt/src : tranfer into the directory where store the jdk bin file
$ sudo chmod u+x jdk-6u17-linux-i586.bin : edit the bin's property to make it can be executed
$ ./jdk-6u17-linux-i586.bin : install jdk
mv the jdk directory to where you want to store your own program, here I move it to the /opt/android/, then it will be followed to configure the enviornment variables in shell configuration file. Go to /etc find profile add following sentences in it
"
#Java SE JDK
export JAVA_HOME=/opt/android/jdk1.6.0_17
export CLASSPATH=$CLASSPATH:.$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=$PATH:$JAVA_HOME/bin
"
store and quit
till now the jdk has been successfully installed, you may input following command in the shell to vertify it,
$ java -version
the shell will display some jdk information like this:
"
java version "1.6.0_0"
OpenJDK Runtime Environment (IcedTea6 1.6.1) (6b16-1.6.1-3ubuntu1)
OpenJDK Server VM (build 14.0-b16, mixed mode)
"

2. Downloadable SDK Components
website: http://developer.android.com/sdk/index.html
choose the Linux (i386) collumn's Package: android-sdk_r04-linux_86.tgz2.
then you will get a tar file : android-sdk_r04-linux_86.tgz, release it with following command:
$ sudo tar xfvz android-sdk_r04-linux_86.tgz
go into the "android-sdk-linux_86"
$ cd android-sdk-linux_86/tools
$ ./android
use the above command to start Android SDK and AVD Manager, select the Available Packages to install the android sdk you want to install, here I selected all. If you have any trouble when connect the website, change to "Settings", in "Misc" group select "Force https://... sources to be fetched using http://", push the "Save and Apply" button, then close the "Android SDK and AVD Manager". Restart it using the same command in the shell,
$ ./android

when setting up the ADT plugin or when using the SDK tools.

Optionally, you may want to add the location of the SDK's primary tools directory to your system PATH. The primary tools/ directory is located at the root of the SDK folder. Adding tools to your path lets you run Android Debug Bridge (adb) and the other command line tools without needing to supply the full path to the tools directory.

* On Linux, edit your ~/.bash_profile or ~/.bashrc file. Look for a line that sets the PATH environment variable and add the full path to the tools/ directory to it. If you don't see a line setting the path, you can add one:
export PATH=${PATH}:/tools

here I edit profile in /etc like this:
#Android environment variables
ANDROID_TOOLS=/opt/android/android-sdk-linux/tools
export PATH=$ANDROID_TOOLS:$PATH

input "adb" in a new shell to vertity whether the enviornment variables has affected.
when you get some adb information it means you have succeeded.
$ adb
"
Android Debug Bridge version 1.0.25 ...
"

3. Finally install the ADT plugin into the Eclipse

Install the ADT Plugin for Eclipse

Android offers a custom plugin for the Eclipse IDE, called Android Development Tools (ADT), that is designed to give you a powerful, integrated environment in which to build Android applications. It extends the capabilites of Eclipse to let you quickly set up new Android projects, create an application UI, add components based on the Android Framework API, debug your applications using the Android SDK tools, and even export signed (or unsigned) APKs in order to distribute your application.

make sure that you have a suitable version of Eclipse installed on your computer (3.4 or newer is recommended). If you need to install Eclipse, you can download it from this location:

http://www.eclipse.org/downloads/

here I choose Eclipse 3.5 (Galileo) for example:
# Start Eclipse, then select Help > Install New Softare.
# In the Available Software dialog, click Add...
# In the Add Site dialog that appears, enter a name for the remote site (for example, "Android Plugin") in the "Name" field.

In the "Location" field, enter this URL: https://dl-ssl.google.com/android/eclipse/

If you have trouble aqcuiring the plugin, you can try using "http" in the URL, instead of "https" (https is preferred for security reasons). Click OK.
# Back in the Available Software view, you should now see "Developer Tools" added to the list. Select the checkbox next to Developer Tools, which will automatically select the nested tools Android DDMS and Android Development Tools. Click Next.
# In the resulting Install Details dialog, the Android DDMS and Android Development Tools features are listed. Click Next to read and accept the license agreement and install any dependencies, then click Finish.
# Restart Eclipse.

Now modify your Eclipse preferences to point to the Android SDK directory:

# Select Window > Preferences... to open the Preferences panel
# Select Android from the left panel
# For the SDK Location in the main panel, click Browse... and locate your downloaded SDK directory
# Click Apply, then OK.

Done! If you haven't encountered any problems, then you're ready to begin developing Android applications.

Troubleshooting ADT Installation

If you are having trouble downloading the ADT plugin after following the steps above, here are some suggestions:

If Eclipse can not find the remote update site containing the ADT plugin, try changing the remote site URL to use http, rather than https. That is, set the Location for the remote site to: http://dl-ssl.google.com/android/eclipse/
If you are behind a firewall (such as a corporate firewall), make sure that you have properly configured your proxy settings in Eclipse. In Eclipse 3.3/3.4, you can configure proxy information from the main Eclipse menu in Window (on Mac OS X, Eclipse) > Preferences > General > Network Connections.

If you are still unable to use Eclipse to download the ADT plugin as a remote update site, you can download the ADT zip file to your local machine and manually install it:

1. Download the current ADT Plugin zip file from here: http://dl.google.com/android/ADT-0.9.5.zip (don't unpack it)
2. Follow steps 1 and 2 of "here I choose Eclipse 3.5 (Galileo) for example:" (above)
3. In the Add Site dialog, click Archive.
4. Browse and select the downloaded zip file.
5. In Eclipse 3.5 only, enter a name for the local update site (e.g., "Android Plugin") in the "Name" field.
6. Click OK.
7. Follow the remaining procedures as listed for "here I choose Eclipse 3.5 (Galileo) for example:" (above)

If you still cannot install ADT plugin and encounter the error message like this:
"
Cannot complete the install because one or more required items could
> not be found.
> Software
being installed: Android Development Tools
> 0.9.5.v200911191123-20404 (com.android.ide.eclipse.adt.feature.group
> 0.9.5.v200911191123-20404)
> Missing requirement: Android Development Tools
> 0.9.5.v200911191123-20404 (com.android.ide.eclipse.adt.feature.group
> 0.9.5.v200911191123-20404) requires 'org.eclipse.wst.xml.ui 0.0.0' but
> it could not be found
"
there may be miss some plugins in your eclipse
1. Go to "Help/Install New Software...
2. Add http://download.eclipse.org/releases/galileo/ to the update sites list(strange it's not installed by default on ubuntu)
3. From there, install WST (use the filter box to find the package)
4. Restart eclipse
5. Go back to "Help/Install New Software..." and install the Android ADT as explained on the android website.

OK, till here you may have a breath, an Android SDK with Eclipse IDE has been successfully installed in you Ubuntu system.

Congratulation!!!

Summarized by Benjamin Qi
Intern of Beijing PalmCity Science and Technology Co., Ltd
MSN: benjaminqi@hotmail.com

In this tutorial we are going to learn how to install any given Android application in Android emulator using [dot]APK ".apk" files.

Follow the instructions with SCREENSHOTS of the Android emulator. All you need is just the Android SDK platform (software development kit, with emulator) and .apk files. There is no need to install Eclipse or Netbeans SDk, to work with APK files [wiki]. An .apk file extension denotes an Android Package (APK) file. This file format, a variant of the JAR format, is used for the distribution and installation of bundled components onto the Android mobile device platform.

Let's proceed with installation. First of all download the required stuffs.

1.Android SDK: It can be downloaded from the official google website- here is a link to Latest Android SDK (for which you also need JAVA VM, JDK or JRE already installed). Read how to install it, before you proceed with this tutorial. Don't forget to update the SDK and also install the suitable platform version, in this tutorial we are going to use a stable Android Platform 1.5.

2.Sample APK file: Let's take Sudoku.apk, please download it.

Android Logo"Are you ready for installation?"

WINDOWS XP/VISTA/SEVEN System Setting

Kindly NOTE : For this tutorial, the SDK has been unzipped to this Windows folder location: "E:\android-sdk-windows\"

Start the emulator (Virtual Android):

Android SDK manger window

Either you can start the emulator directly by running emulator.exe from "E:\android-sdk-windows\tools\"

OR

Run the setup sdk "SDK Setup.exe" from "E:\android-sdk-windows\" and then create and start AVD (emulator), in the above picture you can see that we have already created bOtskOOl AVD using Android SDK and AVD manager.

After a few minutes a virtual Android shall boot up and then observe the desktop view, as shown in the picture. Press on menu button and you will find that the applications are arranged in a grid view.

emulator android startingandroid emulator logoandroid desktop viewApplication grid view android emulator

Copy .APK files:

Now, manually copy and paste the Sudoku.apk to destination folder "E:\android-sdk-windows\tools\".

Run the windows command:

Go to Start>>run>>cmd (open a windows command prompt or shell) and type the following commands "highlighted in bold orange".

cd e:\android-sdk-windows\tools\

comments: we do this in order to change our directory level to where the emulator is installed

windows command line

adb install Sudoku.apk

comments: android emulator command to install the Sudoku application in .apk format.

Thats all, it's done. You must get a success message, Hurray!! You have installed your application successfully.

In case if you get error message then please do read the tutorial again, see to it that you have copied the apk file in the right folder or there is no uppercase/lower case error while typing file name.Now switch to your Android emulator, and click on the menu button, you will observe that a Sudoku application appears in the grid view.

application installed

Hope you will be able to install your favourite Android apps easily.

If you want to uninstall any application, then please do read this tutorial on how to uninstall Android .apk files from emulator.

"On other websites, people talk about Environment variables, but in this tutorial installation it has been achieved without doing so and it works superbly."

Friday, October 8, 2010

makemyapp

Hadiah total ratusan juta rupiah, handset BlackBerry, handset Android serta netbook dan juga kesempatan untuk saling berbagi pengalaman dengan generasi-generasi muda yang kreatif dengan berbagai inovasi-inovasi terbarunya telah disediakan oleh Indosat dan menanti para pemenang.

Dengan 2 kategori, yaitu Pengembangan Aplikasi Wireless serta Penulisan Karya Tulis, Indosat menantang para generasi muda untuk menunjukkan dan mengembangkan kreativitasnya yang tak terbatas.

Untuk kategori Pengembangan Aplikasi Wireless sendiri terdiri atas 2 sub kategori, yaitu Bisnis dan Komersial (mobile advertising, mobile tracking & navigation, mobile payment, mobile learning, ataupun traveler / roaming, dll) serta Games & Entertainment (pengembangan terkait games atraktif, interaktif, social netowking, instant messaging, video messaging dsb). Di sini peserta dapat membuat berbagai program aplikasi yang dapat diimplementasikan untuk BlackBerry, handset berbasis Android, layanan broadband (perangkat PC, notebook, netbook, MID, dll) serta untuk perangkat wireless lainnya. Kategori pengembangan aplikasi ini terbuka untuk masyarakat umum.

Kategori IWIC 2010 yang kedua adalah Penulisan Karya Tulis. Dalam kategori ini, peserta membuat karya tulis dengan topik utama yaitu teknologi komunikasi wireless, yang dapat dilihat dari berbagai sudut, antara lain dari segi regulasi, aplikasi / implementasi, industri telekomunikasi secara umum, manfaatnya bagi masyarakat, kandungan lokal perangkat (local content), perkembangan teknologi di masa depan, trend teknologi saat ini dan masih banyak lagi lainnya. Kategori kedua ini ditujukan bagi pelajar SMP/ SMA, Mahasiswa serta wartawan / jurnalis umum.

Untuk kategori Aplikasi Wireless, syarat untuk mengikuti IWIC 2010 adalah karya yang dihasilkan dapat dijalankan atau diaplikasikan di berbagai platform (BlackBerry, Android, Broadband, dsb), karya harus original, unik, dan belum pernah diikutsertakan dalam lomba lain sebelumnya, serta karya yang terpilih menjadi pemenang, akan direview oleh Indosat, untuk dapat ditindaklanjuti sebagai fitur yang akan dikomersialkan Indosat dan akan dilakukan negosiasi terpisah.

April 2010 saw the launch of Nokia's Make My App competition, that invited anyone worldwide to submit an idea for an app and get the chance to have it turned into a real app. From more than 7691 brilliant ideas to your voted shortlist of 90, our judges chose 13 winning ideas. Those 13 winning ideas were made into real apps at Nokia World event held in London, September 14-15.

Looking at the rich diversity of the applicants we were proud to be reassured that creative people can be found everywhere in the world. Brazil, Latvia, Kuwait, Jamaica, India, France, Egypt, Malaysia and UK all got their own Make My App –winner. In fact, India got 3.

We filmed the remarkable journey of the 13 winning ideas and their creators as they made their way to the Nokia World event in London and witnessed their ideas come to life. The apps are being finalized for release in the Ovi Store as Nokia's search for new ideas to connect people continues, with Make My App competition being just a beginning.

Face Recognition Based Device Locks
Fun & Games Category

* Share
*
*


The Winner
Piyush Veere
Student - Computer Technology
19 years
India
INDT Visual Enginering Developer
INDT
Visual Enginering

According to me every smartphone needs some securing tool.here i am talking about an application that will guard the device at different levels of system.take it as complete device lock,particular file lock,applications lock,phonebook lock(particular contacts or groups),and a data encryptor.

Toddler Tutor
Better World Category

* Share
*
*


The Winner
Revathy Sreedharan
Software Engineer
29 years
India
Spice Labs/India Developer
Spice Labs/India

A talking app that teaches kids Alphabets, Numbers and Common Words. The app should display flash cards we can swipe through and a speak button that speaks out the displayed card. The app should also include a coloring book with lots of images where children can select different colors to fill in.

Mobile Photoshop
Fun & Games Category

* Share
*
*


The Winner
Piyush Veere
Student - Computer Technology
19 years
India
Ansel A Digia Developer
Ansel A
Digia

This is a thought for a miniature form of photoshop application or a boosted mobile image editor. A super phone like nokia n8 deserves such a creative tool.

Auto HDR photography
Easier Living Category

* Share
*
*


The Winner
Arvis Pukitis
Student
17 years
Latvia
Morpho-Panorama Developer
Morpho-Panorama

As known N8 will feature amazing camera, so why not make it even better with app which could take HDR photos and merge them? I mean take 3 photos one after another with exposure -2, 0 and +2, and merge them together to get amazing looking photo. So far to do so we needed more equipment like tripod to keep phone steady (there should be almost no movement when taking HDR), remote keyboard to change exposure without moving phone and additional software to merge images into HDR. But it would all be solved with such app which automatically takes 3 photos and merges them together. For anyone taking photos with N8 this would be amazing addition. Attached pictures are examples of HDR pics I've made with Nokia N82 so far.

BioSeen
Think Green Category

* Share
*
*


The Winner
Paul Heaven
Student - Civil Engineering
21 years
Jamaica
Arobs Developer
Arobs

Take pictures of wildlfe with the phone's camera and the BioSeen app will be able to download info on the organism to your device while simultaneously uploading geotagging info as well as photographer comments. Usefull for locating and preserving valuable/rare species and sharing them with the world.

Document Creator Manager
Think Green Category

* Share
*
*


The Winner
Dileep Devapal
Software Engineer
29 years
India
Quickoffice Developer
Quickoffice

Nokia should develop an app that can utilize the macro mode of the excellent 12MP camera to take optimized photos of a document and convert it into a WordPDF document which can be saved on the phone. The operation should be done on phone instead of uploading images to a 3rd party server. The app should also be able to manage these documents. This would certainly help reduce the carbon footprint and reduce the need for printing documents for reference.

Emergency Geotagged Photo
Better World Category

* Share
*
*


The Winner
Adamo Pinheiro
Architect
25 years
Brazil
Enpronomics Developer
Enpronomics

This application would allow you to send in a easy way Geotagged Photos to your local Emergency unit, such as Police, Firefighters o others. This way they would know exactly with what they will be dealing, the exactly location and also would be avoiding prank calls.

First aid
Easier Living Category

* Share
*
*


The Winner
Yann Lossouarn
User Experience and Usibility Specialist
35 years
France
Teleca Developer
Teleca

This app would provide users with information about how to apply basic first aid recommendations in case of an accident (Protect victims, Alert services, Aid victims !), heart attack or drowning : perform a heart massage ? Perform an Expired air resuscitation procedure...

Green news
Think Green Category

* Share
*
*


The Winner
Omar Rafat Orabi
Student - Petroleum Engineering
21 years
Egypt
Green News Developer: Sustainability Team will choose an eco blogger

This app should be source for environmental & climate change news & statics allover the world it should also allow widgets and may be donation to certain related organizations.

I-Friend
Better World Category

* Share
*
*


The Winner
Amro Kira
Senior Accountant
29 years
Kuwait
Iron Bit Developer
Iron Bit

Hi it's the time to have your electronic friend with you always A voice program using the mobile sensor, calender , GPS hardware, google answers, here & now ,and meeting reminder to be an electronic friend speaking and reminding to the owner and also answering him good morning you have a meeting.

Instant Voice Translation
Easier Living Category

* Share
*
*


The Winner
Yuen Liew
Online Business Owner
29 years
Malaysia
Tieto Developer
Tieto

Instant voice translation app combining voice recognition feature on Nokia phones and the huge collection of voice pronunciation in dictionary.com or Google Dictionary. Just speak to the phone in foreign language, the app will translate the words on back-end then produce the translated voice output.

Sound editor
Fun & Games Category

* Share
*
*


The Winner
Arvis Pukitis
Student
17 years
Latvia
HI Media Digital Developer
HI Media Digital

Everyone likes music and a lot of us might wan't to make some. So what about little sound editor where you put sound samples together (like kicks, hihats, other drums, piano and such which should come with thhe app, at least some) in patterns and put patterns together to make a simple beat. WIth editing BPM (beats per minute) it would make a great, fun and useful app, which would be very useful for those who want to make simple beats anywhere with N8. Image attached of how I think it might look like.

Storymaker
Fun & Games Category

* Share
*
*


The Winner
David Lee
Field Service Engineer
35 years
UK
Aalborg Developer
Associate Professor Dr.-Ing. Frank H.P. Fitzek Aalborg / University Head of Future Visions and Mobile Devices Niels Jernes Vej 12

An app that allows anyone to collaborate on making a story. You can select categories or topics, users write a paragraph or two and another user continues where the other person left off, again writing a paragraph or two. App can have friend lists, time limits etc to enhance the experience !

Tuesday, October 5, 2010

pastebin

http://pastebin.com/

Wednesday, September 29, 2010

lastlog

http://ubuntuforums.org/showthread.php?t=978909

$ last

Tuesday, September 28, 2010

Compaq-Presario-V3000-Notebook-PC-Maintenance-and-Service-

http://www.scribd.com/doc/5553642/Compaq-Presario-V3000-Notebook-PC-Maintenance-and-Service-

Tuesday, September 21, 2010

admin stuff: mass user creation

===========
##myuseradd.sh
#!/bin/bash

#make group id
# groupadd -g 2009 grid
GROUPID=2009
GROUP=grid
SHELL=/bin/bash
#SKEL_DIR=/etc/skel

#webmin module
# for disk quota. Apply same value of the disk quota to one group
#MODELUSER=quotamodel

# to create a personal web page directory
# /etc/skel
# flag m n flag k not working yet
mkdir -p /home/tmp/$1
cp -rf /root/skel/* /root/skel/.bash* /root/skel/.ssh/ /home/tmp/$1
chmod 755 /home/tmp/$1 -R
chmod 600 /home/tmp/$1/.ssh/authorized_keys /home/tmp/$1/.ssh/id_rsa
chmod 644 /home/tmp/$1/.ssh/known_hosts /home/tmp/$1/.ssh/id_rsa.pub
useradd -c “$3 $4 $5 $6″ -s $SHELL -g $GROUPID -d /home/tmp/$1 $1

#install sth ‘expect’ package related
autopasswd $1 $2
chown $1.$GROUP /home/tmp/$1 -R

# Set a user quota to one group (group id = 2009)
#edquota -p $MODELUSER `awk -F: ‘$3 > 499 && $4==2009{print $1}’ /etc/passwd`
===========

===========
##myuserdel.sh
#!/bin/bash
# -r option removes both the home directory and the mail spool

#rm -fr /home/tmp/$1
userdel -r $1
===========

=======
##autopasswd
#!/usr/bin/expect -f

# wrapper to make passwd(1) be non-interactive

# username is passed as 1st arg, passwd as 2nd

set password [lindex $argv 1]
spawn passwd [lindex $argv 0]
expect {
-re “password:” {sleep 1; send “$password\r”; exp_continue}
-re “password:” {sleep 1; send “$password\r”;}
}

=======
==========
frs
1 5103100006 ARDIONO INDAR S
2 5105100061 EKO FAJAR YANUWARSA
3 5105100074 YASFIN FAJRI
4 5105100151 I KETUT WIRATANAYA
5 5105100152 YAZID HERDIANTO
6 5106100001 BHAGAS ARGA SAPUTRA
7 5106100007 ACHMAD FADHLIYANSYAH
8 5106100014 ANDRY SEVTIAWAN
9 5106100015 DEGI PANJU ANANDIA
10 5106100016 JADID PRATAMA YUGA NUGRAHA
=========
$ awk ‘{ print $2 ” ” $2 ” ” $3 ” ” $4 ” ” $5 ” “}’ frs > getFull
=========
#getFull
5103100006 5103100006 ARDIONO INDAR S
5105100061 5105100061 EKO FAJAR YANUWARSA
5105100074 5105100074 YASFIN FAJRI
5105100151 5105100151 I KETUT WIRATANAYA
5105100152 5105100152 YAZID HERDIANTO
5106100001 5106100001 BHAGAS ARGA SAPUTRA
5106100007 5106100007 ACHMAD FADHLIYANSYAH
5106100014 5106100014 ANDRY SEVTIAWAN
5106100015 5106100015 DEGI PANJU ANANDIA
5106100016 5106100016 JADID PRATAMA YUGA
5106100020 5106100020 MUHAMMAD IRFAN
5106100026 5106100026 TAUFAN PRABU RAHARDJO
5106100028 5106100028 FERBIANTO
5106100030 5106100030 SATRIA PRASAMYA
5106100032 5106100032 FAJRI ARYUANDA
5106100034 5106100034 DIAN PERDANA
=========
cat getFull |while read line; do myuseradd $line; done
cat getFull |while read line; do myuserdel $line; done

Monday, September 20, 2010

on a high

I'm on a high, on a high there's nothing more to it
We are the sea and the sky and the blue that runs through it, yeah
And there are some who say there are so many things I need
So I run or I fight and I crawl or I scream and I bleed, I bleed, I bleed

It's a lie it's a lie, don't you believe it
If you're fine then you're fine, it's all how you see it
Oh, there never will be no conspiracy of happiness

I'm on a high, on a high there's nothing more to it
I have the sun, it's a star, why should I refuse it?
And there are so many reasons
I could give you why I should be down
There's not enough money
Or time and my love you're not around, around, around

It's a lie, it's a lie, don't you believe it
If you're fine then you're fine, it's all how you see it
Oh, there never will be no conspiracy of happiness

You're alive, you're alive, how else could you hear me?
You are fine, you are fine, there's nothing worth fearing
'Cause there never will be no conspiracy of happiness

I'm on a high, on a high, we are the sea and the sky
I'm on a high, on a high, I'm on a high

It's a lie, it's a lie don't you believe it
'Cause I've tried and I've tried, and I can't really see it
I'm trapped inside my conspiracy of happiness

Said, "I was yours, you were mine", But I didn't really mean it
And I lied and I lied, I wish you hadn't seen it
I'm trapped inside my conspiracy of happiness

I'm on a high, on a high, there's nothing more to it, yeah

modem su6350

==================================================
knoppix@Microknoppix:~$ cat /etc/wvdial.conf
==================================================

[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Modem Type = Analog Modem
Phone = #777
ISDN = 0
Password = telkom
New PPPD = yes
Username = trxedgvb@free
Modem = /dev/ttyUSB0
Baud = 9600
Stupid Mode = 1

root@Microknoppix:/mnt-system# cat connect_modem.sh
while true; do wvdial ; sleep 3; done

# to get username for browsing
http://www.2shared.com/file/uZyjs3I0/SU-6350_CDMA_Mobile_Connect.html

file sharing stuff

http://www.2shared.com/file/uZyjs3I0/SU-6350_CDMA_Mobile_Connect.html

Sunday, September 19, 2010

Doa syafaat

Doa adalah Nafas Rohani Untuk Menguatkan Roh Kita

Sebelum mempelajari tentang doa syafaat, kita harus bertanya
terlebih dahulu, "Apakah doa itu? Apa pikiran Anda tentang doa?".

Kita dapat mengemukakan bermacam-macam jawaban, tetapi hubungan
atau keterkaitannya hampir sama. Doa adalah percakapan rohani dengan Tuhan,
yaitu saat kita berbicara kepada Tuhan dan Dia menjawab atau saat Tuhan
berbicara kepada kita, dan kita menjawab. Itulah yang disebut doa. Doa bukan
percakapan satu arah. Dan kita tahu, dalam Alkitab tertulis, "Tetaplah berdoa"
(I Tes 5:17).



Dalam tubuh kita, 'organ' yang terus bekerja dan tidak pernah
berhenti adalah jantung. Siapapun mengetahui hal itu. Kalau jantung kita
berhenti, semua organ di dalam tubuh kita juga berhenti. Doa adalah nafas
rohani, sama seperti kerja jantung. Kalau doa berhenti, kehidupan rohani kita
juga berhenti. Kehidupan doa seperti peredaran darah yang bersikulasi di dalam
tubuh kita. Tenaga yang baru, tersedia untuk hidup kita sewaktu darah beredar
atau bersikulasi di dalam tubuh sambil menyaring semua kotoran. Doa juga
memperbaharui dan membersihkan bagian yang sudah kotor. Doa adalah sarana untuk
menyucikan dan membersihkan diri kita, ini merupakan keinginan Tuhan. Doa
adalah nafas rohani untuk memeperkuat roh kita.



Syafaat

Sekarang kita menyelidiki tentang syafaat. Syafaat berarti datang
di hadapan Tuhan dengan tujuan menggantikan posisi seseorang. Saya ingin Anda
mempercayai bahwa Tuhan Yesus adalah seorang yang menggantikan posisi kita di
hadapan Allah untuk selama-lamanya. Firman Tuhan berkata, "Demikian juga Roh
membantu kita dalam kelemahan kita; sebab kita tidak tahu, bagaimana sebenarnya
harus berdoa; tetapi Roh sendiri berdoa untuk kita kepada Allah dengan
keluhan-keluhan yang tidak terucapkan" (Roma 8:26). Ingatlah, Roh Kudus
membimbing kita supaya dapat berdoa.



Perantara (Intercession)

Syafaat diekspresikan dalam bahasa Inggris sebagai kata
"intercession." Arti kosakata ini adalah berdiri di antara dua orang, seperti
saya berada dalam kelompok itu, yaitu saya berdiri di antara dua orang yang
datang bersama di hadapan Tuhan. Penjelasan yang lain, syafaat adalah berdoa
di hadapan Tuhan dengan menggunakan haknya agar menerima rahmat Tuhan.
Orang-orang yang mempunyai hak, akan berdoa.



Siapakah Pendoa Syafaat?

Pendoa syafaat adalah seseorang yang datang mendekat dan berdoa di hadapan
Tuhan untuk menggantikan posisi orang lain yang sudah jauh dari Tuhan atau
hidup tanpa Tuhan. Jadi sebelum berdoa untuk orang lain, pendoa syafaat harus
sudah mendapat pengampunan dosa dari Tuhan.

Kita tahu bahwa pendoa syafaat adalah seseorang yang datang di
hadapan Tuhan dengan membawa haknya. Hak-hak pendoa syafaat itu diterima dari
Tuhan yang dimulai dari pengampunan dosa sampai menjadi anak Tuhan. Dan karena
sudah mendapat pengampunan dosa maka kita dapat membimbing orang lain untuk
mendapat pengampunan dosa juga. Prinsip yang sama dengan hal ini adalah
anugerah, kasih, rahmat Tuhan dan mengampuni tanpa syarat.



Kita sudah banyak diampuni oleh Tuhan. Ingat perumpamaan, jika kita
mempunyai hutang sepuluh ribu talenta dan dihapuskan, apa yang akan kita
lakukan kepada orang yang berhutang seratus dinar? Hal ini sama seperti saya
yang seharusnya dilemparkan ke dalam api neraka yang kekal (berhutang besar),
tetapi karena menerima Yesus Kristus kemudian diampuni oleh Tuhan, lalu
sekarang apa yang harus saya lakukan kepada orang lain yang melakukan kesalahan
kecil kepada saya (berhutang kecil)? Jadi, orang yang mempunyai pengalaman
diampuni dan menerima pengampunan dari Tuhan, dapat mengampuni orang lain tanpa
syarat. Orang seperti itu sajalah yang dapat berdoa syafaat untuk orang lain.

Lalu bagaimana cara dapat berdoa dengan sepenuh hati? Sama seperti
hal tadi, yaitu jika kita sudah menerima kasih Tuhan tanpa syarat, maka kita
dapat berdoa untuk orang lain dengan kasih tanpa syarat. Seseorang yang sudah
menerima kasih Tuhan dapat mengetahui dan mengerti konsep kasih. Kasih itu
bukan cinta yang sering dikatakan oleh semua orang. Seseorang dapat mengasihi
tanpa syarat dan berdoa tanpa syarat jika sudah menerima kasih Tuhan yang
tidak pernah berubah. Sebagai pendoa syafaat kita harus memperhatikan hal-hal
ini. Pada saat berdoa di hadapan Tuhan jangan melakukan dengan syarat. Karena
pendoa syafaat yang menerima kasih dari Tuhan tanpa syarat harus dapat berdoa
tanpa syarat untuk negara yang belum pernah dikunjungi, yang bahasa dan sukunya
tidak diketahui.



Dalam kitab Ester ada empat tokoh penting. Tokoh pertama adalah ratu Ester,
tokoh kedua adalah Ahasyweros, seorang raja. Tokoh ketiga adalah Mordekhai,
saudara dari ayah Ester yang membantu Ester. Tokoh keempat adalah Haman,
seorang perdana mentri yang melakukan apa saja untuk memuaskan hasratnya. Jika
kita menyeldiki hal tersebut dari pandangan doa syafaat, maka ratu Ester
melambangkan pendoa syafaat, Mordekhai melambangkan Roh Kudus, Ahasyweros
melambangkan Tuhan dan Haman melambangkan setan yang membunuh dan
menghancurkan. Kita dapat mengetahui kisah mereka melalui kitab Ester. Pada
saat semua suku Israel berpuasa dan berdoa sehati, maka nasib mereka berubah
dan lolos dari kematian.

Melalui bangkitnya 'Gerakan Doa Syafaat Bersama', maka Tuhan menggenapi
janjiNya menghidupkan orang yang mati dan membinasakan pembunuh. Doa syafaat
mengubah sejarah dengan cara demikian. Hal itu harus kita percayai dan alami.
Karena bukanlah sifat doa syafaat yang sesungguhnya jika berpikir bahwa wilayah
atau apa saja dapat diubahkan dan digenapi hanya melalui satu orang yang sudah
diubah dan menerima kuasa. Saya berharap semua orang Kristen di dunia bersatu
dan berdoa kepada Tuhan untuk memulihkan dunia ini. Jika demikian, bagaimana
hati seorang pendoa syafaat dapat datang kepada Tuhan?

Untuk itu, kita menyelidiki di dalam Alkitab mengenai ciri-ciri orang yang
dipakai Tuhan dengan luar biasa. Kita dpaat mengetahui bahwa mereka semua
adalah pendoa syafaat. Jika kita dapat memilih seseorang yang mempunyai iman
yang luar biasa, tentunya dia adalah pendoa syafaat di hadapan Tuhan. Dia dapat
berdoa untuk orang lain, mendengar suara Tuhan dan menaati kehendak Tuhan.
Tuhan ingin membimbing zaman ini melalui mereka.



Abraham adalah Pendoa Syafaat yang Mengagumkan

Sebagai pendoa syafaat Abraham muncul dalam kitab Kejadian 18:22-33. Namun kita
akan mempelajari mulai pada Kejadian pasal 12 saat pertama kali Abraham
mendengar suara Tuhan lalu dia pergidari negerinya, sanak saudaranya, rumah dan
harta bapaknya serta hanya mempunyai harta yang ada padanya. Kemudian karena
menaati firmanNya, Tuhan memberkati Abraham dengan melimpah.

Keponakannya yang bernama Lot juga ikut bersama-sama dengan Abraham dan Lot
pun diberkati oleh Tuhan. Tetapi pada suatu saat di antara kedua orang tersebut
muncul persoalan oleh karena harta mereka yang sangat banyak. Sperti juga kita
yang kadang-kadang berpikir jika harta semakin banyak, maka karya Tuhan semakin
baik. Tetapi kita harus ingat bahwa ada kemungkinan hasilnya lebih buruk
daripada waktu yang lalu. Umat Allah yang ingin menjadi pendoa syafaat harus
sadar dan bangun dari lamunan keduniawian bahwa harta menyelesaikan segala
masalah: Harta dapat menjadi berhala.



Kuasa Tuhan yang Maha Kudus dapat membuat sesuatu yang tidak mungkin menjadi
mungkin. Walaupun keadaan pendoa syafaat lemah dan tidak lebih baik, dia harus
mempercayai bahwa dia berkenan di hati Tuhan dan berdoa sesuai dengan pokok doa
yang diinginkan Tuhan sehingga dia dapat dipakai dengan dahsyat. Walaupun
demikian pada saat kedua orang tersebut berpisah, Abraham menyesali hal itu.
Tetapi di dalam Alkitab tertulis bahwa persoalan tersebut tidak menjadi masalah
untuk Abraham. Perlu diingat apa yang dilakukan oleh Abraham pada saat terjadi
peperangan di Sodom dan Gomora. Setelah beberapa saat Lot pindah ke kota
tersebut, Abraham pergi ke tempat peperangan itu untuk menyelamatkan Lot. Dari
hal ini kita harus mengambil pelajaran mengenai hati Abraham yang menolong Lot.
Apakah Anda bersukacita jika orang yang memfitnah dan mengecewakan Anda
menderita kesusahan? Anda harus berdoa supaya perasaan seperti itu hilang
karena seorang pendoa syafaat yang sungguh-sungguh harus mampu berdoa untuk
memberkati orang yang telah menganiaya. Tuhan juga berfirman, "Tetapi Aku
berkata kepadamu: Kasihilah musuhmu dan berdoalah bagi mereka yang menganiaya
kamu" (Mat 5:44). Tetapi untuk melakukan firman Tuhan ini tidaklah mudah. Hal
tersebut jarang terjadi karena mengasihi musuh biasanya hanya dalam hati saja.
Tetapi kalau firman ini dapat mengubahkan diri kita maka kita dapat mengasihi.

Setelah Lot diselamatkan dalam peperangan, Tuhan berfirman akan memusnahkan
semua tanah Sodom oleh karena dosa mereka. Sodom dan Gomora akan dimusnahkan
karena Tuhan tidak menemukan sepuluh orang benar. Kita akan mengamati apa yang
didoakan oleh Abraham untuk menyelamatkan Lot di hadapan Tuhan.



Berdoa dengan Iman

Pertama, berdoa dengan iman. Abraham adalah seorang pendoa yang
beriman. Ia berdoa dengan sikap yang mengakui keadilan Tuhan, yaitu menghadap
Tuhan dengan iman bahwa apa yang dijanjikan oleh Tuhan menurut firman Allah
akan digenapi. Allah berkenan terhadap doa yang didoakan oleh orang yang
beriman. Alkitab menyaksikan hal itu. Allah menghendaki doa seorang yang
percaya bahwa yang didoakan akan diterima. Allah berkenan ketika kita
menanggapi hal yang didoakan. Allah mendengar doa orang yang dilakukannya
dengan iman. Tetapi Aku berkata kepadamu: "Pada hari penghakiman, tanggungan
Tirus dan Sidon akan lebih ringan daripada tanggunganmu. Dan engkau Kapernaum,
apakah engkau akan dinaikkan sampai ke langit? Tidak, engkau akan diturunkan
sampai ke dunia orang mati! Karena jika di Sodom terjadi mujizat-mujizat yang
telah terjadi di tengah-tengah kamu, kota itu tentu masih berdiri sampai hari
ini. Tetapi Aku berkata kepadamu: "Pada hari penghakiman, tanggungan negeri
Sodom akan lebih ringan daripada tanggunganmu" (Mat 11:22-24). ". dan apa juga
yang kamu minta dalam namaKu, Aku akan melakukannya, supaya Bapa dipermuliakan
di dalam Anak. Jika kamu meminta sesuatu KepadaKu dalam namaKu, Aku akan
melakukannya" (Yoh 14:13-14). "Jikalau kamu tinggal di dalam Aku dan firmanKu
tinggal di dalam kamu, mintalah apa saja yang kamu kehendaki, dan kamu akan
menerimanya" (Yoh 15:7).



Abraham dibenarkan karena iman. Pada waktu Abraham berdoa syafaat untuk Lot,
doa itu dijawab dan digenapi oleh Tuhan. Tanah Sodom dan Gomora diselamatkan
oleh Tuhan melalui doa syafaat Abraham dan Lot pun tidak tahu tentang hal itu.
Tetapi Abraham tidak berkata, "Karena saya berdoa maka Lot dapat diselamatkan."
Tetapi dia mengucap syukur kepada Tuhan.



Doa Orang Benar Hanya Merenungkan Tuhan

Saya berharap ketika pendoa syafaat berdoa untuk orang lain jangan
menonjolkan kebenarannya sendiri, karena dia mendapat jawaban dari Tuhan dan
bersukacita tentang hal itu. Juga bersyukurlah dengan sungguh-sungguh, karena
Tuhan mendengar doa kita dan melakukan 'revival.' Nama Tuhan ditinggikan jika
doa orang yang benar tidak menonjolkan kebenarannya sendiri tetapi hanya
menonjolkan kebenaran Tuhan.

Sebagai pendoa syafaat kita mendapat banyak pengalaman rohani dan
sudah seharusnya pendoa syafaat bersyukur kepada Tuhan dan meninggikan nama
Tuhan. Jika kita berdoa untuk orang lain, mereka juga akan mendapat pengalaman
rohani samapa seperti yang kita alami. Ingat, jangan menghakimi orang lain
ataupun membatasi karya Tuhan yang mau memakai kita. Caranya, sejak awal kita
harus bersyukur karena diberi kuasa dan kasih karunia dari Tuhan untuk dipakai
sebagai alatNya.



Selain itu, yang diinginkan oleh Tuhan dengan berdoa kita dapat
terus menerus mempertahankan kasih karunia dan kuasa yang ada di dalam hati.
Oleh karena iman orang benar yang memiliki motivasi, tujuan serta pengharapan
yang sesuai dengan kehendak Tuhan, akan menghasilkan doa yang benar. Kita
harus mengetahui tujuan berdoa. Jika tujuan itu hanya untuk kehormatan,
kekayaan, kekuasaan, dan jumlah pertambahan jemaat saja, maka hal itu akan
menjauhkan kita dari Tuhan. Tetapi doa yang mempunyai tujuan,alas an dan
pengharapan yang jelas dapat menggerakkan sejarah kekristenan pada masa lalu
dan sanggup bertahan karena pendoa syafaat tidak goyah terhadap kesulitan apa
saja. Contohnya, gerakan Kebangunan Rohani di Inggris yang dimulai oleh
Wesley, awalnya hanya melibatkan sekitar 20 orang pendoa syafaat.



Perintah untuk beriman kepada Tuhan juga tertulis dalam kitab
Markus. Supaya dapat berjalan bersama Allah, kita harus mempunyai iman sesuai
dengan tingkat iman yang sudah diberikan Tuhan. Jika kita melakukannya sesuai
tingkat iman yang sudah diberikan oleh Tuhan, maka tidak akan ada masalah.
Tetapi jika seseorang merasa mempunyai tingkat iman tertentu yang ternyata
melebihi tingkat iman pemberian Tuhan, maka kehidupan rohaninya menjadi
bermasalah. Melalui orang yang taat, Tuhan menggenapi terjadinya gerakan
Kebangunan Rohani yang dahsyat yang mengubahkan dunia ini. Contohnya, hamba
yang mempunyai dua talenta, walaupun dipercayakan sedikit, tetapi dia menaati
untuk menjalankannya dengan jumlah iman tertentu yang sesuai. Di lain pihak,
walaupun mempunyai lebih banyak talenta, tetapi dipakai untuk memuaskan hawa
nafsunya sendiri, menyebabkan kehidupan rohaninya hancur sehingga Tuhan tidak
berkenan. Tuhan tidak menjawab doa yang didasari hawa nafsu dan hasrat. Kita
harus menyadari bahwa berdoa dengan hasrat dan ambisi manusia, dapat menjadi
peluang untuk roh jahat melakukan kejahatan. "Atau kamu berdoa juga, tetapi
kamu tidak menerima apa-apa, karena kamu salah berdoa, sebab yang kamu minta
itu hendak kamu habiskan untuk memuaskan hawa nafsumu" (Yak 4:3).



Berdoa Dengan Rendah Hati

Kedua, berdoa dengan rendah hati. Rendah hati dapat diartikan
sebagai kemurnian dan kelemahlembutan. Kita akan mempelajari Abraham yang
adalah nenek moyang orang beriman. Dia adalah 'prototype' (gamabar awal) Yesus
Kristus yang memberikan teladan kerendahan hati. Abraham menyahut,
"Sesungguhnya aku telah memberanikan diri berkata kepada Tuhan, walaupun aku
debu dan abu" (Kej 18:27). Bagaimana cara Abraham dapat berbicara seperti itu
di hadapan Tuhan? Hal itu menunjukkan walaupun Abraham melihat dirinya tidak
baik, tetapi dengan berani meminta kepada Tuhan dengan sungguh-sungguh. Dia
dengan berani meminta karena Tuhan membenarkan, memilih dan menjadikannya anak
Tuhan serta membimbingnya. Kata-kata 'Walaupun aku debu dan abu' menunjukkan
sifat kerendahan hati yang sungguh di hadapan Tuhan.



Alkitab memberikan tekanan khusus pada kerendahan hati dan tinggi
hati. Dalam Amsal 18:12 tertulis, "Tinggi hati mendahului kehancuran, tetapi
kerendahan hati mendahului kehormatan." Rendah hati juga berkaitan dengan
kelembutan hati. Kelembutan hati di dalam Alkitab berarti orang yang bergaul
karib dengan Tuhan. Abraham adalah orang yang bergaul karib dengan Tuhan. Jika
Tuhan memerintahkan kepada Abraham, "Pergi," maka dia pergi, dan jika, "Jangan
pergi," maka Abraham tidak pergi.

Bandingkanlah kuda liar dan kuda jinak, yang mana lebih cepat
larinya? Sewajarnyalah, kuda liar berlari lebih cepat dibanding kuda jinak,
namun tidak ada seorangpun yang mau menunggang kuda liar. Sebab jika kuda
jinak disuruh oleh pemiliknya, "Pergi," maka kuda itu pergi, dan
jika,"Berhenti," kuda itupun berhenti. Kuda liar memang berlari lebih cepat,
tetapi tidak menaati pemiliknya, hanya berlari sesuai dengan keinginannya.
Demikian juga kehidupan kerohanian kita, dapat menjadi rendah hati oleh
bimbingan Roh Kudus yang melatih kita. Arti yang lain dari rendah hati adalah
kemurnian hati.

"Pikullah kuk yang Kupasang dan belajarlah kepadaKu, karena Aku
lemah lembut dan rendah hati dan jiwamu akan mendapat ketenangan" (Mat 11:29).

"Sebab mata Tuhan tertuju kepada orang-orang benar, dan telingaNya
kepada permohonan mereka yang minta tolong, tetapi wajah Tuhan menentang
orang-orang yang berbuat jahat" (I Petrus 3:12).



Rendah hati berarti kemurnian, kemurnian adalah kesederhanaan
(Bahasa Inggris: 'simple'). Semakin murni, semakin tidak bercampur dengan
unsure lain. Hampir semua orang di dalam Alkitab yang beriman besar adalah
orang yang sederhana cara berpikirnya. Jika mereka diperintahkan Tuhan,
"Pergi," pasti pergi. Kalau Tuhan berkata kepada mereka A, maka mereka
mengakui hal itu akan menjadi A. Tetapi orang yang rumit cara berpikirnya akan
kehilangan iman yang besar karena mereka sering mempertanyakan alasan dari
perkataan Tuhan. Kita dapat memperoleh kemurnian melalui berdoa. Jika Anda
ingin kemurnian dari Tuhan, berdoalah demikian,

"Tuhan, tolong hapuskan perkara yang tidak Tuhan inginkan dari hati
dan pikiran saya. Saya ingin hidup seperti yang Tuhan inginkan. Tolong hapuskan
juga hal-hal yang menghalangi untuk maju di hadapan Tuhan dengan rendah hati,
baik yang ada di dalam hati, pikiran dan kehidupan saya. Tolong pimpin saya
supaya dapat melayani Tuhan dengan hati yang murni."



Kita tidak dapat berdoa syafaat tanpa kerendahan hati. Saya pernah
berdoa untuk setiap negara melalui informasi dari buku. Saya berdoa untuk
tempat yang tidak saya ketahui sama sekali sebagai sasaran visi dan misi sambil
menangis dan berteriak kepada Tuhan. Selesai berdoa saya tidak merasa sedih,
jengkel atau sakit hati walaupun tadi menangis dan berteriak. Hal itu terjadi
karena Roh Kudus memberikan hati seperti itu di dalam hati saya. Jika saya
berdoa sebenatar saja di dalam hati, Roh Kudus mengijinkan saya merasakan hati
Tuhan.



Berdoa Dengan Berani

Ketiga, berdoa dengan berani. Tuhan ingin memakai kita untuk
berdoa syafaat, supaya tidak membatasi Tuhan untuk hal itu, kita harus
mempunyai hati yang berani.

Katanya, "Sesungguhnya aku telah memberanikan diri berkata kepada
Tuhan. Sekiranya dua puluh didapati disana?" FirmanNya: "Aku tidak akan
memusnahkannya karena yang dua puluh itu" (Kej 18:31).

Ayat tersebut menunjukkan sebuah jalan keluar yang memenangkan
setiap peperangan rohani atau perjuangan rohani. Melalui orang beriman, Tuhan
ingin memberikan kemenangan. Kepada orang yang rendah hati Tuhan mencurahkan
anugerah dan kuasa, namun Tuhan juga ingin memakai orang yang berani. Tuhan
tidak dapat memakai orang yang tidak berani karena orang itu setiap hari
ragu-ragu walaupun dia mempunyai anugerah dan kuasa. Perkataan Abraham 'Aku
berani meminta' dapat diganti dengan 'Aku berani berdoa di hadapan Tuhan.'



Pada saat Tuhan Yesus memanggil murid-muridNya, Dia berkata
'Ikutlah Aku' bukan untuk orang yang diam dan duduk saja. Tetapi Tuhan
memanggil Matius, seorang pemungut cukai dan Petrus yang menjahit jala supaya
dapat menjala ikan di laut dengan hati yang tulus. Jadi Tuhan memilih dan
memakai orang yang mempunyai ketulusan hati dengan pekerjaan sendiri. Tuhan
sudah melihat kemungkinan orang itu maka Tuhan meminta meninggalkan semua hal
itu sekarang supaya dapat melihat keberaniannya. Tuhan ingin mengamati apakah
dia berani mengikuti Tuhan dengan iman. Tuhan ingin kita taat kepadaNya.
Setelah Tuhan menumbuhkan iman Abraham, Tuhan memerintahkan untuk
mempersembahkan Ishak supaya dapat melihat ketaatan Abraham. Maka dapat
disimpulkan 'tidak taat adalah tanda tidak beriman.'



Pada saat Roh Kudus menggerakkan hati kita, saat menginginkan kita
berdoa, tetapi jika kita tidak menaati karena memikirkan keadaan dan kondisi
kita, apa yang akan terjadi? Tuhan mencari orang taat yang menanggapi dengan
segera dan melalui orang itu Tuhan selalu menggenapi karyaNya. Pada saat
mendengar musik dan mengemudikan mobil, di rumah maupun di gereja, kapan saja
dan di manapun, Tuhan meminta keberanian dan ketaatan kita. Tuhan ingin kita
mempunyai keberanian yang tidak goyah. Tanpa iman dan keberanian kita tidak
dapat melayani pengusiran setan dan berdoa untuk orang sakit. Kalau tidak
siap, kita akan mendapat masalah sendiri pada saat mendoakan. Antara berteriak
karena merasa takut dan berteriak karena merasa berani saat mengusir setan
merupakan tingkatan yang berbeda. Menyadari keinginan Tuhan membuat kita
berani. Kita akan menyelidiki hal itu lebih dalam pada bagian kedua.



Berdoa untuk Komunitas

Keempat, berdoa untuk komunitas. Abraham berdoa untuk Lot dan
orang-orang yang tinggal di dalam kota itu.

"Bagaimana sekiranya ada lima puluh orang benar dalam kota itu?
Apakah Engkau akan melenyapkan tempat itu dan tidakkah Engkau mengampuninya
karena kelima puluh orang benar yang ada didalamnya itu? Jauhlah kiranya
daripadaMu untuk berbuat demikian, membunuh orang benar bersama-sama dengan
orang fasik, sehingga orang benar itu seolah-olah sama dengan orang fasik!
Jauhlah kiranya yang demikian daripadaMu! Masakan Hakim segenap bumi tidak
menghukum dengan adil?" Tuhan berfirman: "Jika Kudapati lima puluh orang benar
dalam kota Sodom, Aku akan mengampuni seluruh tempat itu karena mereka.
Abraham menyahut:"Sesungguhnya aku telah memberanikan diri berkata kepada
Tuhan, walaupun aku debu dan abu. Sekiranya kurang lima orang dari kelima puluh
orang benar itu, apakah Engkau akan memusnahkan seluruh kota itu karena yang
lima itu?" FirmanNya, "Aku tidakmemusnahkannya jika Aku dapati emapat puluh
lima di sana!" (Kej 18:24-28).



Di dalam ayat tersebut kita dapat melihat bahwa oleh karena Lot,
Abraham berdoa syafaat untuk semua orang dalam kota itu. Sebagai hamba Tuhan
yang diberkati, kemanapun Abraham pergi maka daerah itu diberkati dan orang di
sekelilingnya juga mendapat berkat. Ini adalah dalah satu prinsip berkat.
Prinsip itu diterapkan oleh Yusuf. Saya berharap prinsip ini juga terjadi
karena pendoa syafaat yang berdoa, sehingga tempat yang mereka kunjungi dan
doakan serta orang yang bersama dengan mereka diberkati dan semuanya berjalan
dengan baik.

Suatu saat walaupun pendoa syafaat tidak mendapat keuntungan dari
hal tersebut, namun karena berguna untuk komunitas dan kerajaan Allah, maka dia
harus berdoa. Saat itulah akan kita sadari bahwa Tuhan menumbuhkan iman kita
hingga tingkat tertentu. Kita mampu berdoa dengan hati yang melingkupi seluruh
dunia pada saat kita terus menerus berdoa seperti itu. Kita tahu hati manusia
sangat penuh dengan keinginan. Meskipun kekayaan, kehormatan dan kenikmatan
dimasukkan semuanya di dalam hati, tetapi tidak pernah merasa puas. Ini
adalah sifat manusia. Bahkan untuk mendapatkan lebih banyak, hati manusia
memberontak. Tetapi saya mengucap syukur karena hati kita yang besar sudah
dipenuhi oleh Tuhan pencipta dunia ini. Pada saat Tuhan masuk ke dalam hati,
maka bagian kosong hati kita dapat diisi. Selain memiliki hati yang melingkupi
dunia, Kitadapat berdoa juga supaya Tuhan yang memiliki dan mengawasi
berlangsungnya sejarah dunia. Saya berharap para pendoa syafaat akan berdoa
seperti poin-poin tersebut. Sehingga oleh iman kita menerima hati Tuhan,
berdoa dalam jamahan Roh Kudus, membaca Alkitab dan mendengarkan suara Tuhan.
Sebagaimana Abraham yang berdoa sesuai kehendak Tuhan dengan iman dan kemurnian
hati untuk satu bangsa di hadapan Tuhan.



Berdoa dengan Kesabaran dan Ketekunan

Kelima, berdoa dengan kesabaran dan ketekunan. Abraham berdoa
dengan kesabaran dan ketekunan untuk keselamatan keponakannya, yaitu Lot dan
kota Sodom. Di sepanjang perjalanan doa saya pernah melihat banyak orang yang
menyerah dan berhenti. Pada saat Tuhan sudah mendengar doa kita dan menanggapi,
kita sangat mudah berhenti mendoakan hal itu. Begitu bodohnya jika melakukan
hal itu. Kesabaran diperlukan seorang pendoa syafaat untuk dapat dengan senang
hati menunggu sampai mendapat tanggapan Tuhan. Nikmatilah berdoa dengan
kesabaran dan ketekunan sampai menerima tanggapan Tuhan dan dapat merasakan
kebahagiaan yang dulu tidak pernah dibayangkan.

Sebagai kesimpulan, kita akan mengelompokkannya dalam beberapa
bagian. Melalui doa Abraham kita akan menyelidiki sikap seorang pendoa
syafaat, antara lain:



Pertama, pendoa syafaat adalah orang yang menolong orang lain,
sehingga orang tersebut yang sudah jauh dari Tuhan menjadi orang yang mengenal
Tuhan, lalu mau mendatangi Tuhan dan akhirnya mereka mendekat lagi kepada Tuhan.



Kedua, pendoa syafaat harus berdoa untuk orang yang belum mempunyai
keselamatan supaya memperoleh keselamatan. Kalau ada orang yang sakit dan
penyakitnya mengganggu hubungannya dengan Tuhan, maka dia harus berdoa kepada
Tuhan supaya orang itu sembuh.



Ketiga, jika roh jahat mengikat seseorang, maka pendoa syafaat
harus mengikat roh jahat dan mengusirnya. Tuhan akan memberitahu pendoa
syafaat jika seseorang karena luka hati tidak menerima anugerah Tuhan dengan
sepenuhnya. Oleh karena itu pendoa syafaat dapat membimbing mereka di hadapan
Tuhan karena Tuhan siap mencurahkan kuasa yang dapat menyembuhkannya.

Saya berdoa supaya kehendak Tuhan yang mengagumkan dapat digenapi.



Yesus Pengantara yang Kekal untuk Umat Manusia

Kita dapat mempelajari di dalam Alkitab Perjanjian Lama. Saat kita
berdoa untuk orang lain, maka gerakan Kebangunan Rohani pasti digenapi.
Contohnya, saat Abraham bertindak sebagai pngantara dan berdoa untuk
keponakannya Lot, maka gerakan kebangkitan dimulai dan keselamatan diterima.
Pada saat Musa bertindak sebagai pngantara dan berdoa untuk orang Israel yang
berdosa di hadapan Tuhan, gerakan Kebangunan Rohani juga terjadi dan
keselamatanpun diterima.



Sedangkan di dalam Alkitab Perjanjian Baru, pada saat para jemaat
berdoa dengan kesungguhan untuk Petrus yang dimasukkan ke dalam penjara, maka
malaikat menyelamatkan dia. Paulus dan Silas didukung dari belakang oleh
pendoa syafaat yang terus menerus berdoa. Di dalam suratnya rasul Paulus
meminta jemaat terus menerus berdoa untuk dirinya. Walaupun kuasa dari Tuhan
sudah banyak diterima Paulus dengan berdoa sendirian tetapi segalanya tidak
dapat digenapi. Paulus dapat menggenapi pekerjaan kebangkitan Tuhan yang
dahsyat melalui pendoa syafaat yang terus menerus berdoa di sekelilingnya tanpa
dilihat. Seperti itulah pelayanan doa syafaat, bisa menghidupkan jiwa yang
sedang mengalami kematian, bisa melakukan salah satu bagian peranan yang
penting untuk pekerjaan Tuhan. Jika demikian siapa yang paling banyak
melakukan pelayanan doa syafaat?

"Karena itu Ia sanggup juga menyelamatkan dengan sempurna semua
orang yang oleh Dia datang kepada Allah. Sebab Ia hidup senantiasa untuk
menjadi pengantara mereka" (Ibr 7:25).



Kita dapat mengetahui melalui ayat tadi bahwa Yesus Kristus
senantiasa berdoa untuk kita di sebelah kanan tahta Allah. Itu berarti
pengantara kekal kita adalah Yesus Kristus. Sementara tinggal di bumi ini
menjadi seperti Yesus Kristus adalah kerinduan kita. Lalu bagaimana caranya?
Yaitu dengan menaati dan meneladani pelayanan yang dilakukan oleh Yesus
Kristus. Langkah pertama menjadi pengantara seperti Yesus Kristus dan langkah
berikutnya dengan meneladani pelayanan Yesus Kristus.

Yesus meruntuhkan tembok dosa yang menghalangi hubungan manusia
dengan Tuhan, sehingga menghancurkan manusia. Saat Yesus berada di dunia, Dia
juga menjadi pendoa syafaat supaya orang yang percaya kepada Yesus dapat masuk
sorga. Selain itu, Tuhan Yesus mengaruniakan Roh Kudus kepada orang yang
percaya setelah Tuhan mati dan dibangkitkan. Siapapun yang percaya, dapat
menerima Roh Kudus sebagai anugerah.



Roh Kudus Pendoa Syafaat untuk Kita

Muncul pertanyaan dalam hati kita, siapakah saksi yang dapar
membuktikan bahwa Yesus mendoakan kita? Roh Kudus adalah saksi itu. Dia
memberikan kesaksian di dalam hati bahwa Tuhan Yesus adalah Kristus, dan
sungguh-sungguh adalah pendoa syafaat kita. Selain sebagai saksi, Roh Kudus
juga berdoa untuk kita di dalam hati.

"Demikian juga Roh membantu kita dalam kelemahan kita; sebab kita
tidak tahu, bagaimana sebenarnya harus berdoa; tetapi Roh sendiri berdoa untuk
kita kepada Allah dengan keluhan-keluhan yang tidak terucapkan. Dan Allah yang
menyelidiki hati nurani, mengetahui maksud Roh itu, yaitu bahwa Ia, sesuai
dengan kehendak Allah, berdoa untuk orang-orang kudus." (Roma 8:26-27)



Firman Tuhan tadi memberi kesaksian bahwa Roh Kudus juga berdoa
untuk kita. Bagaimana kita dapat mengetahui saat hal itu terjadi? Yaitu pada
saat hati kita disegarkan dengan membaca firman Tuhan atau ada kebebasan di
dalam hati saat kita memuji Tuhan. Contoh, saya pernah melihat seseorang yang
kerasukan setan disembuhkan pada saat memuji Tuhan. Kita juga pernah menangis
saat berdoa, memuji atau mendengar firman Tuhan, walaupun tidak ada alasannya.
Atau apakah anda pernah mengalami damai sejahtera yang mengalir di dalam hati?
Itulah yang terjadi saat Roh Kudus mendoakan kita, dan kita juga tidak
menyadari bahwa kita ikut melakukan pekerjaan Roh Kudus, di dalam hati kita.
Kalau kehidpan kita tidak mengecewakan Roh Kudus dan tinggal dalam kehendakNya
yang penuh dengan sukacita, maka Roh Kudus akan menghilangkan keraguan di dalam
hati kita. Dia akan mendorong kita untuk dapat berdoa serta menolong untuk
menjalin hubungan lebih mendalam dengan Tuhan, sehingga memperoleh pokok doa
yang diinginkan Tuhan.



Pada saat menjalin hubungan lebih mendalam dengan Roh Kudus, kita
dapat mendoakan apa yang menjadi kehendak Tuhan dan apa yang harus kita lakukan
di dunia ini terhadap bangsa dan generasi agar lebih maju. Saya berharap, kita
dapar berdoa kepada Tuhan untuk memulihkan keadaan rohani bangsa ini dan semua
pekerjaanNya sekali lagi. Saya berangan-angan menjadi pendoa syafaat yang
menginjili dunia dan pada saat itu kita akan mengalami karya Tuhan yang luar
biasa, sebab Tuhan sendiri yang melakukan pekerjaanNya itu.

( Seri Doa Syafaat ini berlanjut terus )

Sedikit tentang Rev. Paul Y. Chun : Beliau adalah senior Pastor di Gereja
Hasamag Korea, orang Korea pertama yang didispilinkan dalam doa syafaat di
Global Harvest Ministries, sebuah lembaga yang menjadi pusat doa sedunia (
World Prayer Center ) yang berdoa untuk suku - suku terasing window 10 - 40.
Elizabeth Albert ketua Organisasi Intercessors International
mengimplementasikan segala hal dan seluk beluk doa syafaat kepada Rev Paul Y.
Chun dan kini Rev Paul Y. Chun diangkat menjadi ketua Intercessors
International untuk wilayah Benua Asia. Kunjungi website : www.lovemdi.org

Di Korea beliau mendirikan Ministry Development International.Berdomisili di
Amerika, memiliki banyak lembaga pelayanan international. Di Indonesia sudah
terbit buku " Doa Syafaat yang Hidup " Edisi Bahasa Indonesia. Terjemahan Bapak
/ Ibu Barnabas Lee, diterbitkan oleh MDI, pada bulan Juli 2004 Anda bisa beli
di toko2 buku Kristen.

Prepared by:

Bambang Wiyono

HP 0812 327 3886

e-mail: [EMAIL PROTECTED]

IP 206.190.39.113

http://groups.yahoo.com/group/fullgospel_indonesia/



[Non-text portions of this message have been removed]



-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Mailing List Jesus-Net Ministry Indonesia - JNM -
Daftar : [EMAIL PROTECTED]
Keluar : [EMAIL PROTECTED]
Posting: jesus-net@yahoogroups.com

Bantuan Moderator : [EMAIL PROTECTED]
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/jesus-net/

Tuesday, September 7, 2010

knoppix stuff

CHEATCODES AND HINTS FOR KNOPPIX V6.2.0
==============================================================================
(last update: 11.11.2009)

These options (can be combined) work from the ISOLINUX bootprompt:

### General ###
adriane Start blind-friendly, talking desktop
debug Debug boot process step-by-step
expert Interactive setup for experts
knoppix (Default) Knoppix startup
knoppix 2 Runlevel 2, Textmode only

### Language/Country ###
knoppix lang=ch|cn|de|da|es|fr|it specify language/keyboard
knoppix lang=nl|pl|ru|sk|tr|tw|us specify language/keyboard
knoppix keyboard=us xkeyboard=us Use different keyboard (text/X)
knoppix utc Use Universal Time
knoppix tz=Europe/Berlin Use this timezone for TZ
(default: tz=localtime)

### Hardware/Workarounds ###
knoppix ide1=reset Try this if knoppix can't find the
CD/DVD drive
knoppix no{apic,lapic,acpi,apm} Skip parts of HW-detection (1)
knoppix no{hwsetup,udev,dhcp,fstab} Skip parts of HW-detection (2)
knoppix no{pcmcia,sound,swap} Skip parts of HW-detection (3)
knoppix nousb Skip parts of HW-detection (4)
knoppix nolapic Disable local APIC (differs from noapic)
knoppix noideraid Disable IDE-Raiddisk detection
knoppix pnpbios=off No PnP Bios initialization
knoppix acpi=off Disable ACPI Bios completely
knoppix acpi=noirq Disable ACPI IRC routing only
knoppix acpi=force FORCE ACPI Bios initialization
knoppix noacpid Do not start ACPI even daemon
failsafe Boot with (almost) no HW-detection
knoppix pci=irqmask=0x0e98 Try this, if PS/2 mouse doesn't work *)
knoppix pci=bios Workaround for bad PCI controllers
knoppix ide2=0x180 nopcmcia Boot from PCMCIA-CD-Rom (some notebooks)
knoppix mem=512M Specify Memory size in MByte
knoppix wheelmouse Enable IMPS/2 protocol for wheelmice
knoppix nowheelmouse Force plain PS/2 protocol for PS/2-mouse

### Desktop ###
knoppix desktop=kde|gnome|icewm Use specified WM instead of LXDE (1)
knoppix desktop=fluxbox|openbox Use specified WM instead of LXDE (2)
knoppix desktop=larswm|evilwm|twm Use specified WM instead of LXDE (3)
knoppix no3d Don't use compiz 3d fuctions

### Graphics ###
knoppix screen=1280x1024 Use specified Screen resolution for X
knoppix hsync=95 Use 95 kHz horizontal X refresh rate
knoppix vsync=60 Use 60 Hz vertical refresh rate for X
knoppix xmodule=ati|fbdev|intel|mga Use specified Xorg-Module (1)
knoppix xmodule=nv|radeon|savage|s3 Use specified Xorg-Module (2)
knoppix xmodule=vesa|svga|vmware Use specified Xorg-Module (3)
knoppix norandr Disable Xorg RandR feature (may be
useful if wrong resolution was detected)
knoppix noddc Don't query monitor for resoution
knoppix no3d|nocomposite Don't use Xorg Composite extension
knoppix vga=normal No-framebuffer mode, but X
fb1280x1024 Use fixed framebuffer graphics (1)
fb1024x768 Use fixed framebuffer graphics (2)
fb800x600 Use fixed framebuffer graphics (3)

### Configuration / Persistent image ###
knoppix nonetworkmanager Don't start network manager
knoppix home=/dev/sda1/knoppix.img Mount loopback file for overlay
knoppix toram Copy to RAM and run from there
knoppix tohd=/dev/sda1 Copy to Harddisk and run from there
knoppix fromhd=/dev/sda1 Boot from previously copied CD-Image
knoppix bootfrom=/dev/sda1/KNX.iso Access image, boot from ISO-Image. ***)
knoppix knoppix_dir=KNOPPIX Directory to search for on the CD.
knoppix knoppix_name=KNOPPIX Cloop-File to search for on the CD.
knoppix noswap Don't use existing swap partitions
knoppix forensic Don't use swap and mount read-only
knoppix secure Disable root access
knoppix noimage Do NOT use persistent image

### Knoppix Terminalserver/Client ###
knoppix nfsdir=hostip:path Use nfsdir as /mnt-system for TS client
knoppix hostname=name Set TS client hostname
knoppix hostname=auto-mac Set TS client hostname from MAC address
knoppix hostname=auto-clock Set TS client hostname from clock

### Various ###
knoppix noeject Do NOT eject CD after halt
knoppix noprompt Do NOT prompt to remove the CD
knoppix testcd|testdvd Check CD or DVD for defects
knoppix splash Use splash.ppm in initrd as boot pic
knoppix trace create an open() trace in /open.trace

Hint: Using the default DE-bootimage, SYSLINUX boots with german keyboard
layout. The '=' letter is located at Shift-0 on this keyboard (just in
case you want to change keyboard and language with lang=us).

*) Try "knoppix pci=irqmask=0x0e98" if (you have a notebook and) your
PS/2 mouse doesn't work. (Possibly caused by a BIOS-flaw on your board,
BIOS updates can help.)

If your KNOPPIX CD produces strange noises during boot, or you see
frequent errors like "cloop: read error", or programs on your KDE
desktop keep crashing randomly, then your CD image is probably defective
or incomplete, or your CD-burner created a defective CD due to wrong
writing speed or bad media. This is the most common error reported.
Please boot with "knoppix testcd" to check if the CD is OK.

In case of a failing hardware autodetection, try booting with any of
the "no-" options as shown in the table above, like in
knoppix noagp noaudio noapm noapic nolapic acpi=off pci=bios
pnpbios=off nodma nopcmcia noscsi nousb ...
to skip some critical parts of the autodetection system.

The "noswap" and/or "forensic" boot option is useful for a forensic
analysis without touching existing swap partitions.

Some Boards apparently don't pass the proper memory size to the
linux-kernel. It may cause the message "Panic: cannot mount root file
system" and the system hangs. Use "knoppix mem=512M" to solve that
problem if your system has 512MByte memory for example (caution:
you MUST use a capital "M" here).

---

If you need additional modules for starting controllers needed at boot
time, just copy the corresponding *.ko files from /lib/modules/* over to
/modules in the initial ramdisk (remaster needed).

If you place an update*.zip or update*tar.gz file on the medium holding
the KNOPPIX data, it will be unpacked onto the overlayed filesystem
before starting "init", thus allowing quick reconfiguration of the
system.

The file "knoppix.sh", if residing in the main KNOPPIX directory, will
be execuded after autoconfiguration and before starting the graphical
desktop. It can be used in order to start additional services.

If you wish to remaster the CD, please don't forget to specify
-no-emul-boot -boot-load-size 4 -boot-info-table \
-b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat
as option to mkisofs. Otherwise your CD or DVD won't be bootable. The
directory KNOPPIX, containig the compressed filesystem file "KNOPPIX",
must be located in the top level directory of the CD.

Caution: X-Screensaver: Don't start xlock or any screensaver that
requires a password. There are no default passwords on KNOPPIX,
i.e. all accounts are LOCKED unless you explicitly set a password.
See also README_Security.txt about this issue.
If you accidentially hit the screensaver button in KDE,
switch to one of the textconsoles by Control-Alt-F1 and kill
the screensaver (or just set a password for the knoppix user).

If you would like to edit your X-Server configuration manually
(config file /etc/X11/xorg.conf), use "knoppix 2" to boot
into runlevel 2 (textmode only) and, after changing the X
configuration, start the X environment with "init 5". Note that
you can always leave the graphical environment with "init 2", and
restart it later with "init 5".

Sunday, September 5, 2010

wordpress stuff

Powered by WordPress & the Atahualpa Theme by BytesForAll. Discuss on our WP Forum
http://s2u.if.its.ac.id/

Saturday, September 4, 2010

subversion [svn] stuff

o check out the latest WP codebase, try this checkout command:svn co http://svn.automattic.com/wordpress/trunk/

This will “check out” all of the files you’ll need. To update your working copy later, go into the directory and run this command:

svn update

That will update all your file to the latest. If you’ve made a change you want to submit back to the core this will show you what files you’ve changed:

svn status

And this will output a line-by-line description of all the changes in a format that makes it easy for us to incorporate:

svn diff

You can output this to a file by using redirection:

svn diff > my-patch.txt


## file:///.subversion/servers
### This file specifies server-specific protocol parameters,
### including HTTP proxy information, and HTTP timeout settings.
###
### The currently defined server options are:
### http-proxy-host Proxy host for HTTP connection
### http-proxy-port Port number of proxy host service
### http-proxy-username Username for auth to proxy service
### http-proxy-password Password for auth to proxy service
### http-proxy-exceptions List of sites that do not use proxy
### http-timeout Timeout for HTTP requests in seconds
### http-compression Whether to compress HTTP requests
### neon-debug-mask Debug mask for Neon HTTP library
### ssl-authority-files List of files, each of a trusted CAs
### ssl-trust-default-ca Trust the system 'default' CAs
### ssl-client-cert-file PKCS#12 format client certificate file
### ssl-client-cert-password Client Key password, if needed.
###
### HTTP timeouts, if given, are specified in seconds. A timeout
### of 0, i.e. zero, causes a builtin default to be used.
###
### The commented-out examples below are intended only to
### demonstrate how to use this file; any resemblance to actual
### servers, living or dead, is entirely coincidental.

### In this section, the URL of the repository you're trying to
### access is matched against the patterns on the right. If a
### match is found, the server info is from the section with the
### corresponding name.

#[groups]
# group1 = *.collab.net
# othergroup = repository.blarggitywhoomph.com
# thirdgroup = *.example.com

### Information for the first group:
# [group1]
# http-proxy-host = proxy1.some-domain-name.com
# http-proxy-port = 80
# http-proxy-username = blah
# http-proxy-password = doubleblah
# http-timeout = 60
# neon-debug-mask = 130

### Information for the second group:
# [othergroup]
# http-proxy-host = proxy2.some-domain-name.com
# http-proxy-port = 9000
# No username and password, so use the defaults below.

### You can set default parameters in the 'global' section.
### These parameters apply if no corresponding parameter is set in
### a specifically matched group as shown above. Thus, if you go
### through the same proxy server to reach every site on the
### Internet, you probably just want to put that server's
### information in the 'global' section and not bother with
### 'groups' or any other sections.
###
### If you go through a proxy for all but a few sites, you can
### list those exceptions under 'http-proxy-exceptions'. This only
### overrides defaults, not explicitly matched server names.
###
### 'ssl-authority-files' is a semicolon-delimited list of files,
### each pointing to a PEM-encoded Certificate Authority (CA)
### SSL certificate. See details above for overriding security
### due to SSL.
[global]
http-proxy-host = 202.46.129.10
http-proxy-port = 8080
http-proxy-username = princeofun@chem.its.ac.id
http-proxy-password = jewkco


# http-proxy-exceptions = *.exception.com, www.internal-site.org
# http-proxy-host = defaultproxy.whatever.com
# http-proxy-port = 7000
# http-proxy-username = defaultusername
# http-proxy-password = defaultpassword
# http-compression = no
# No http-timeout, so just use the builtin default.
# No neon-debug-mask, so neon debugging is disabled.
# ssl-authority-files = /path/to/CAcert.pem;/path/to/CAcert2.pem

radio streaming stuff

## download the file
auser@abox:~$ tsocks wget http://radio.mitra.net.id:8110/ --limit-rate=8k -O try.mp3 | mplayer -cache 8192 try.mp3
--2010-08-22 22:42:56-- http://radio.mitra.net.id:8110/
Resolving radio.mitra.net.id... 202.43.248.148
Connecting to radio.mitra.net.id|202.43.248.148|:8110... MPlayer SVN-r1.0~rc3+svn20090426-4.4.3 (C) 2000-2009 MPlayer Team
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote control.

Playing try.mp3.
Cache fill: 0.00% (0 bytes)


Exiting... (End of file)
connected.
HTTP request sent, awaiting response... 200 No headers, assuming HTTP/0.9
Length: unspecified
Saving to: `try.mp3'

## watching the size
auser@abox:~$ watch --differences -n1 ls -l try.mp3

## << open new terminal >>
auser@abox:~$ mplayer try.mp3
MPlayer SVN-r1.0~rc3+svn20090426-4.4.3 (C) 2000-2009 MPlayer Team
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote control.

Playing try.mp3.
Audio only file format detected.
==========================================================================
Opening audio decoder: [mp3lib] MPEG layer-2, layer-3
mpg123: Can't rewind stream by 861 bits!
AUDIO: 22050 Hz, 2 ch, s16le, 32.0 kbit/4.54% (ratio: 4000->88200)
Selected audio codec: [mp3] afm: mp3lib (mp3lib MPEG layer-2, layer-3)
==========================================================================
AO: [pulse] 22050Hz 2ch s16le (2 bytes per sample)
Video: no video

indowebster stuff

http://indowebster.net/

http://www5.indowebster.com/b23f26b42338d1c777425807476f029e.avi
http://www5.indowebster.com/50aac2263c4f3ce8bc8b46485ae98629.avi
http://www5.indowebster.com/d0e93c9e51c979b80795dc831a4f350e.rar
http://www5.indowebster.com/5100999416794099fb6ebf49464b6190.rar

globus stuff

## Building && Installing GT4 package
$ ./configure --prefix=$GLOBUS_LOCATION && make | tee make.log && make install | tee make_install.log
(2 hours estimated)

## Installation of CA packages
@ earth
globus@earth:~/gt4.2.1-all-source-installer$ /usr/local/globus-4.2.1/setup/globus/setup-simple-ca

@ venus
## Setting up security in each grid node
$ scp earth:/home/globus/.globus/simpleCA/globus_simple* ~ && /usr/local/gt4.2.1/sbin/gpt-build globus_simple_ca_bb771705_setup-0.20.tar.gz gcc32dbg && /usr/local/gt4.2.1/sbin/gpt-postinstall
(as a root user)
# /usr/local/gt4.2.1/setup/globus_simple_ca_bb771705_setup/setup-gsi -default

## obtain n sign a host certificate
# grid-cert-request -host `hostname -f` && scp /etc/grid-security/hostcert_request.pem globus@earth:~
globus@earth:~$ grid-ca-sign -in hostcert_request.pem -out hostcert.pem && scp hostcert.pem venus:~
root@venus:~# cp hostcert.pem /etc/grid-security -v

## obtain n sign a user certificate
root@venus:~# adduser auser1
root@venus:~# grid-cert-request && scp /home/auser1/.globus/usercert_request.pem globus@earth:~
globus@earth:~$ grid-ca-sign -in usercert_request.pem -out usercert.pem && scp usercert.pem auser1@venus:/home/auser1/.globus
auser1@venus:~$ grid-proxy-init -debug -verify
[...you can copy the user certificate...]
auser1@venus:~/.globus$ scp * mercury:~/.globus

## obtain n sign a user certificate
auser1@venus:~$ mkdir .globus
[after DO this "auser1@venus:~/.globus$ scp * mercury:~/.globus"]
auser1@venus:~$ grid-proxy-init -debug -verify

## Setting mapping information between a grid user and a local user
auser1@venus:~/.globus$ grid-cert-info -subject -f /home/auser1/.globus/usercert.pem

/O=Grid/OU=GlobusTest/OU=simpleCA-earth.gcl.if.its.ac.id/OU=gcl.if.its.ac.id/CN=chika tambun

root@venus:~# grid-cert-info -subject -f /home/auser1/.globus/usercert.pem
/O=Grid/OU=GlobusTest/OU=simpleCA-earth.gcl.if.its.ac.id/OU=gcl.if.its.ac.id/CN=chika tambun
root@venus:~# grid-mapfile-add-entry -dn "`grid-cert-info -subject -f /home/auser1/.globus/usercert.pem`" -ln auser1
Modifying /etc/grid-security/grid-mapfile ...
/etc/grid-security/grid-mapfile does not exist... Attempting to create /etc/grid-security/grid-mapfile
New entry:
"/O=Grid/OU=GlobusTest/OU=simpleCA-earth.gcl.if.its.ac.id/OU=gcl.if.its.ac.id/CN=chika tambun" auser1
(1) entry added
root@venus:~/gt4.2.1-all-source-installer# cat /etc/grid-security/grid-mapfile
root@venus:~/gt4.2.1-all-source-installer# grid-mapfile-check-consistency
Checking /etc/grid-security/grid-mapfile grid mapfile
Verifying grid mapfile existence...OK
Checking for duplicate entries...OK
Checking for valid user names...OK

## Configuration of Java WS Core
root@venus:/etc/grid-security# cp hostcert.pem containercert.pem && cp hostkey.pem containerkey.pem && chown globus:globus container*
globus@venus:~ $ globus-start-container
[...unrelated output...]
[67]: https://10.151.35.201:8443/wsrf/services/mds/test/usefulrp/IndexService
[68]: https://10.151.35.201:8443/wsrf/services/mds/test/usefulrp/IndexServiceEntry
2010-09-04T12:27:58.080+07:00 INFO impl.DefaultIndexService [ServiceThread-58,performDefaultRegistrations:261] guid=2d523400-b7e5-11df-ad3f-89afa9801644 event=org.globus.mds.index.performDefaultRegistrations.end status=0

## Executing Counter sample program


## GridFTP configuration
root@mercury:/etc/grid-security# cat /etc/services
# Local services
gsiftp 2811/tcp

root@mercury:/etc/grid-security# cat /etc/xinetd.d/gsiftp
service gsiftp
{
instances = 100
socket_type = stream
wait = no
user = root
env += GLOBUS_LOCATION=/usr/local/gt4.2.1
env += LD_LIBRARY_PATH=/usr/local/gt4.2.1/lib
server = /usr/local/gt4.2.1/sbin/globus-gridftp-server
server_args = -i
log_on_success += DURATION
disable = no
}

auser1@mercury:~$ globus-url-copy gsiftp://mercury.gcl.if.its.ac.id/tmp/message gsiftp://venus.gcl.if.its.ac.id/tmp/message.1

error: globus_ftp_client: the server responded with an error
530 530-Login incorrect. : globus_gss_assist: Gridmap lookup failure: Could not map /O=Grid/OU=GlobusTest/OU=simpleCA-earth.gcl.if.its.ac.id/OU=gcl.if.its.ac.id/CN=chika tambun
530-
530 End.
Solution: add entry mercury gridmapfile to venus gridmapfile

root@mercury:~# vi /etc/sudoers
# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#

Defaults env_reset

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root ALL=(ALL) ALL

# Allow members of group sudo to execute any command after they have
# provided their password
# (Note that later entries override this, so you might need to move
# it further down)
%sudo ALL=(ALL) ALL
#
#includedir /etc/sudoers.d

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

# Globus GRAM entries
Runas_Alias GLOBUSUSERS = ALL, !root;
globus ALL=(GLOBUSUSERS) NOPASSWD: /usr/local/gt4.2.1/libexec/globus-gridmap-and-execute -g /etc/grid-security/grid-mapfile /usr/local/gt4.2.1/libexec/globus-job-manager-script.pl *

globus ALL=(GLOBUSUSERS) NOPASSWD: /usr/local/gt4.2.1/libexec/globus-gridmap-and-execute -g /etc/grid-security/grid-mapfile /usr/local/gt4.2.1/libexec/globus-gram-local-proxy-tool *

## WS GRAM Configuration
globus@mercury:~$ globusrun-ws -submit -c /bin/touch /tmp/createdFile
Submitting job...Failed.
A proxy is required to submit a job, but no valid proxy credential was found.
globus@mercury:~$ su auser1
Password:

auser1@mercury:/home/globus$ globusrun-ws -submit -c /bin/touch /tmp/createdFile
Submitting job...Done.
Job ID: uuid:f6d60a66-b7f6-11df-95b7-0018fe645851
Termination time: 09/04/3010 07:35 GMT
Current job state: Active
Current job state: CleanUp
Current job state: Done
Destroying job...Done.

auser1@mercury:~$ cat echo_job.xml


/bin/echo
This file is written by WS GRAM job with job definition file.
${GLOBUS_USER_HOME}/stdout
${GLOBUS_USER_HOME}/stderr

auser1@venus:~$ globusrun-ws -submit -f echo_job.xml
Submitting job...Done.
Job ID: uuid:c686299e-b7f7-11df-a3be-0018fe645a69
Termination time: 09/04/3010 07:41 GMT
Current job state: Active
Current job state: CleanUp
Current job state: Done
Destroying job...Done.

The Monitoring and Discovery System (MDS) is a suite of web services to monitor and discover resources and services on Grids.
auser1@mercury:~$ wsrf-query -s https://10.151.35.201:8443/wsrf/services/DefaultIndexService "//*" > MDS4_mercury.txt

<>

@ mercury
## Setting up security in each grid node
$ scp earth:/home/globus/.globus/simpleCA/globus_simple* ~ && /usr/local/gt4.2.1/sbin/gpt-build globus_simple_ca_bb771705_setup-0.20.tar.gz gcc32dbg && /usr/local/gt4.2.1/sbin/gpt-postinstall
(as a root user)
# /usr/local/gt4.2.1/setup/globus_simple_ca_bb771705_setup/setup-gsi -default

## obtain n sign a host certificate
# grid-cert-request -host `hostname -f` && scp /etc/grid-security/hostcert_request.pem globus@earth:~
globus@earth:~$ grid-ca-sign -in hostcert_request.pem -out hostcert.pem && scp hostcert.pem mercury:~
root@mercury:~# cp hostcert.pem /etc/grid-security -v

Friday, September 3, 2010

ip public stuff

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp

#auto eth0
#iface eth0 inet static
# address 10.151.35.201
# netmask 255.255.255.0
# network 10.151.35.0
# broadcast 10.151.35.255
# gateway 10.151.35.1
# dns-* options are implemented by the resolvconf package, if installed
# dns-nameservers 202.46.129.2
#auto eth0
#iface eth0 inet static
# address 202.46.129.91
# netmask 255.255.255.240
# network 202.46.129.0
# gateway 202.46.129.81
# broadcast 202.46.129.255
# dns-* options are implemented by the resolvconf package, if installed
# dns-nameservers 202.46.129.82

screen stuff

@PC.one

$ ssh gcl@10.151.35.203

[bla bla bla bla]

gcl $ screen -S tutor

@PC.two

$ ssh gcl@10.151.35.203

$ screen -ls

[get the name of the screen]

gcl@thickkoezz:~$ screen -ls
There is a screen on:
24928.tutor (11/09/2009 01:07:01 PM) (Attached)
1 Socket in /var/run/screen/S-gcl

$ screen -x 24928.tutor

voila

netstat stuff

netstat -plnt

openbox stuff

apt-get update && apt-get upgrade -y -q --force-yes && apt-get -y -q --force-yes --no-install-recommends --auto-remove install vim htop mc nmap openssh-server links localepurge pcmanfm xorg openbox gmrun gnome-terminal firefox virtualbox-ose filezilla gnome-mplayer proftpd pcmanfm evince unrar unzip slim elinks xorg openbox gmrun gnome-terminal firefox epiphany-browser virtualbox-ose-dkms filezilla gnome-mplayer

mkdir -p ~/.config/openbox/
cp /etc/xdg/openbox/rc.xml ~/.config/openbox/rc.xml
cp /etc/xdg/openbox/menu.xml ~/.config/openbox/menu.xml
echo "exec openbox-session" >> ~/.xinitrc

jewkco@princeofun@chem.its.ac.id
# virtualbox-ose, ubuntu server 10.4, repository ubuntu 10.4
# tabel ini saya dapatkan dari program lsof untuk
memperoleh data frekuensi partisi mana yang sering diakses oleh sistem. Dari sini saya akan menkonfigurasi partisi hard disk yang optimal
# 1st exp
============================
swap (primer)
============================
system : /boot
/etc
/lib
/proc
/sys
/dev
(root+boot)
/ (primer)
/boot
============================
apps : /usr (primer)
/opt
dwight@swuttIr3@https://grid.ui.ac.id
dwight@swuttlr3@https://grid.ui.ac.id
(usr+opt)
/usr (primer)
/opt => /var/opt
/usr/local
============================
storage : /home
/var (primer)
/tmp
/srv
(home+var+tmp+srv)
@akademik.its.ac.id
5106100
monta.if.its.ac.id
yustinus
/home => /var/home
/tmp => /var/tmp
/var (primer)
/srv => /var/srv
============================

disk system : [10GB] system(1GB) + apps(9GB)
disk storage: [10GB] storage(9GB) + swap(1GB)

# 2nd exp
============================
swap (primer)
============================
system : /boot
/etc
/lib
/proc
/sys
/dev
(root+boot)
/ (primer)
/boot
============================
storage :
/storage/usr
/storage/var
/storage/home
/storage/opt
/storage/srv
/storage/tmp
============================

disk system : [10GB] system(1GB) + apps(9GB)
disk storage: [10GB] storage(9GB) + swap(1GB)
# labeling
$ blkid
/dev/sda1: LABEL="system" UUID="f93647dc-6809-4438-97fc-6cf10f2bd2c5" TYPE="ext3"
/dev/sda2: LABEL="apps" UUID="0b128b71-5651-455f-8cd3-1d299c603f97" TYPE="ext3"
/dev/sdb1: UUID="a4e38748-372d-461a-aec6-7b2204970916" TYPE="swap"
/dev/sdb2: LABEL="storage" UUID="fef05793-165f-48b6-b720-df6f85d147f1" TYPE="ext3"
$ e2label /dev/sda1 system
# conf /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
#
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=f93647dc-6809-4438-97fc-6cf10f2bd2c5 / ext3 errors=remount-ro 0 0
# /usr was on /dev/sda2 during installation
UUID=0b128b71-5651-455f-8cd3-1d299c603f97 /usr ext3 defaults 0 0
# /var was on /dev/sdb2 during installation
UUID=fef05793-165f-48b6-b720-df6f85d147f1 /var ext3 defaults 0 0
/var/tmp /tmp none bind 0 0
/var/home /home none bind 0 0
/var/opt /opt none bind 0 0
/var/srv /srv none bind 0 0
# swap was on /dev/sdb1 during installation
UUID=a4e38748-372d-461a-aec6-7b2204970916 none swap sw 0 0
## cocokkan mounting point sesuai dengan default

## cp -rfvp /usr /opt /tmp /home/ /srv /var /storage
### booting dari livecd then mounting the / partition
## rm -rfv /usr/* /opt/* /tmp/* /home/* /srv/* /var/*
## exp 2nd failed

# rm -rfv /opt/* /tmp/* /srv/* /home/*
# cp -rfvp /opt /tmp /home/ /srv /var
primary
/ 2 G
/usr 12 G
logical
swap 2 G
/var 36 G
/usr/local /var/usr/local
/home /var/home
/tmp /var/tmp

# /etc/network/interfaces
# init 6
# /etc/apt/sources.list
deb http://192.168.56.1/lucid lucid main restricted universe multiverse
deb http://192.168.56.1/lucid lucid-updates main restricted universe multiverse
deb http://192.168.56.1/lucid lucid-security main restricted universe multiverse
deb http://192.168.56.1/lucid lucid-backports main restricted universe multiverse
deb http://192.168.56.1/lucid lucid-proposed main restricted universe multiverse

deb file:///~/mount.1/lucid lucid lucid main restricted universe multiverse
# apt-get update
# apt-get -y -q --force-yes --no-install-recommends --auto-remove install vim htop mc nmap openssh-server proftpd links localepurge pcmanfm xorg openbox gmrun gnome-terminal mplayer
### server installation finished
## bekukan sistem, gunakan saat diperlukan

##keanehan terjadi dalam ukuran vdi... aneh sekali... antara jeos-8.04.3 dengan ubuntu-10.4-server
#cli only
apt-get -y -q --force-yes --no-install-recommends --auto-remove install vim htop mc nmap openssh-server proftpd links localepurge pcmanfm xorg openbox gmrun gnome-terminal firefox-bin virtualbox-ose filezilla gnome-mplayer
#x-windows openbox

apt-get -y -q --force-yes --no-install-recommends --auto-remove install vim htop mc nmap openssh-server proftpd links localepurge pcmanfm xorg openbox gmrun gnome-terminal firefox-bin virtualbox-ose filezilla gnome-mplayer

apt-get install pcmanfm xorg openbox gmrun hsetroot gnome-terminal firefox virtualbox-ose filezilla gnome-mplayer && apt-get install --reinstall virtualbox-ose-dkms

mkdir -p ~/.config/openbox/
cp /etc/xdg/openbox/rc.xml ~/.config/openbox/rc.xml
cp /etc/xdg/openbox/menu.xml ~/.config/openbox/menu.xml
echo "exec openbox-session" >> ~/.xinitrc

echo " hsetroot -full ~/meditate_fel.png &" >> ~/.config/openbox/autostart.sh
echo "" >> /home/chika/.config/openbox/rc.xml
echo "" >> /home/chika/.config/openbox/rc.xml
echo "gmrun" >> /home/chika/.config/openbox/rc.xml
echo "
" >> /home/chika/.config/openbox/rc.xml





echo "" >> /home/chika/.config/openbox/rc.xml
echo "" >> /home/chika/.config/openbox/rc.xml
echo "gmrun" >> /home/chika/.config/openbox/rc.xml
echo "
" >> /home/chika/.config/openbox/rc.xml
echo "" >> /home/chika/.config/openbox/rc.xml
$ startx
$ vi ~/.config/openbox/autostart.sh
## Run the system-wide support stuff
#. $GLOBALAUTOSTART

## Programs to launch at startup
hsetroot -full ~/meditate_fel.png &
#xcompmgr -c -t-5 -l-5 -r4.2 -o.55 &

## SCIM support (for typing non-english characters)
#export LC_CTYPE=ja_JP.utf8
#export XMODIFIERS=@im=SCIM
#export GTK_IM_MODULE=scim
#export QT_IM_MODULE=scim
#scim -d &

## Programs that will run after Openbox has started
#(sleep 2 && fbpanel) &

apt-get install obmenu

$ vi /home/chika/.config/openbox/rc.xml
---add_this_line---


gmrun


## trijaya fm
www.nhk.or.jp/indonesian => seeking program

moreSecure.@blog.its.ac.id/chika
gampangX@webmail.cs.its.ac.id
@