Tutorial

Init Script File in Ubuntu

If we have create one execution file, for example  in /usr/local/bin/mirror . Can we put this file as init script file and always run while startup and everytime our linux system will check it ??? Off course we can use cron to make it a routine execution file, but I will use other way.

Here are my experience when I am trying to have an init script :

First chmod 755 /usr/local/bin/mirror :

jafar@dns:$ sudo chmod 755 /usr/local/bin/mirror

jafar@dns:$ sudo vi /etc/init.d/mirror


#! /bin/sh

/usr/local/bin/mirror >/dev/null 2>&1 &


SMTP Error Bermasalah dengan Klien RBL

Salah satu teman saya memberitahukan bahwa dia tidak menerima email dari teman-temannya sejak 2 hari lalu. Dia mengira mungkin ada gangguan di server mail kami.

Jadi saya coba tes dengan menggunakan account gmail dan coba mengirima email dari gmail ke salah satu account email perusahaan. Gmail tidak dapat mengirim email ke alamat yang dituju, seperti ini laporannya :

SMTP Error Problem with RBL Client

One of my friend told me he not received email from his relatives since 2 days ago. He guess maybe there was an error in our mail server.

So, I use my gmail account and send an email to one of my company mail account. Gmail can't send email, here the report :

This is an automatically generated Delivery Status Notification


Delivery to the following recipient failed permanently:


   


Technical details of permanent failure:

PERM_FAILURE: SMTP Error (state 14): 554 Service unavailable; Client host [209.85.132.245] blocked using relays.ordb.org; ordb.org was shut down on December 18, 2006. Please remove from your mailserver.

Mengidentifikasi Foto Editan dengan JPEGsnoop

Tentang JPEGsnoop

JPEGsnoop adalah sebuah aplikasi di Windows yang free yang berguna untuk menguji dan mempelajari secara mendetail bagian dalam dari file JPEG dan MotionJPEG AVI. Dapat digunakan untuk menganalisa sumber dari suatu gambar sehingga dapat dicek keasliannya. Ini memungkinkan karena di tiap foto digital itu mengandung konten yang berisi informasi tersembunyi -- JPEGsnoop dikembangkan untuk mengungkapkan informasi tersembunyi ini secara detail bagi mereka yang ingin mengetahuinya. Anda dapat mendownload JPEGsnoop disini.

Bagaimana cara kerjanya

Buka gambar yang akan dicek oleh JPEGsnoop dan cari ke bawah ke bagian yang bertuliskan, *** Searching Compression Signatures ***. Opsi ini bisa diadakan/ditiadakan di menu Options.

Identifying Edited Photos with JPEGsnoop

About JPEGsnoop

JPEGsnoop is a free Windows application that examines and decodes the inner details of JPEG and MotionJPEG AVI files. It can also be used to analyze the source of an image to test its authenticity. Every digital photo contains a wealth of hidden information -- JPEGsnoop was written to expose these details to those who are curious. You can download JPEGsnoop here.

How It Working

Instalasi Postgresql di Ubuntu

Tentang PostgreSQL

PostgreSQL adalah sebuah object-relational database management system (ORDBMS). Dirilis dibawah lisensi BSD-style sehingga postgresql adalah free software. Seperti halnya program open-source lainnya, PostgreSQL tidak dikontrol oleh satu perusahaan, tapi bertumpu kepada developer dan perusahaan di komunitas global untuk pengembangannya.

Installation di Ubuntu

Sekarang saya akan menginstall paket postgresql. Saya menggunakan ubuntu feisty dan akan mendownload postgresql-8.1. Rilis terakhir dari postgresql adalah postgresql-8.3.

Postgresql Installation in Ubuntu

About PostgreSQL

PostgreSQL is an object-relational database management system (ORDBMS). It is released under a BSD-style license and is thus free software. As with many other open-source programs, PostgreSQL is not controlled by any single company, but relies on a global community of developers and companies to develop it.

Installation in Ubuntu

Now, I am going to install postgresql package. I am using ubuntu feisty and now want to download postgresql-8.1. The latest release of postgresql is postgresql-8.3.


jafar@dns4:/home/jafar# sudo apt-get install postgresql-8.1