Postal Codes in Kenya Starting With Letter D

Dadaab postal Code – 70103 Dago postal Code – 40112 Dandora postal Code – 516 DarajaMbili postal Code – 40117 Daystar University postal Code – 90145 Dede postal Code – 40331 Diani Beach postal Code – 80401 Docks postal Code – 80104 DolDol postal Code – 10401 Dorofu postal Code – 50213 Dudi postal Code – 40621 Dundori postal Code – 20118

Loading

Read More

Postal Codes in Kenya Starting With Letter C

Chamakanga postal Code – 50302 Changamwe postal Code – 80102 Chavakali postal Code – 50317 Chebiemit postal Code – 30706 Cheborge postal Code – 20215 Chebororwa postal Code – 30125 Chebunyo postal Code – 20401 Chemamul postal Code – 20222 Chemaner postal Code – 20407 Chemase postal Code – 40143 Chemelil postal Code – 40116 Chemiron postal Code – 30206 Chepareria postal Code – 30605 Chepkorio postal Code – 30129 Chepsonoi postal Code – 30309 Cheptais postal Code – 50201 Cheptalal postal Code – 20410 Chepterwai postal Code – 30121 Cheptongei postal Code – 30709 Chepsinendet postal Code – 20217 Chesoi postal Code – 30712 Chiakanyinga postal Code – 60410 Chaikariga postal…

Loading

Read More

Postal Codes in Kenya Starting With Letter B

Bahati postal code – 20113 Bamburi postal code – 80101 Banja postal code – 50316 Bar Ober postal code – 50411 Baragoi postal code – 20601 Baraton postal code – 30306 Baricho postal code – 10302 Bartolimo postal code – 30412 Barwesa postal code – 30412 Bissil postal code – 01101 Bokoli postal code – 50206 Bomet postal code – 20400 Bondeni postal code – 20101 Bondo postal code – 40601 Booker postal code – 50137 Boro postal code – 40620 Budalangi postal code – 50415 Bugar postal code – 30702 Buhuyi postal code – 50416 Bukembe postal code – 50233 Bukiri postal code – 50417 Bukura postal code – 50105 Bulimbo…

Loading

Read More

Postal Codes for Areas Starting with A

Agenga postal code – 40406 Ahero postal code – 40101 Ainabkoi postal code – 30101 Akala postal code – 40139 Aluor postal code – 40140 Amagoro postal code – 50244 Amukura postal code – 50403 Andigo postal code – 40136 Angurai postal code – 50412 Anyiko postal code – 40616 Archer`s Post postal code – 60302 Arror postal code – 30708 Asembo Bay postal code – 40619 Asumbi postal code – 40309 Athi River postal code – 204 AwachTende postal code – 40328

Loading

Read More

How to use Rescue Mode to backup/download your important data

What is Rescue Mode? Rescue mode is a term used to describe a method of booting a small Linux environment completely from diskettes. With Rescue mode, you can easily backup/download your data from your VPS if you can not access your VPS any more. When should I use rescue mode? Here is some case when you will need to use rescue mode to download/backup your important data: You forget password of OS and Can not access your VPS any more. Your OS are failed to boot up. Your OS has virus…

Loading

Read More

MySQL Back-up: mysqldump with each database in its own SQL File

Take a mysqldump back-up to separate files To take a back-up, run the mysqldump tool on each available database. $ mysql -N -e ‘show databases’ | while read dbname; do mysqldump –complete-insert –routines –triggers –single-transaction “$dbname” > “$dbname”.sql; done The result is a list of all your database files, in your current working directory, suffixed with the .sql file extension. $ ls -alh *.sql -rw-r–r– 1 root root 44M Aug 24 22:39 db1.sql -rw-r–r– 1 root root 44M Aug 24 22:39 db2.sql If you want to write to a particular directory, like /var/dump/databases/, you can…

Loading

Read More