Tag Archives: mac os

Membuat Virtual Host di Mac OS X 10.9 Maverick

Virtual Host membuat satu mesin dapat digunakan untuk banyak domain sekaligus. Hal ini menjadi sangat bermanfaat bagi saya karena saya mempunyai lebih dari satu website yang sedang dikembangkan di dalam macbook saya. Cara pun cukup sederhana. Hanya membutuhkan aplikasi ‘Terminal’ saja.

Langkah-langkahnya sebagai berikut:

1. Edit file httpd.conf
File httpd.conf ada di /etc/apache2/httpd.conf. Edit dengan perintah:

sudo nano /etc/apache2/httpd.conf

Cari baris yang ada kode berikut, dan hilangkan tanda ‘#’ di depan baris tersebut.

#Include /private/etc/apache2/extra/httpd-vhosts.conf

2. Edit file httpd-vhosts.conf
File httpd-vhosts.conf terdapat di /private/etc/apache2/extra/httpd-vhosts.conf. Edit dengan perintah.

sudo nano /private/etc/apache2/extra/httpd-vhosts.conf

Kemudian tambahkan virtual host yang diinginkan. Dalam contoh ini saya ingin membuat dengan nama domain examplesite.local dan mempunyai document root di /Users/pujipriyono/Sites/examplesite/public_html/

<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot “/Users/pujipriyono/Sites/examplesite/public_html/”
ServerName examplesite.local
ErrorLog “/private/var/log/apache2/examplesite-error_log”
CustomLog “/private/var/log/apache2/examplesite-access_log” common
</VirtualHost>

3. Dan restart apache dengan perintah

sudo apachectl restart

4. Edit file “hosts”, dengan perintah

sudo nano /etc/hosts

Tambahkan line berikut pada baris paling akhir.

127.0.0.1 examplesite.local

5. Selesai. Buka browser, dan bisa langsung akses ke alamat http://examplesite.local

Update OS X: Maverick

Beberapa hari yang lalu, saya mencoba untuk meng-update OS dari laptop saya. Mumpung OS-nya juga gratis. Awalnya OS dari laptop saya adalah OS X Mountain Lion, kemudian saya update menjadi OS X Maverick. Proses update melalui App Store, memakan waktu sekitar 12 jam untuk download installer 5,5GB dengan berbagai koneksi, tergantung koneksi yang tersedia, baik speedy maupun Tri.

Download OS X Maverick

Download OS X Maverick

Setelah proses download selesai, maka dimulailah proses installasi.

Install OS X Maverick

Install OS X Maverick

Proses installasi memakan waktu sekitar 1,5 jam. Setelah proses installasi selesai, tidak ada data maupun software yang hilang, Hanya saja untuk  PHP membutuhkan setting ulang. Selebihnya semua sudah berjalan seperti biasa.

Kapan-kapan akan saya postingkan review mengenai OS X Maverick ini. #awal wacana.. 😀

Create PHP Configuration File on OS X 10.8 Mountain Lion

After installing and configure Apache, PHP, MySQL on OS X 10.8 Mountain lion, there is an error (warning) about date timezone on PHP because there is no timezone selected. After googling for a while, i didn’t found a solution.

PHP Configuration

PHP Configuration

 

Then i ask xikyu46, he replied that i should create a configuration file on default directory. The default configuration directory is located at /private/etc/. Create php.ini file. Set the timezone. And done.

OS X Mountain Lion 10.8

OS X Mountain lion telah dirilis. User yang menggunakan OS X Snow Leopard (10.6) maupun Lion(10.7) dapat langsung mendownload melalui Mac App Store. Cara yang baru untuk menginstall sebuah sistem operasi. Sampai saat ini belum ada kabar bahwa Apple akan merilis OS X terbaru tersebut dalam media DVD/USB Stick. Jadi pilihan satu-satunya saat ini adalah download langsung secara online.

OS X Mountain Lion

OS X Mountain Lion

Bagi pemilik koneksi yang bagus, mendownload OS X tidak masalah. Namun bagi fakir benwit seperti saya, ini menjadi masalah tersendiri. File installer sebesar 4,35 GB harus didownload dengan kecepatan antara 30-50kBps. Sungguh menyedihkan. Membutuhkan waktu sekitar 30 Jam untuk mendownloadnya.

Updated!

Updated!

Kesan pertama setelah mencoba OS X Mountain Lion ini adalah bingung dengan konsep natural scrolling.. 😀 terbiasa dengan Snow Leopard yang scrollingnya standar. Review lengkap sudah banyak menulis. Salah satunya sampai 24 halaman di sini.

 

 

Installing Gammu on Mac OS X Snow Leopard

Gammu on Mac OS X Snow Leopard

Gammu on Mac OS X Snow Leopard

Installing Gammu on Windows or major Linux distribution is very easy. There is binary distribution for it. But on Mac OS X it can make a little pain for end user like me. 😀


I use gammu 1.28. I was try some other newer version of gammu, but cannot compile it. You have to compile it using cmake(www.cmake.org). You can install cmake using binary distribution(dmg) or using brew.

You can read full tutorial installing gammu in here, complete with error solving. But i did not found error on installing gammu and i dont have to recompile it to use with MySQL.

New Modem

For a long time, i want to have a modem. But for many reason, i didn’t buy it.Until today i buy a modem, Huawei E1550. I choose Simpati as my internet provider because Simpati (Telkomsel) is the one and only provider which have HSDPA network around my house. 😀

When i first plug it on my macbook pro, Mac OS X can not detect it. I think there was a problem with the modem. So i try plug my modem to other computer(Windows XP), it can be detected and work normally. So i try googling it. I found this. The post explain that i should download Dashboard for Mac OS X 10.6 / Mobile Partner(Modem Management Software) from huawei device site. Continue reading