Sunday, March 20, 2011

Memahami Kata "AMIN"

Sekedar untuk lebih memahami dalam Bahasa Arab, ada empat perbedaan kata "AMIN" yaitu :
  1. "AMIN" (alif dan mim sama-sama pendek), artinya AMAN, TENTRAM
  2. "AAMIN" (alif panjang & mim pendek), artinya MEMINTA PERLINDUNGAN KEAMANAN
  3. "AMIIN" (alif pendek & mim panjang), artinya JUJUR TERPERCAYA
  4. "AAMIIN" (alif & mim sama-sama panjang), artinya YA TUHAN, KABULKANLAH DOA KAMI

Lalu Bagaimana dengan Pengucapan / Penulisan kata "AMIEN" yang biasa orang sebutkan ?

Sebisa mungkin untuk kata yang satu ini (Amien) Di Hindari Karena Tidak Ada Artinya.
Jadi pengucapan / penulisannya malah tidak akan bermakna apa-apa.


Disarankan mulai sekarang biasakanlah menulis kata "AAMIIN" dengan lafadz yg benar, untuk menghindari salah makna.

Semoga bermanfaat, barakallah fiikum

Sumber : Broadcast BBM dari salah satu anggota keluarga tersayang

Read More

Migrasi Domain dan Ubah Pemakaian Bahasa

I'm back ..
Setelah fakum lebih dari setahun tidak menjenguk blog ini, akhirnya terpancing untuk nge-blog lagi setelah mengalami penyakit amnesia sesaat dadakan , maklum makin hari makin tua

Ada beberapa hal baru yang menyertai aksi comeback saya, yaitu berubahnya nama domain yang dulu menggunakan domain sonic2epix.web.id kini berubah ke dwimw.web.id, migrasi ini didasari setelah memperhatikan nama domain dari beberapa teman yang aktif nge-blog sebagian besar menggunakan nama panggilan mereka sehingga membuat pembaca jadi lebih mengenal siapakah pemilik blog tersebut

Perubahan selanjutnya adalah pada penggunaan bahasa pada blog ini, mulai saat ini akan menggunakan Bahasa Indonesia sebagai bahasa utama, karena selain saya bangga sebagai bangsa Indonesia terlebih lagi adalah domain yang saya adalah domain untuk Website Indonesia (*.web.id)

" Semoga dengan aksi comeback ini akan membuat saya jadi semakin rajin untuk menulis dan berbagi untuk para pembaca aamiin, terima kasih "
Read More

Tuesday, March 9, 2010

How To : Setting MRTG on Ubuntu

The Multi Router Traffic Grapher, or just simply MRTG, is free software for monitoring and measuring the traffic load on network links. It allows the user to see traffic load on a network over time in graphical form.
It was originally developed by Tobias Oetiker and Dave Rand to monitor router traffic, but has developed into a tool that can create graphs and statistics for almost anything.
Follow this step to install MRTG on Ubuntu :
  1. Install Apache2 Web Server, SNMPD, and MRTG
    ~$ sudo apt-get install apache2 snmpd mrtg
  2. Make directory on Apache Web pages reside
    ~$ sudo mkdir /var/www/mrtg
  3. Setting MRTG Configuration
    ~$ sudo nano /etc/mrtg.cfg
    # Global configuration
    
    RunAsDaemon: yes
    EnableIPv6: no
    WorkDir: /var/www/mrtg
    Options[_]: bits,growright
    WriteExpires: Yes
    
    Title[^]: Traffic Analysis for
    
  4. Setting CRON for running every 5 minutes
    ~$ sudo nano /etc/cron.d/mrtg
    0-55/5 * * * * root if [ ! -d /var/lock/mrtg ]; then mkdir /var/lock/mrtg; fi; if [ -x /usr/bin/mrtg ] && [ -r /etc/mrtg.cfg ]; then env LANG=C /usr/bin/mrtg /etc/mrtg.cfg 2>&1 | tee -a /var/log/mrtg/mrtg.log ; fi
  5. Assign the SNMP community name
    ~$ sudo nano /etc/snmp/snmpd.conf
    ####
    # First, map the community name (COMMUNITY) into a security name
    # (local and mynetwork, depending on where the request is coming
    # from):
    
    #       sec.name  source          community
    #com2sec paranoid  default         public
    com2sec readonly  default         public
    #com2sec readwrite default         private
    
  6. Restart the SNMP service
    ~$ sudo /etc/init.d/snmpd restart
  7. Create MRTG file configuration
    ~$ sudo su
    #cfgmaker public@localhost > /etc/mrtg.cfg
  8. Creating index file for the webserver using
    #indexmaker /etc/mrtg.cfg > /var/www/mrtg/index.html
Setting is done, you need to reboot you're PC and wait for five minutes to process. Now you can access MRTG via browser on URL http://localhost/mrtg


Read More

Wednesday, February 24, 2010

How To : Recovery Ubuntu GRUB 2 after install another OS

If you're Ubuntu GRUB disappear after install another OS, you can follow this step to recover it :
  1. Boot from Ubuntu Live CD
  2. Open Terminal
    • Run fdisk to view your partitions
      $ sudo fdisk -l
      Disk /dev/sda: 250.1 GB, 250059350016 bytes
      255 heads, 63 sectors/track, 30401 cylinders
      Units = cylinders of 16065 * 512 = 8225280 bytes
      Disk identifier: 0xa975a975
      
         Device Boot      Start         End      Blocks   Id  System
      /dev/sda1   *           1        3824    30716248+   7  HPFS/NTFS
      /dev/sda2            3825        6374    20482875   83  Linux
      /dev/sda3            6375        8286    15358140   83  Linux
      /dev/sda4            8287       30401   177638737+   5  Extended
      /dev/sda5            8287       12110    30716248+   7  HPFS/NTFS
      /dev/sda6           12111       15934    30716248+   7  HPFS/NTFS
      /dev/sda7           15935       24858    71681998+   7  HPFS/NTFS
      /dev/sda8           24859       29320    35840983+  83  Linux
      /dev/sda9           29321       30085     6144831   83  Linux
      /dev/sda10          30086       30401     2538238+  82  Linux swap / Solaris
      
    • Mount you're Ubuntu root partitions, if you have boot partitions you can mount it too.
      $ sudo mount /dev/sda2 /mnt
      $ sudo mount --bind /dev /mnt/dev
      $ sudo mount --bind /proc /mnt/proc
      
    • Login to you're Ubuntu system
      $ sudo chroot /mnt
    • Update you're GRUB to generate configuration file
      # update-grub2
    • Install GRUB to MBR
      # grub-install /dev/sda
    • If you have any error, you can recheck the installation
      # grub-install recheck /dev/sda
    • Now you can logout from chroot with Ctrl+D and then unmount all partitions
      $ sudo umount /mnt/dev
      $ sudo umount /mnt/proc
      $ sudo umount /mnt
      
  3. Close Terminal and Restart, now you can see you're GRUB menu is back
Read More

Sunday, December 27, 2009

Sabily 9.10 (Gaza) released


Sunday, 10 Muharram 1431

Bismilleh walhamdolilleh wassaleto wasselemo ala rasolilleh,
The Sabily team is proud to announce the release of Sabily 9.10, codename "Gaza". Sabily is the new name of Ubuntu Muslim Edition, the Operating System designed by and for Muslims.
(but non-Muslims are very welcome to use it too Wink).



Sabily 9.10 is available as a Live DVD (so you can test it without installing anything on your computer), with 2 versions:
  • Small version (1 GB): contains the main Sabily packages (artwork, islamic applications) and Arabic support
  • Full version (2.8 GB): same as above plus multimedia, education and miscellaneous packages, besides offline Quran recitations provided by www.versebyversequran.com: Muhammad Siddeeq al-Minshawi, Huzify, Sa’ad al-Ghamadi and Mishary Rashed Alafasy
    Note: the offline recitations are useful if you are not connected to the Internet (all Sabily versions provide online recitations)

What's new in this release:
  • "Noor" application: new Quran Browser
  • Sample books for Thwab
  • "Fsool" application: the Sira of The prophet Mohammed (Peace be upon him)
  • "Rejaal" application: Men around the prophet Mohammed (Peace be upon him)..a flash bibliography of 60 Sahabi
  • "Arabeyes Qamoos": Arabic-English dictionary
Note: the three last software exist only on the full version
What's changed:
  • New theme (grub image + xsplash...)
  • New structure of "Islamic Software"
  • Monajat is re-developed in Python
Main features:
  • Parental control tool installed (WebStrict)
  • Zekr (Quran study tool), able to play Quran recitations
  • Prayer times apps: Minbar and Firefox 'Pray Times' add-on
  • Thwab (encyclopaedia)
  • Custom artwork: usplash, login screen, Islamic wallpapers and theme.
  • Full support for Arabic language.
  • The full version of the DVD contains multimedia, scientific, educational and many other useful software

Download Sabily 9.10 (Gaza) here.

Read More

How To Change Default XSplash on Ubuntu Karmic

XSplash is a software project in the Ubuntu community that uses the X Window System to replace the scrolling-text screens that appear while booting a Linux-based computer with a graphical splash screen.

XSplash replaced usplash (which uses the Linux framebuffer) in Ubuntu 9.10 (Karmic Koala), bringing Ubuntu closer to its goal of a 10-second boot time by version 10.04 (Lucid Lynx). The improved boot performance over usplash and other boot systems is achieved by prioritizing startup processes related to the X server, and by using a single X server throughout the boot process (more). This is preview of default xsplash on Ubuntu Karmic.



To change Default XSplash from ubuntu is just simple replace image on folder '/usr/share/images/xsplash'. For example you can download xsplash image from this link and follow this step.

sonic2epix@matrix:~$ cd /usr/share/images
sonic2epix@matrix:/usr/share/images$ sudo tar -czvf xsplash.backup.tar.gz xsplash
xsplash/
xsplash/bg_1280x1024.jpg
xsplash/logo_medium.png
xsplash/Software
xsplash/bg_1024x768.jpg
xsplash/bg_800x600.jpg
xsplash/logo_large.png
xsplash/bg_1440x900.jpg
xsplash/throbber_small.png
xsplash/bg_2560x1600.jpg
xsplash/throbber_large.png
xsplash/Creative-Commons
xsplash/throbber_xtra_large.png
xsplash/logo_small.png
xsplash/logo_xtra_large.png
xsplash/bg_1920x1200.jpg
xsplash/bg_1680x1050.jpg
xsplash/throbber_medium.png
sonic2epix@matrix:/usr/share/images$ sudo cp ~/Desktop/Fusion-Fluke-GX-v00.tar.bz2 /usr/share/images
sonic2epix@matrix:/usr/share/images$ sudo tar -xjvf Fusion-Fluke-GX-v00.tar.bz2
tar: Record size = 8 blocks
Fusion-Fluke-GX-v00/
Fusion-Fluke-GX-v00/bg_800x600.jpg
Fusion-Fluke-GX-v00/Creative-Commons
Fusion-Fluke-GX-v00/bg_2560x1600.jpg
Fusion-Fluke-GX-v00/bg_1920x1200.jpg
Fusion-Fluke-GX-v00/bg_1440x900.jpg
Fusion-Fluke-GX-v00/bg_1280x1024.jpg
Fusion-Fluke-GX-v00/bg_1024x768.jpg
Fusion-Fluke-GX-v00/Software
Fusion-Fluke-GX-v00/logo_xtra_large.png
Fusion-Fluke-GX-v00/logo_small.png
Fusion-Fluke-GX-v00/logo_medium.png
Fusion-Fluke-GX-v00/logo_large.png
Fusion-Fluke-GX-v00/throbber_xtra_large.png
Fusion-Fluke-GX-v00/throbber_small.png
Fusion-Fluke-GX-v00/throbber_medium.png
Fusion-Fluke-GX-v00/throbber_large.png
Fusion-Fluke-GX-v00/bg_1680x1050.jpg
sonic2epix@matrix:/usr/share/images$ sudo mv Fusion-Fluke-GX-v00 xsplash
sonic2epix@matrix:/usr/share/images$ sudo xsplash
And you will see preview of xsplash like this one. To turn off the preview, press ESC key.



Read More

Sunday, December 20, 2009

Download SoftMaker Office 2008 for free, and SoftMaker donates money !


Download SoftMaker Office 2008 for free, and SoftMaker donates money!

NEW: For Windows and Linux!


  • You are entitled to free tech support and to future upgrades at reduced prices.
  • SoftMaker donates € 0.10 for every successful download to well-chosen development and charity projects on betterplace.org
  • Everyone is invited to join the "Load and Help" team at betterplace.org and donate extra to these help projects.
  • Download now and spread the word! The more downloads, the more we donate! Every download counts!


Read More