Build-Essentials in CentOS?

CentOS, How to, Linux, Tips and Tricks, Tutorials, Ubuntu
If you are like me, you may be doing this to install essential build libraries to compile something from source [code]# wrong method yum install build-essential[/code] :) Build essential is a Ubuntu / Debian package. On CentOS, you need to do this [code]yum groupinstall "Development Tools"[/code] Warning: This will install all development tools approx 49 packages closing to 65MB
Read More

Linode is Blazzing Fast

Personal, Thoughts
I asked my client to buy a Linode for some testing purposes and I tried it for the first time. I must say, Linode is blazzing fast. Downloads are touching 8M/sec and speed, performance is as if its running on a VM on my local system. Update: Now its been almost a month running Linode and I strongly recommend this VPS company.
Read More

Good bye CentOS! Hello Ubuntu

CentOS, Linux, PHP, Reviews, Tips and Tricks, Ubuntu
Its been about almost more then two years since I have been playing with CentOS on many different platforms etc. Its very stable but on the other hand, PHP/MySQL updates are very hard to get and still PHP is 5.1.6. I tried EPEL repo and it updated PHP to 5.3.1 but still there were conflicts with stuff and many core packages. So, I thought why not move to Ubuntu since it has just announced 10.04LTS (Long Term Support) in April 2010. Folks at iWeb were really nice to do a reinstall without any charges and also process a memory upgrade request at an amazing 50% discount. Ubuntu 10.04 LTS Apache 2 version is 2.2.14 PHP version is 5.3.2 MySQL version is 5.1.41-3ubuntu12 SVN (Subversion) version is 1.6.6 As a comparison…
Read More

Wateen’s Initial Public Offering

News, Thoughts
I got this in my mailbox today (since I am a Wateen consumer since Dec 2007) Dear Valued Customer, Wateen Telecom is a group company of Abu Dhabi group. Abu Dhabi Group is one of the largest business groups in the Middle East and the one of the largest foreign investor in Pakistan. Abu Dhabi group owns Wateen through Warid Telecom International and Bank Alfalah Limited which hold 79.8% and 20.0% shares respectively. Wateen’s successful four years of operations in the telecom industry of Pakistan speak for itself, as it successfully deployed the largest commercial and first nationwide 3.5 GHz WiMax network rollout in the world covering 22 cities and 1,100 sites with over 160,000 wireless broadband customers (60% of wireless Broadband market), 12,000 Broadband customers over fiber and 2,700…
Read More

How to solve ‘You do not have sufficient permissions to access this page.’ in WordPress

How to, Tutorials
I have been getting the following error because I changed the database table prefix You do not have sufficient permissions to access this page. The cause of the problem is that you have changed the database prefixes but still, some of the word press config is tied down to the previous prefix (wp_ or something) Just execute the following two queries [code lang="sql" toolbar="false"] -- Replace 'prefix_' with your actual prefix UPDATE `prefix_usermeta` SET `meta_key` = REPLACE( `meta_key` , 'wp_', 'prefix_' ); -- Replace 'prefix_' with your actual prefix UPDATE `prefix_options` SET `option_name` = 'prefix_user_roles' WHERE `option_name` ='wp_user_roles' AND `blog_id` =0;[/code]
Read More