| 0 komentar

Upgrading VIMP (Community Edition) From 2.0.6 to 2.1.1

ViMP (a video & social media Content Management System) recently released version 2.1.1 (which includes support for mobile devices).

I had previously installed version 2.0.6 (as a virtual machine in VMware vSphere) and thought I would take a look at keeping my ViMP installation up-to-date.

The first step is of course to make a backup in-case the upgrade fails – I simply took a snapshot of my virtual machine as this was the quickest and simplest solution.

First download ViMP version 2.1.1 from here.

Upload ViMP 2.1.1 to your server using WinSCP (Windows) or SSH (Linux).

Now use Putty (Windows) or SSH (Linux) to access the command line interface on your ViMP server.

Copy vimp.framework-2.1.1-r19091-community.tar.gz to your installation folder, in my case this was /var/www/showvid/data:

sudo cp vimp.framework-2.1.1-r19091-community.tar.gz /var/www/showvid/data

Change directory and extract ViMP 2.1.1 with the following commands:

cd /var/www/showvid/data sudo tar xzf vimp.framework-2.1.1-r19091-community.tar.gz

Issue the following commands to upgrade*:

sudo ./symfony rebuild sudo ./symfony cc

* Note that If you use languages other than English and update from a version < 2.0.7 to a version >= 2.0.7, the following symfony task must also be executed (in between the two commands above):

./symfony i18n:import --clear

You should now be able to log in as admin and see that your ViMP installation is running the new version (under the configuration link).

After the upgrade I found that then when I try to upload video I see an Error in the Admin portal:

+ Problem executing command FFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1.1, Copyright (c) 2000-2009 Fabrice Bellard, et al. configuration: --extra-version=4:0.5.1-1ubuntu1.1 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enabl

I logged in as admin and clicked on Administration then Configuration and then Player and set Enable HTML5-player to False.

Then under the Media tab I clicked Restart Transcoding on the affected uploads and they converted successfully. After this I clicked on Transcode new formats and this appeared to work.

I checked /var/www/showvid/data/logs/framework.convert.log and did not see any errors.

So for now I have just left the HTML5 player disabled and my uploads are working without issue (even if they are not being transcoded to the new formats).

Additional support is available from the ViMP Forum if required.

Read more...
| 0 komentar

Ubuntu Server 10.4 Lucid – Installing VIMP (Community Edition)

Some time ago I was looking for an open source YouTube clone when I came across something called osTube. When I recently vistited the osTube site again I found that osTube development had been discontinued. Its successor is ViMP which bills itself as the solution for Social Media, Web TV and Video Communities. It has a host of features and the good news (for me) is that it handles H.264/MP4.
Just to be clear though the ViMP Community edition is not open source – the code is encrypted by a PHP encoder called Source Guardian (which must be installed to use ViMP). Hopefully you are OK with that?
You will need to register at the ViMP site to download it (the current version is 2.0.6). Extract the ViMP tar-ball and you will find an Installation Guide for Debian in the doc folder. Most of this guide is good for an Ubuntu installation but we will make some changes for our Ubuntu install.
My starting point is a virtual machine with a minimal Ubuntu Server installation with the SSH role. So, let’s install ViMP:
Fisrt update repositories:
sudo apt-get update
Install nano (terminal based text editor) and wget (file downloader):
sudo apt-get install nano wget
Install Apache2 web server:
sudo apt-get install apache2
Enable mod_rewrite and then restart Apache2:
sudo a2enmod rewrite sudo /etc/init.d/apache2 restart
Install PHP5:
sudo apt-get install libapache2-mod-php5
Install additional PHP packages:
sudo apt-get install php5-cli php5-mysql php5-gd php5-xsl php5-curl
Install the MySQL database server:
sudo apt-get install mysql-server
You will be prompted to provide a root password for MySQL. Make a note of this password for later!
Add the Medibuntu repository to your server:
sudo wget --output-document=/etc/apt/sources.list.d/medibuntu.list http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list && sudo apt-get --quiet update && sudo apt-get --yes --quiet --allow-unauthenticated install medibuntu-keyring && sudo apt-get --quiet update
Install the transcoding software:
sudo apt-get install mplayer mencoder ffmpeg flvtool2
Install video codecs for popular proprietary formats:
For 32 bit,
sudo apt-get install w32codecs
or for 64 bit,
sudo apt-get install w64codecs
Create directories for ViMP installation:
sudo mkdir -p /var/www/showvid/data sudo mkdir -p /var/www/showvid/logs sudo chown -R www-data:www-data /var/www/showvid
Create a configuration file for the Apache virtual host:
cd /etc/apache2/sites-available sudo nano showvid
Copy and paste the following into the /etc/apache2/sites-available/showvid file you just created:
 DocumentRoot "/var/www/showvid/data/web"ServerName showvid.com ServerAlias www.showvid.com  AllowOverride All RewriteEngine On Options -Indexes FollowSymLinks  ErrorLog /var/www/showvid/logs/error.log CustomLog /var/www/showvid/logs/access.log combined LogLevel error 
Save the file and exit nano.
Enable the showvid virtual host and restart Apache:
sudo a2ensite showvid sudo /etc/init.d/apache2 reload
Disable the default virtual host and restart Apache:
sudo a2dissite default sudo /etc/init.d/apache2 reload
Next we need to configure some PHP values. Edit both of the files listed below and change the upload_max_filesize, post_max_size and memory_limit values as per the bullet points:
sudo nano /etc/php5/apache2/php.ini sudo nano /etc/php5/cli/php.ini
• upload_max_filesize = 1024M
• post_max_size = 1024M
• memory_limit = 512M
Restart Apache:
sudo /etc/init.d/apache2 restart
Create a MySQL database called showvid:
sudo mysqladmin -p create showvid
Enter your MySQL password.
Enter the MySQL console as the root user:
mysql -u root -p
Enter your MySQL password again. You should now be at the MySQL prompt:
mysql>
Create a user called showvid. Change in the first command below to a strong password for the showvid user. Make a note of this password.
CREATE USER showvid@localhost IDENTIFIED BY ''; GRANT ALL PRIVILEGES ON showvid.* TO showvid; FLUSH PRIVILEGES; exit
Change directories to your user directory:
cd /home//
Upload ViMP to your server – I used WinSCP to do this.
Copy the ViMP tar-ball to /var/www/showvid/data/ and then extract it:
sudo cp vimp.framework-.tar.gz  /var/www/showvid/data/ cd /var/www/showvid/data/ sudo tar xvzf vimp.framework-.tar.gz sudo rm vimp.framework-.tar.gz
Make the symfony file in /var/www/showvid/data/ executable:
sudo chmod +x symfony
At this point we would normally be able to execute the symfony file but because we are using the Community edition of ViMP we must install SourceGuardian. To do this we will need to know the version of PHP that we have installed:
php -v
Now that we know what version of PHP we are using we can copy and extract the Source Guardian loaders that are supplied with ViMP.
First create a temporary directory to work in:
cd /home// mkdir temp cd temp/
Now extract the file /var/www/showvid/data/data/loader.tar.gz to the current directory:
tar xfz /var/www/showvid/data/data/loader.tar.gz
For the next step you will need to look in either the Linux_x86-32 folder (if your installation is 32 bit) or the Linux_x86-64 folder (for 64 bit). Assuming that you are running PHP 5.3.2 like me you will want the Source Guardian ixed.5.3.lin loader file .

Now that we have matched a loader to our version of PHP we need to make a folder in /usr/lib/php5/ that we can copy the Source Guardian loader to. The format of the folder is year, month, date +lfs. I don’t think that it really matters what date we choose, so I used the one provided in the Debian installation guide:
sudo mkdir /usr/lib/php5/20060613+lfs
Copy the loader file ixed.5.3.lin to the /usr/lib/php5/20060613+lfs/ folder:
sudo cp Linux_x86-32/ixed.5.3.lin /usr/lib/php5/20060613+lfs/
Create a Source Guardian configuration file:
sudo nano /etc/php5/conf.d/sourceguardian.ini
Add the following two lines to sourceguardian.ini:
[sourceguardian]
zend_extension=/usr/lib/php5/20060613+lfs/ixed.5.3.lin
Restart Apache:
sudo /etc/init.d/apache2 restart
Source Guardian installation is now complete.
Change directory back to /www/showvid/data and run symfony - just make sure that you change to the password you defined for the showvid user earlier on:
cd /var/www/showvid/data sudo ./symfony framework:init mysql://showvid:@localhost /showvid
Finally we need to set up a cronjob that runs every minute to convert uploaded videos to the right format. Edit the crontab:
sudo crontab -e
Copy and paste the following line at the bottom:
*/1 * * * * /var/www/showvid/data/scripts/sync_new_uploads.sh > /dev/null 2>&1
You can now access ViMP with a web browser. The password for the admin account is 'admin' - so you might want to change that after you log in.
That's it, now sit back and enjoy your own video community!

Source
Read more...
| 0 komentar

Howto: Upgrade Linux Kernel

How do I upgrade my Linux kernel? I would like to upgrade kernel without compiling from source code i.e. binary upgrade. How do I perform the actual upgrade of the kernel in Linux?

You need to compile kernel only if:
=> You need custom made kernel for specific task such as embedded kernel.

=> Apply third party security patches.

=> You need to apply specific patch to Linux

Upgrade of the kernel in Red Hat enterprise Linux version <= 4.x

If your system is registered with Red Hat Network (RHN), then you can use the up2datecommand as follows:
# up2date -f kernel
For SMP kernel (multi core or multiple CPU) use command:
# up2date -f kernel-smp

Upgrade of the kernel in Fedora Linux / CentOS / RHEL 5

Use yum command to upgrade kernel:
# yum update kernel

If you have downloaded RPM file use rpm command:
# rpm -ivh kernel*

Upgrade of the kernel in Debian or Ubuntu Linux

Use apt-get command. First find your kernel version:
$ uname -r
Next find available kernel images:
$ apt-cache search linux-image
Now install kernel by explicitly specifying version number:
# apt-get install linux-image-x.x.x-xx
OR
$ sudo apt-get install linux-image-x.x.x-xx

Upgrade of the kernel in Gentoo Linux

=> Please refer official Gentoo Linux Kernel Upgrade Guide

Read more...
| 0 komentar

instalasi ispcp pada debian

instalasi ispcp pada debian

alternatif pengganti cPanel sebagai control panel untuk domain anda :D
Jalanin command berikut :

#apt-get install aptitude

apt-get sama dengan aptitude
BAB 1 : Installation

1. Update your packages list:

# aptitude update

2. Install needed repository key:

# aptitude install debian-backports-keyring

3. Install the new Apache fcgid module version:

# aptitude -t etch-backports install libapache2-mod-fcgid

1.1 – Download & Extract

# aptitude update && aptitude safe-upgrade

# aptitude install tar bzip2 wget lsb-release

# mkdir -p /usr/local/src/ispcp

# cd /usr/local/src/ispcp

Download file ispCP dari SourceForge.net dengan wget, cari mirror nya yang satu kota sama server nya,
Pilih file .zip aja yang agak gampang :D
sebelum unzip File, jalanin command berikut

#aptitude install zip
#aptitude install unzip

bis itu baru unzip file (ganti .X.X sama file downloaded Version)

#unzip ispcp-omega-1.X.X.zip

1. 2 -Mengubah folder ispcp

Ganti .X.X sama file downloaded Version

#cd ispcp-omega-1.X.X

1.3 – Install required packages

# aptitude update
# aptitude safe-upgrade
# aptitude install $(cat ./docs/Debian/debian-packages-`lsb_release -cs`)

ntar tiba-tiba muncul “courier screen” warna biru terus pilih no untuk web directories.
selanjut nya pas “postfix screen” pilih internet site
bis itu masukin nama domain tanpa www
setelah itu “proftpd screen”, pilih standalone

1. 4 – Build the system

# make install

STEP 5 – Copy Folder ke system

# cp -R /tmp/ispcp/* /

STEP 6 – Konfigurasi MySQL server

# mysql_secure_installation

NOTE: JANGAN GUNAKAN @ or $ or % Pada Password!!!

STEP 7 – Setup the system

#cd /var/www/ispcp/engine/setup

# perl ./ispcp-setup

selama proses berjalan, nanti ada beberapa form isian yang harus di sesuaikan dengan kebutuhan server.
Setelah selesai

rm -fR /tmp/ispcp

Read more...
| 0 komentar

Perintah dasar FreeBSD

Bagi yang masih pemula, pasti bingung untuk mejalankan FreeBSD pada waktu setelah di innstall. Disini saya akan memberikan perintah dasar FreeBSD sebagai dasar untuk mengoperasikan FreeBSD.

Setelah anda menginstall FreeBSD dan menjalankan FreeBSD, yang akan muncul adalah permintaan login dari mesin. Login yang biasa pertama kali dipakai itu adalah login dengan user : root. Dan passwordnya adalah sesuai dengan yang anda masukkan pada waktu penginstallan. Jika anda mempunyai user/account yang baru anda buat maka anda dapat masuk ke mesin itu lewat account tersebut.

Setelah itu anda dapat mengoperasikan mesin FreeBSD anda dengan perintah-perintah berikut:
# ‘cd’ = change directory (pindah ke directory …)
# ‘ls’ = list (me-list semua directory dan file yang ada disuatu directory)
# ‘rm’ = remove (menghapus suatu file)
# ‘mkdir’ = make directory (membuat directory/folder)
# ‘clear’ = menghapus semua layar dari perintah-perintah yang pernah kita buat
# ‘ps’ = processing status (melihat proses yang sedang bekerja di mesin)
# ‘kill’ = menghentikan suatu proses
# ‘cp’ = copy (untuk mengcopy suatu file)
# ‘whoami’ = untuk mengetahui sebagai apa kita menjalan mesin tersebut
# ‘pwd’ = untuk mengetahui kalo kita sedang berada di directory …
# ‘tar’ = untuk mengekstrak file compress (file nya harus bertipe .tar.gz)
# ‘compress’ = untuk mengkompress suatu file atau directory
# ‘whereis’ = untuk mengetahui terletak di directory mana suatu file itu berada
# ‘mv’ = memindahkan suatu file ke directory lain atau merubah nama suatu file
# ‘passwd’ = untuk merubah password account yang sedang dipakai
# ‘ee’ = easy editor (suatu program editor text seperti notepad jika di Windows)
Read more...
| 0 komentar

Percantik Grub Dengan Burg

Salam ubuntuers... kali ini saya akan membahas tentang BURG, apa itu BURG? BURG merupakan singkatan dari Brand-new Universal loadeR from GRUB. yah sebuah fitur yang cantik untuk mempercantik GRUB anda dan untuk menghilangkan kejenuhan karena tampilan default BURG yang berwarna hitam.


Sebelum mencobanya anda perlu memperhatikan kalau BURG ini merupakan fitur yang rentan sekali terhadap system jika pada langkah-langkahnya ada kesalahan, jadi pikirkan terlebih dahulu sebelum anda mencobanya. oke sekarang kita lanjutkan ke tahap penginstallan.
Pertama-tama buka konsol/terminal anda lalu eksekusi perintah berikut.

# sudo apt-add-repositori ppa: bean123ch/burg
# sudo apt-get update && sudo apt-get install burg burg-themes
Lalu install burg ke MBR (Master Boot Record) dengan perintah berikut.

# sudo burg-install "(hd0)"

Kalau Ubuntu yang anda gunakan Versi Jaunty, karmic atau hasil upgrade versi Ubuntu sebelumnya ke lucid, harap periksa dulu isi file "burg"

sudo gedit /etc/default/burgUbah baris berikut jadi begini :

GRUB_THEME=saved
GRUB_FOLD=saved


Simpan file dan keluar



Kemudian Update BRUG-nya


# sudo update-burg

Untuk mengecek berhasil atau tidak BURG yang barusan di install silahkan cek (simulasi) lewat terminal menggunakan perintah berikut.

# sudo burg-emu

Bila sukses silahkan tekan huruf t di keyboard anda untuk memilih Theme BURG yang anda inginkan.
Silahkan restart Kompi/Laptop anda kemudian tekan tombol t untuk memilih theme yang anda inginkan pada saat tampilan BootLoader.

Contoh Screenshootnya>>>

Theme Radiance

Theme Coffee
Akhir kata selesai sudah tutor kali ini, semoga apa yang diberikan bisa menjadi manfaat untuk orang banyak, terima kasih telah membaca dan berkunjung ke Blog ini.
Salam.

Sumber: Disini
Read more...
| 0 komentar

Cara Install GnoMenu di Ubuntu 10.04 Lucid Lynx

Hai para ubuntuers, udah pada tau belum tentang Gnomenu? kalo yang udah tau maaf yah kalo hal ini bikin basi, oke buat yang belum tau saya akan share cara installnya di ubuntu 10.04 LTS.
Sebelumnya saya akan sedikit menerangkan apa itu gnomenu, Gnomenu adalah sebuah aplikasi yang diperuntukan untuk panel yang sangat eyecandy untuk menggantikan menu gnome default ubuntu, dan gnomenu ini juga punya theme yang sama persis sama themenya OS Windows.

Gnomenu juga saat ini bisa diimplementasikan kedalam AWN, Cairo-dock, XfApplet, Kde Plasma dan di system tray.
Untuk cara penginstallannya sangat mudah sekali, pastikan komputer/Laptop anda terhubung ke komputer, buka terminal atau konsol anda lalu eksekusi perintah-perintah berikut.

sudo add-apt-repository ppa:gnomenu-team/ppa

sudo apt-get update

sudo apt-get install gnomenu

Cara menambahkan Gnomenu ke panel.

Klik kanan pada panel ubuntu anda >> lalu pilih GnoMenu >> lalu melanjutkan dengan klik Add

GnoMenu sudah bisa digunakan, bila anda ingin memodifikasinya silahkan klik kanan pada icon GnoMenu lalu pilih Properties.











Selamat berkreasi dengan panel GnoMenu baru anda yang sangat eyecandy
semoga bermanfaat.

Sumber : Disini
Read more...
| 0 komentar

First Look at the Ubuntu Unity Desktop Environment

Today was a big day for Ubuntu, with Canonical announcing the Unity desktop environment, Ubuntu Light, and more details about Ubuntu 10.10 “Maverick Meerkat”.

Unity is a new desktop environment designed for netbooks and touch-screen devices. It includes a new panel as well as a new vertical launcher. Unity is build using technologies from GNOME 3, including the Clutter library and the Mutter window manager.

Ubuntu Light is a version of Ubuntu designed to dual-boot with another operating system, and focused on getting on the web fast. It’s a stripped down Ubuntu (no file management) and uses the simpler Unity desktop. Canonical is offering Ubuntu Light to computer manufacturers only, because it’s intended to be customized for specific computers in order to boot fast.

Here’s a few other bits of information about the next version of Ubuntu:

  • Ubuntu Netbook Edition will drop Network Manager for Intel’s Connection Manager because Network Manager does not support indicators. This change will probably be included in the Ubuntu 11.04 desktop.
  • GNOME Shell is for desktops (it will be available in Ubuntu 10.10, but not as the default environment), and Unity is for netbooks.
  • Client-side window decorations and RGBA (alpha channel) will be added to Ubuntu 10.10 early in development.
  • More category indicators (like the messaging indicator) will reduce the number of indicators. A sound indicator will hold indicators for media applications and allow interactions like manipulating playlists.
  • Canonical has a professional font foundry working on a new interface font. When it’s ready, there will be a beta program.
  • A new icon theme is being worked on, but it will take a while to complete and may not be finished in time for the next Ubuntu.
  • Ubuntu 10.10 will be released on October 10, 2010 (that’s 10.10.10).

You can get all the details by watching Mark Shuttleworth’s UDS keynote (thanks to Alan Pope for posting the video).

There’s an official PPA software source from Canonical with a test version of Unity. Here’s how to install it:

  1. Open Ubuntu Software Center.
  2. Select Edit->Software Sources->Other Software.
  3. Click Add, enter ppa:canonical-dx-team/une, and click Add Source.
  4. Search for Unity in the Software Center and install it.

To start Unity, log out to return to the login screen. Select your user, select Ubuntu Unity Netbook Edition in the Sessions box, and log in.

Unity desktop

At first glance, it looks like you have the normal netbook edition GNOME panel at the top of the screen, but with a Google search box instead of a window list. There’s also a colourful stack of icons on the left hand edge of the screen.

The launcher
Unity launcher
The Unity application launcher is a dock. There are some default applications which always appear. Any application that is running will also appear, along with a small indicator that it is running on the left of the icon. The currently focused application also get a indicator on the right side.

Selecting an icon in the launcher causes it to glow while the application loads. Dragging up and down scrolls the list of applications, and dragging an icon out allows it to be repositioned. Right clicking on an icon initiates a scale effect which lets you select from all the windows for that application. There’s no support for minimizing windows.

It’s not easy to access applications which are not in the launcher because there’s no main menu. One item in the launcher is a folder which will show all the installed applications.

The window manager
Unity uses the Mutter window manager from GNOME 3. It’s a compositing window manager and supports some basic animations. At this time the integration between window title bars and the panel has not been implemented. The panel and launcher are run by Mutter, so it won’t be possible to use another window manager like Compiz with Unity. [update] A Compiz developer has Compiz working inside Unity, so this may not be true after all.

The panel
Unity Panel
Clicking the Ubuntu logo scales all the windows and lets you select one to switch to it. The search box goes to Google for now, but later it should be used to search your computer. Everything else on the panel is an indicator, which the current exception of the network manager applet. Despite it’s appearance, the panel is not based on GNOME panel, but is drawn by Mutter.

I’m pretty excited about Unity. While the current version is not complete, it does seem to be in a usable state on my netbook so I’ll continue testing it there.

Read more...
| 0 komentar

Compiz Keyboard Shortcuts in Ubuntu 10.04

Compiz Keyboard Shortcuts in Ubuntu 10.04

Posted by Tom in tips

I couldn’t find much information about keyboard shortcuts for Compiz effects in Ubuntu 10.04. I poked through the default Compiz configuration and found some I didn’t know about, and some that have changed from previous versions of Ubuntu.

Some of the following keyboard shortcuts will not work at all if Compiz (visual effects) if turned off.

Workspaces

  • Ctrl + Alt + Left/Right/Up/Down arrow – move to the workspace in the given direction
  • Ctrl + Alt + Shift + Left/Right arrow – move the current window to the workspace in the given direction
  • Super + E - “expo” effect, shows all workspaces (move windows with left mouse button, zoom to a workspace with right mouse button)

Window Management

  • Super + W – “scale” effect, shows all windows in current workspace (left click selects window, middle click closes window, right click zooms window)
  • Super + A – “scale” effect, shows all windows
  • Alt + F10 – toggle maximize current window
  • Alt + F9 – minimize current window
  • Ctrl + Alt + D – toggle show desktop
  • Alt + Middle mouse button – resize window
  • Alt + Left mouse button – move window
  • Alt + Right mouse button – window menu
  • Alt + F7 – move current window (without holding down mouse button)
  • Alt + F8 – resize current window (without holding down mouse button)
  • Alt + Tab – switch windows on current workspace
  • Ctrl + Alt + Tab – switch windows on all workspaces

Accessibility

  • Super + Mouse wheel scroll – zoom screen
  • Super + Middle mouse button – draw rectangle to zoom to
  • Super + N – invert colours of current window
  • Super + M – invert colours of screen (Compiz is configured for this shortcut, but the messaging indicator seems to have taken it over so it doesn’t work)
Ubuntu Community Documentation has more on keyboard shortcuts (although some of it is outdated now for Ubuntu 10.04). You can view and change some shortcuts using
Read more...
| 0 komentar

Cara gampang belajar Ubuntu Linux dengan Ailurus

Ailurus merupakan software open source yang bisa membuat ubuntu yang anda gunakan semakin mudah untuk digunakan. dengan ailurus kita bisa memanage dan mengatur system settings dari ubuntu mulai dari nautilus, desktop, windows effect, network, sound dan lain-lain. anda juga bisa menginstall dan menguninstall aplikasi yang ada di komputer anda dengan mudah.

selain itu kita juga bisa melihat informasi serta mengecek hardware yang ada di komputer kita seperti motherboard, CPU, BIOS, Total memory. anda juga bisa mengecek system version, desktop environment, host name, kernel version dari ubuntu anda. selain fungsi tersebut masih ada fungsi yang lain dari ailurus seperti fastest repository, clean up system cache, study Linux skills …

kelebihan dari ailurus:

1. membantu kita belajar linux jadi lebih gampang
2. mempermudah proses installasi dan uninstall
3. bisa mengaktifkan bebearapa repositrory dari pihak ketiga
4. menampilkan informasi tentang hardware yang ada di komputer kita
5. bisa membersihkan APT/YUM cache
6. bisa membackup dan recovery APT/YUM status
7. mengubah GNOME Settings dengan mudah

Berikut tampilan start-up logo dari ailurus:

Ailurus sangat mudah sekali digunakan, semua fitur utamanya terletak di menu paling atas sehingga gampang untuk memilih fungsi apa yang akan kita gunakan. berikut ini merukapan contoh bila kita ingin mengubah system settings dari desktop icons.

sedangkan untuk proses installasi di ailurus sebagai berikut.

Install Ailurus:

anda bisa menginstall ailurus dari PPA Repository.

caranya, silahkan masuk terminal dari menu Applications -> Accessories, kemudian ketik seperti berikut:

sudo add-apt-repository ppa:ailurus

sudo apt-get update

sudo apt-get install ailurus

ailurus juga tersedia dalam bentuk tar.gz, deb, rpm paket. yang bias anda download dari http://code.google.com/p/ailurus/downloads/list.

setelah anda install anda bisa menjalankan program ailurus dari menu Applications->System Tools.

jika penasaran dengan ailurus silahkan klik: http://code.google.com/p/ailurus/
Read more...
| 0 komentar

Mounting Otomatis Partisi NTFS

Jika sistem komputer Anda di buat dual booting Windows dan Ubuntu, secara default partisi NTFS tidak dapat di mount secara otomatis saat Anda ingin mengaksesnya dari desktop Ubuntu.
Untuk masuk ke dalam partisi NTFS, yang harus Anda lakukan adalah dengan membuka Nautilus (File Manager) dan klik pada partisi NTFS tersebut, lalu masukkan password untuk mengaksesnya.

Cara terbaik untuk bekerja di lingkungan desktop Ubuntu adalah dengan membuat partisi NTFS di mount secara otomatis pada waktu Ubuntu di boot. Untuk melakukan itu, yang perlu kita lakukan adalah mengedit file fstab yang terletak di direktori /etc/.

Let's start

1. Buka Terminal melalui menu: Applications → Accessories → Terminal

2. Cari tahu letak partisi NTFS
root@playboy:/home/hendra# fdisk -l |grep NTFS
/dev/sda2 * 1531 16730 122094000 7 HPFS/NTFS
/dev/sda5 16731 28442 94076608+ 7 HPFS/NTFS

yang tampil di atas terlihat bahwa letak partisi NTFS saya berada di partisi /dev/sda2,/dev/sda5

3. Buat direktori untuk tujuan mounting partisi NTFS tersebut
misalnya:

root@playboy:/home/hendra# mkdir /media/win7
root@playboy:/home/hendra# mkdir /media/data


4. Edit file /etc/fstab

root@playboy:/home/hendra# vim /etc/fstab
Tambahkan baris berikut ini:

/dev/sda2 /media/win7 ntfs-3g defaults,force 0 0
/dev/sda5 /media/data ntfs-3g defaults,force 0 0

Keluar dan save dengan menekan :wq lalu restart komputer

NB : ntfs-3g adalah driver untuk membaca partisi NTFS
Read more...
| 0 komentar

Menginstall Grub Ubuntu 9.10 pada Windows 7

Pas pertama install bingung juga kirain gagal kok g' ada grubnya, ternyata emg ada sedikit problem yang menyebabkan Grub d windows 7 tidak jalan.
Berikut triknya untuk menginstall grub pada windows 7 :
caranya :

* Nyalakan PC/laptop dan booting dari LiveCD Ubuntu atau flashdisk (yang sudah terisi OS Ubuntu). Cara mengubah urutan booting (boot priority) pada BIOS bisa dicari sendiri lewat google.
* Masukkan LiveCD Ubuntu ke dalam CD-ROM (atau flashdisk, tergantung mana yang ingin digunakan).
* Pilih Try Ubuntu without any changes to your computer. Tunggu sampai Ubuntu tampil dengan sempurna.
* Setelah berhasil masuk ke Ubuntu, buka terminal (klik Applications > Accessories > Terminal, atau tekan kombinasi tombol Ctrl+Alt+F2).

kemudian, muncul menu di terminal.

### lihat partisi kita dengan perintah sudo fdisk -l :

Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x996e996e

Device Boot Start End Blocks Id System
/dev/sda1 * 1 2550 20482843+ 7 HPFS/NTFS
/dev/sda2 2551 6559 32202292+ f W95 Ext'd (LBA)
/dev/sda5 2551 5100 20482843+ b W95 FAT32
/dev/sda6 5101 6316 9767488+ 83 Linux
/dev/sda7 6317 6559 1951866 82 Linux swap / Solaris

### Sekarang ketik sudo mount -t ext4 /dev/sda6 /mnt/. CATATAN: sda6 adalah nama partisi Linux di laptop saya. Anda bisa menggantinya sesuai dengan nama partisi Linux di komputer Anda.

### Ketik sudo mount -t proc proc /mnt/proc/
### Ketik sudo mount -t sysfs sys /mnt/sys/
### Ketik sudo mount -o bind /dev/ /mnt/dev/
### Ketik sudo chroot /mnt/ /bin/bash
### Ketik grub-install /dev/sda. Hasilnya muncul tulisan seperti di bawah ini:

Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install’.

(hd0) /dev/sda

### Ketik grub-install /dev/sda6. Hasilnya muncul pesan seperti ini:

grub-setup: warn: Attempting to install GRUB to a partition instead of the MBR. This is a BAD idea.
grub-setup: warn: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and its use is discouraged.
Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install’.

(hd0) /dev/sda

### ketik update-grub. Hasilnya seperti di bawah ini:

Generating grub.cfg …
Found linux image: /boot/vmlinuz-2.6.31-14-generic
Found initrd image: /boot/initrd.img-2.6.31-14-generic
Found memtest86+ image: /boot/memtest86+.bin
Found Microsoft Windows 7 on /dev/sda2
done
Read more...
| 0 komentar

Serial Number Winxp

Buat semuanya yang mungkin sudah lupa atau belum punya kehilangan serial number window ini ada beberapa yang mungkin berguna untuk kalian koleksi


Win XP Home OEM: JQ4T4-8VM63-6WFBK-KTT29-V8966

Win XP Home Retail: RH6M6-7PPK4-YR86H-YFFFX-PW8M8

Win XP Home Upgrade: RH6M6-7PPK4-YR86H-YFFFX-PW8M8

Win XP Media Center 2005:C4BH3-P4J7W-9MT6X-PGKC8-J4JTM

Win XP Prof Corp: XP8BF-F8HPF-PY6BX-K24PJ-TWT6M

Win XP Prof OEM: XJM6Q-BQ8HW-T6DFB-Y934T-YD4YT

Win XP Prof Retail: CD87T-HFP4C-V7X7H-8VY68-W7D7M

Win XP Prof Upgrade: CD87T-HFP4C-V7X7H-8VY68-W7D7M Run WPA_Kill.exe (in TOOLS\CRACK) to disable activation in non-corporate installs. CD NR 17 815

Windows 2000 Powered Network Attached Storage ( NAS ) SN:: RBDC9-VTRC8-D7972-J97JY-PRVMG CD NR 17 515 Microsoft Windows XP Professional Reduced Media Edition CD NR 17 516

Windows XP Corporate SP2 BONUS CUSTOM REAL CD NR 17 408

Microsoft Windows XP Pro Upgrade w/ Service Pack 2 Integrated SN:CD87T-HFP4C-V7X7H-8VY68-W7D7M CD NR 17 256

Microsoft Windows XP Media Center Edition 2005 [2 CDs] CD NR 16 643 SN: C4BH3-P4J7W-9MT6X-PGKC8-J4JTM

Windows XP Tablet PC Edition 2005 (c) Microsoft [2 CDs] sn: BGBHP-VGPP7-QHTXB-TPV36-CK8T8 16 544

Microsoft Windows XP Professional SP2 Integrated POLiSH 16 401 SN: MYV37-2YMH7-YBHVW-VXJHM-489TB

Microsoft Windows XP Corporate Ed. with incl. SP2 SN:FC8GV-8Y7G7-XKD7P-Y47XF-P829W CGJ2M-CFTXY-W4RBJ-BWTGB-VH2CB 16 171

Microsoft Windows XP Professional SP2 Integrated READ NFO SN:CD87T-HFP4C-V7H7H-8VY68-W7D7M RH6M6-7PPK4-YR86H-YFFFX-PW8M8 16 172

Windows XP Pro SP2 Intergrated TYPE Repack SN:BRP6M-RC9CJ-VWDRK-KP2C2-9QFGW 16 166

Windows XP Service Pack 2 RTM FINAL 16 115

Microsoft Windows XP Service Pack 2 Build 2162 Home Integrated SN:WWWJR-BX7CV-P32X2-C7VT3-QD6BP 16 043

MS Windows XP Professional SP2 RC2 beta build 2149 Intergrated SN:XP8BF-F8HPF-PY6BX-K24PJ-TWT6M 15 812

MS Windows XP MCE

Microsoft Windows XP Professional SP2 RC1 Integrated REPACK 15 389 SN:XP8BF-F8HPF-PY6BX-K24PJ-TWT6M

SUPPORTING USERS RUNNING THE MS WINDOWS XP OPERATING SYSTEM TRAINER 15 186

Microsoft Windows XP 64 Bit SP1 Integrated For 64 Bit Ext Systems 14 978

Ms Windows XP GR SP1 SN:4BR3X-4CP6X-2DTXP-FFDHT-7Q298 14 696

WINDOWS XP - Media Center Edition 2004*GERMAN* SN: KFX2B-HXQ68-78RWH-RPXPK-68DHM 14 460

Microsoft Windows XP Corporate Edition SP1a Intergrated SN: 7QVT6-T2738-WRKJB-YKRFQ-XVK98 11 684

Microsoft Windows Xp Media Center Edition PROPER

c82gj-yh627-72gbt-r7xv7-m7y4b SN: XJM6Q-BQ8HW-T6DFB-Y934T-YD4YT 11 324

Windows XP Home OEM: JQ4T4-8VM63-6WFBK-KTT29-V8966

Windows XP Home Retail: RH6M6-7PPK4-YR86H-YFFFX-PW8M8

Windows XP Home Upgrade: RH6M6-7PPK4-YR86H-YFFFX-PW8M8

Windows XP Media Center 2005: C4BH3-P4J7W-9MT6X-PGKC8-J4JTM

Windows XP Prof Corp: XP8BF-F8HPF-PY6BX-K24PJ-TWT6M

Windows XP Prof OEM: XJM6Q-BQ8HW-T6DFB-Y934T-YD4YT

Windows XP Prof Retail: CD87T-HFP4C-V7X7H-8VY68-W7D7M

Windows XP Prof Upgrade: CD87T-HFP4C-V7X7H-8VY68-W7D7M

Windows XP Tablet PC 2005: VJT7M-8KKHT-GXQ6B-RX639-94FMD DVD-260

Microsoft XP Corpor. Edition Service Pack 1 Intergrated PROPER Key: 7QVT6-T2738-WRKJB-YKRFQ-XVK98 9774 Microsoft Windows XP Service Pack 1 Final Key:VHGJJ-6WK8X-JT2DH-BK6JV-PVFQ4 9775

Microsoft Windows XP Slipstream Sp1 Corporate SN:3KFB7 X2Q3M 6MWFX W2Y7V C7M9D 9758

Microsoft Windows XP Corporate Ed. with incl. SP1 (c) Microsoft SN:3KFB7 X2Q3M 6MWFX W2Y7V C7M9D 9752

Windows XP Professional Retail
Serial# HJ32Y-3B3Y3-3X2HD-DJ43J-Q7D7G 9502

Windows XP SP1 (c) 2002 Microsoft SN:K2KB2-BDBGV-KP686-D8T7X-HDMQ8 9080

Windows.XP.Professional.64.Bit.Edition serial number: C4FPJ-HQCGP-QD3XC-2JF34-FT8Y6 8104

Microsoft Windows XP Corporate Edition CDKEY: FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8 7832

Windows XP Greece SN: MHBCT-6WVKJ-WD3Q3-9D9VJ-C9JJ6 7800

Windows XP Corporate Edition *PROPER PACK* FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8 6580 Microsoft Windows XP Professional
No Activation Required FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8 6572

Ms Office XP GR Prof.[3 CDs]SN :FPHY3-T6B6J-7CFJ9-W4HCT-964FM Publis: PQMVV-XDQ9Q-4C2HP-QK4TF-H4W4M 6482

Microsoft Office XP Developer Edition [3 CDs] CDKEY:FM9FY-TMF7Q-KCKCT-V9T29-TBBBG 5746

Microsoft Office XP Professional [3 CDs] FM9FY TMF7Q KCKCT V9T29 TBBBG 5595

MICROSOFT OFFICE FINAL XP CORPORATE EDITION cdkey: FM9FY TMF7Q KCKCT V9T29 TBBBG 5492
Read more...
| 0 komentar

Tips Membaca SMS Yang Telah Dihapus

Cara untuk melihat kembali SMS yang sudah dihapus, namun untuk khusus menggunakan ponsel Symbian.

1. Buka aplikasi File manager, yang khusus menyediakan fasilitas Hex Viewer di ponsel Anda, misalnya: X-Plore. Bagi Anda yang belum punya silakan download X-Plore terlebih dahulu.

2. Kemudian ekstrak dan pilih jenis aplikasi yang akan diinstall.

3. Kemudian buka X-Plore, lalu buka folder Mail yang terdapat dalam folder System. Folder System tersebut biasanya tersembunyi, Maka munculkan terlebih dahulu dari Menu, Tools, Configuration atau langsung tekan tombol 0.

4. Cari folder SystemMail, dan silakan dibuka setiap folder yang ingin dibaca dan isinya berupa pesan yang ada di ponsel Anda. Baik itu kotak masuk maupun keluar, maka kita bisa membaca semua sms yang sudah dihapus dan belum dihapus dari folder "Mail".

5. Kemudian untuk membacanya, silakan pilih file yang ingin dibaca. Lalu pilih Menu, File, Hex viewer. Dan silakan lihat dan baca pada kolom ketiga dari kiri.
Read more...
| 0 komentar

Aktivasi Windows XP melalui Regedit

To the point ya :D
Pertama, Buka registry Editor. Caranya Klik Run > ketik Regedit >> OK
Cari bagian ini:


HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WPAEvents

Perhatikan String pada OOBETimer

Doble klik untuk mengubah isinya. Apapun isinya, ganti dengan:

FF D5 71 D6 8B 6A 8D 6F D5 33 93 FD

Klik Ok

kedua. Klik Kanan direktori WPAEvents (masih dalam regdit). Kemudian klik "Permissions.."

AKan muncul Kotak widows . Klik Pada System, kemudian ceklist semua kotak Deny nya.

WPA

Klik OK . Kemudian restart Komputer. Semoga tanda kunci dipojok kanan bawah sudah ilang. ini cara lewat registry yg g perlu software apapun hehe klu mau yang simple lain kali ya :D
Read more...
| 0 komentar

Setting OSPF Mikrotik

Setting Interface
[admin@MainRouter] > in pr

Flags: X – disabled, D – dynamic, R – running

# NAME TYPE RX-RATE TX-RATE MTU

0 R ether1=ToClient ether 0 0 1500

1 R ether2=ToInternet ether 0 0 1500


Setting IP

[admin@MainRouter] > ip add pr

Flags: X – disabled, I – invalid, D – dynamic

# ADDRESS NETWORK BROADCAST INTERFACE

0 192.168.10.18/27 192.168.10.0 192.168.10.31 ether2=ToInternet

1 10.10.10.1/24 10.10.10.0 10.10.10.255 ether1=ToClient

2 10.10.20.1/24 10.10.20.0 10.10.20.255 ether1=ToClient


Setting Gateway (ROUTE)

[admin@MainRouter] > ip rou pr

Flags: X – disabled, A – active, D – dynamic,

C – connect, S – static, r – rip, b – bgp, o – ospf

# DST-ADDRESS PREF-SRC G GATEWAY DIS

0 ADC 192.168.10.0/27 192.168.10.18

1 A S 0.0.0.0/0 r 192.168.10.1


Setting NAT

[admin@MainRouter] > ip fire nat pr

Flags: X – disabled, I – invalid, D – dynamic

0 chain=srcnat out-interface=ether2=ToInternet action=masquerade


Setting DNS

[admin@MainRouter] > ip dns pr

primary-dns: 222.124.180.40

secondary-dns: 0.0.0.0

allow-remote-requests: yes

cache-size: 2048KiB

cache-max-ttl: 1w

cache-used: 20KiB


SETTING OSPF
[admin@MainRouter] > routing ospf pr

router-id: 0.0.0.0

distribute-default: if-installed-as-type-2

redistribute-connected: as-type-1

redistribute-static: as-type-2

redistribute-rip: no

redistribute-bgp: no

metric-default: 1

metric-connected: 0

metric-static: 0

metric-rip: 0

metric-bgp: 0



Setting OSPF AREA
[admin@MainRouter] > routing ospf area print

Flags: X – disabled

# NAME AREA-ID TYPE DEFAULT-COST AUTHENTICATION

0 backbone 0.0.0.0 default none

1 Local 0.0.0.1 default 1 none


Setting OSPF NETWORK
[admin@MainRouter] > routing ospf network print

Flags: X – disabled, I – invalid

# NETWORK AREA

0 10.10.10.0/24 Local

1 10.10.20.0/24 Local


Hasil Settingan di OSPF Neighbors

[admin@MainRouter] > routing ospf neighbor print

router-id=192.168.101.1 address=10.10.20.2 priority=1 state=”Full”

state-changes=4 ls-retransmits=0 ls-requests=0 db-summaries=0

dr-id=10.10.20.1 backup-dr-id=10.10.20.2


router-id=192.168.200.1 address=10.10.10.2 priority=1 state=”Full”

state-changes=8 ls-retransmits=0 ls-requests=0 db-summaries=0

dr-id=10.10.10.1 backup-dr-id=10.10.10.2


router-id=192.168.10.18 address=10.10.20.1 priority=1 state=”2-Way”

state-changes=0 ls-retransmits=0 ls-requests=0 db-summaries=0

dr-id=10.10.20.1 backup-dr-id=10.10.20.2



Hasil Akhir Settingan di IP ROUTE

[admin@MainRouter] > ip rou pr

Flags: X – disabled, A – active, D – dynamic,

C – connect, S – static, r – rip, b – bgp, o – ospf

# DST-ADDRESS PREF-SRC G GATEWAY DIS

0 ADC 10.10.10.0/24 10.10.10.1

1 Do 10.10.10.0/24

2 ADC 10.10.20.0/24 10.10.20.1

3 Do 10.10.20.0/24

4 ADC 192.168.10.0/27 192.168.10.18

5 ADo 192.168.100.0/30 r 10.10.10.2

6 ADo 192.168.101.0/24 r 10.10.20.2

7 ADo 192.168.200.0/30 r 10.10.10.2

8 A S 0.0.0.0/0 r 192.168.10.1


SETTING OSPF CLIENT1

[admin@Client1=RouterBoard] > in pr

Flags: X – disabled, D – dynamic, R – running

# NAME TYPE RX-RATE TX-RATE MTU

0 R ether1=ToMainRouter ether 0 0 1500

1 R ether2=ToLocal ether 0 0 1500

2 R ether3 ether 0 0 1500

3 wlan1 wlan 0 0 1500

4 X wlan2 wlan 0 0 1500


[admin@Client1=RouterBoard] > ip add pr

Flags: X – disabled, I – invalid, D – dynamic

# ADDRESS NETWORK BROADCAST INTERFACE

0 10.10.10.2/24 10.10.10.0 10.10.10.255 ether1=ToMainRouter

1 192.168.100.1/30 192.168.100.0 192.168.100.3 ether2=ToLocal

2 192.168.200.1/30 192.168.200.0 192.168.200.3 wlan1


[admin@Client1=RouterBoard] > ip dns pr

primary-dns: 0.0.0.0

secondary-dns: 0.0.0.0

allow-remote-requests: no

cache-size: 2048KiB

cache-max-ttl: 1w

cache-used: 17KiB


[admin@Client1=RouterBoard] > rou ospf pr

router-id: 0.0.0.0

distribute-default: never

redistribute-connected: as-type-1

redistribute-static: no

redistribute-rip: no

redistribute-bgp: no

metric-default: 1

metric-connected: 0

metric-static: 0

metric-rip: 0

metric-bgp: 0


[admin@Client1=RouterBoard] > rou ospf area pr

Flags: X – disabled

# NAME AREA-ID TYPE DEFAULT-COST AUTHENTICATION

0 backbone 0.0.0.0 default none

1 Local 0.0.0.1 default 1 none


[admin@Client1=RouterBoard] > rou ospf network pr

Flags: X – disabled, I – invalid

# NETWORK AREA

0 10.10.10.0/24 Local

1 10.10.20.0/24 Local



[admin@Client1=RouterBoard] > ip route pr

Flags: X – disabled, A – active, D – dynamic,

C – connect, S – static, r – rip, b – bgp, o – ospf

# DST-ADDRESS PREF-SRC G GATEWAY DIS

0 ADC 10.10.10.0/24 10.10.10.2

1 Do 10.10.10.0/24

2 ADC 192.168.100.0/30 192.168.100.1

3 ADC 192.168.200.0/30 192.168.200.1
Read more...
| 0 komentar

Mengembalikan GRUB Loader Ubuntu 9.4 Yang Hilang Setelah Install Windows

Biasanya jika memiliki dual boot OS misalkan: Linux dan Windows, dan kebetulan windowsnya error atau sering hang dan ada niat untuk install ulang OS windowsnya, jika kita ingin meng-install ulang kemungkinan GRUB Loader Linux-nya akan hilang karena saat install windows akan menulis ulang/menghapus MBR (Master Boot Record) yang ada dan akan menghapus GRUB Loader Linux, bagaimana cara untuk mengembalikan GRUB Loader Linux yaitu salah satunya dengan cara menggunakan CD Live Linux, misalkan ubuntu jaunty versi desktop, knoppix, dll. Setelah linux live cd sudah running, selanjutnya buka terminal, sebagai root ketik command grub;

untuk mengetahui partisi apa saja yang ada;

grub> geometry (hd0);
drive 0x80: C/H/S = 9729/255/63, The number of sectors = 156301488, /dev/sda
Partition num: 0, Filesystem type is ext2fs, partition type 0x83
Partition num: 1, Filesystem type unknown, partition type 0x7
Partition num: 4, Filesystem type unknown, partition type 0x7
Partition num: 5, Filesystem type unknown, partition type 0x82

Pada partisi diatas terlihat bahwa partisi nomor 0 yang digunakan linux, lalu ketik:

grub> root (hd0,0);

untuk menjadikan GRUB Loader-nya berada di MBR, ketik;

grub> setup (hd0);
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd0)"... 17 sectors are embedded.
succeeded
Running "install /boot/grub/stage1 (hd0) (hd0)1+17 p (hd0,0)/boot/grub/stage2
/boot/grub/menu.lst"... succeeded
Done.

Jreng .......jangan lupa reboot linux anda, lihat hasil kerja anda :) good luck
Read more...
| 0 komentar

Cara Flash Handphone Nokia 6600

pertama2 cabut mmc

scan via antivirus di warnet or kompi lw

tp kenapa gwe sarankan diwarnet karna rata2 warnet antivirusnya up to date.
kecuali warnet kacangan..

setelah selesai
jangan masukan dulu mmc ke hp..


format dulu hp

bisa dengan dari keadaaan mati tekan * ,angka 3, dan tombol terima panggilan.. secara bersamaan lalu nyalahkan hp.. tunggu beberapa saat dengan terus menekan tombol 3 jari tsb..

contoh pic :



itu hanya berlaku jika kunci or password tlp masih standar alias 12345

jika sudah berubah disarankan dalam keadaaan nyala

tekan *#7370# lalu ada perintah telp akan direstar pilik ok
masukan password tlp mu kalo standar 12345 biasanya

tips setelah selesai format jangan buru2 memasukan mmc kedalam hp

tunggu delay 1jam.. setelah 1jam baru masukan mmc kehp

ini mencegah mmc terkunci karna sepengalaman saya mmc pada 6600 terkunci gara2 diformat hp tanpa melepas mmc.. dan memasukan mmc setelah format selesai..
Read more...
| 0 komentar

Best Hosting Scripts

Category: Web Scripts
1StopHost.biz Script
ModernBill 3.1.1
Blog Hosting Script 2.3.4
BlogHoster 2.1
Hivemail 1.31
DreamHost Pro 2.3
EasyHost 1.4
HostDirector 1.01
iHost 1.01
iProsite 2.4
MyWebFTP 5.1.2
xPanel 1.1.6

Images Host
Image Management System 4.0 Pro
Image Hosting System 1.3.4
PHP Image Host 1.0
KTools Image Hosting Site 1.5.8
My Image Host 1.0
ProPhotoHost 1.0
iRedirector Subdomain Edition 1.0.6
Redirection 1.4
AMFR Account Creator
cP Account Creator 0.4
Indigo eHostWorx WHM 2.4.16
Mirndtsoft Auto Host 2
Advance Super Forums ( vBHosting ) for vB 3.0.x
Multi-Forums Pro Host 1.3 for IPB
Multi Forums Pro Host for phpBB 2.0.13
Fantastico 2
Hosting Scripts (48 mb)
|
|---Billing Softwares
| |
| |---1StopHost.biz Script
| |
| |___ModernBill 3.1.1
|
|---Blog Hosting
| |
| |---Blog Hosting Script 2.3.4
| |
| |___BlogHoster 2.1
|
|---Email Hosting
| |
| |___Hivemail 1.31
|
|---Web Hosting
| |
| |---DreamHost Pro 2.3
| |
| |---EasyHost 1.4
| |
| |---HostDirector 1.01
| |
| |---iHost 1.01
| |
| |---iProsite 2.4
| |
| |---MyWebFTP 5.1.2
| |
| |___xPanel 1.1.6
|
|---Images Host
| |
| |---Image Management System 4.0 Pro
| |
| |---Image Hosting System 1.3.4
| |
| |---PHP Image Host 1.0
| |
| |---KTools Image Hosting Site 1.5.8
| |
| |---My Image Host 1.0
| |
| |___ProPhotoHost 1.0
|
|---Sub-Domain Hosting
| |
| |---iRedirector Subdomain Edition 1.0.6
| |
| |___Redirection 1.4
|
|---cPanel Accounts Creation
| |
| |---AMFR Account Creator
| |
| |---cP Account Creator 0.4
| |
| |---Indigo eHostWorx WHM 2.4.16
| |
| |---Mirndtsoft Auto Host 2
| |
| |___WHM AutoPilot 4.16
|
|---Forum Hosting
| |
| |---Advance Super Forums ( vBHosting ) for vB 3.0.x
| |
| |---Multi-Forums Pro Host 1.3 for IPB
| |
| |___Multi Forums Pro Host for phpBB 2.0.13
|
|___Misc
|
|___Fantastico 2


Check Download Links Code:

http://rapidshare.com/files/99956022/Hosting_Scripts.rar

Read more...
| 0 komentar

Image Host Scripts

Code:

image host Scripts

--- Image Management System 4.0 Pro

--- Image Hosting System 1.3.4

--- PHP Image Host 1.0

--- KTools Image Hosting Site 1.5.8

--- My Image Host 1.0

--- ProPhotoHost 1.0

Download:
Check Download Links Code:

http://rapidshare.com/files/65742894/Images_Host_Scripts_By_Technics.rar
Read more...