Facebook Likers
June 24, 2013
June 23, 2013
(Asus) Fonepad Receiving 3.2.3 Update
ASUS released a new OTA (On-The-Air) firmware (kernel) update for ASUS FonePad version 3.2.3 on June 3, 2013.
The OTA update size approximately 6.98 MB. To use OTA, go to Setting>About Tablet>System Update.
See below for download link (Asus) if you want to download the update. The update file(s) might not be available on the same time as OTA. Please be informed.
Download
Note:
- The firmware update cannot do SKU conversions or downgrades of your current software version.
- Using the wrong SKU may cause an update failure.
- You can only update your software version if you use the same SKU.
Related post:
- Asus Fonepad Receiving 3.1.16 Update
- Asus Fonepad Receiving 3.1.17 Update
- Asus Fonepad Receiving 3.2.2 Update
(Asus) Fonepad Root Tutorial
This exploit enable root with Superuser installed. The installation method is the same as using ASUS's own Droidboot (recovery mode) to update firmware version.
To learn how to use Droidboot, please refer to this link (source: Asus)
To learn how to use Droidboot, please refer to this link (source: Asus)
Step By Step
1. Download rooted firmware file (raw extension).
2. Copy “ME371MG_all_xxxx.raw” to the root path of SD card.
3. Insert the SD card into the Device.
4. Turn the ASUS Fonepad device off.
5. Keep holding the “power key” and “volume up key” simultaneously for 5-10 seconds.
6. You will see ASUS logo and the device will then go to download mode.
6. You will see ASUS logo and the device will then go to download mode.
5. Hold the “volume down key” first, and then press “volume up key” for a few second. You will see a menu on the screen.
6. Select “SD download” (“volume up key” for move up; “volume down key” for move down) > Press “power key” for execute. The Device will start the update and then reboot automatically.
Files Link
<TW>
3.2.3
3.2.3
<JP>
3.2.2
3.2.2
<CN>
3.2.2
3.2.2
Asus Website > Download Page (Select Android as OS)
*Update: Please refer here (xda thread) or here (compilation by quim-net, thanks bro!) for newest updates for all version. (Do not forget to thanks him!)
METHOD TWO (Cydia Impactor)
This is a new method which is simpler and already tested. Cydia Impactor is a GUI tool for working with Android devices.
Please click this link to go to Cydia Impactor page.
Note : If you are on Windows, you may have to install a device driver to talk to your device over USB. If your device is not detected, use Impactor's USB Driver Scan feature to attempt to automatically construct and install a driver for your device. You do not need the Android SDK.
#Credit to Chirantantab for easier to follow method. Thanks! (I only did some editing for better understanding)
1) Flash Asus original firmware 3.2.4 using sd download
2) Download cydia impactor from http://www.cydiaimpactor.com/
3) Enable usb debugging. Then open impactor.exe from zip and here the pop up screen shows
"# drop SuperSU su to /system/xbin/su"
Press start button. Meanwhile your tablet screen will splash twice with payload logo
4) Check with root checker.
"Congrats! you have root access"
5) Install Super SU and Open. Then Enable "Super User"from settings.
Now go to cydia impactor.exe > Devicetab > OpenShell
6) Squirrel away su following rfrazier method by copying this code and paste it to shell.
Then allow it through Permission on your Phone
****************************************************************
#####
# squirrel away a good su. #
# use adb and get root
su
mount -o remount,rw /system /system
# If su saving has been done before, you need to to lose the
# immutable attribute in order to overwrite it. If this is the first time
# you've saved su, you can skip this step.
/system/bin/busybox chattr -i /system/usr/abcd/efgh
mkdir /system/usr/abcd
chmod 001 /system/usr/abcd
cat /system/xbin/su > /system/usr/abcd/efgh
chmod 06755 /system/usr/abcd/efgh
/system/bin/busybox chattr +i /system/usr/abcd/efgh
mount -o remount,ro /system /system
# Double check attributes and permissions of efgh.
# Exit root, and try getting root with efgh.
exit
/system/usr/abcd/efgh
# Done squirreling away a good su.
#####
*****************************************************************
7) Run OTA update. Install. Your phone will be restarted.
8) Restore SU. Copy this code and paste it to shell again (You need to enable USB debugging again and open impactor shell)
*****************************************************************
OTA update
#####
# Restore su. #
# use adb and get root.
/system/usr/abcd/efgh
mount -o remount,rw /system /system
# I'm assuming that /system/bin/su is a link to /system/xbin/su. If it
# isn't, change as needed.
cat /system/usr/abcd/efgh > /system/xbin/su
chown 0:0 /system/xbin/su
chmod 06755 /system/xbin/su
mount -o remount,ro /system /system
# Done restore su. #
####
#
# I double and triple check everything.
#
# After it is known to work, you can get rid of the squirrelled away su by
# changing its attributes, and removing. But, don't remove it until you are
# absolutely confident that you have a good su on your system. Indeed,
# you might just leave it there.
# Use adb and get root.
su
rm /system/usr/abcd/efgh
cd /system/usr
rmdir abcd
*******************************************************************
9) Completed. Your device now on rooted v3.2.6
Cheers!
This is a new method which is simpler and already tested. Cydia Impactor is a GUI tool for working with Android devices.
Please click this link to go to Cydia Impactor page.
Note : If you are on Windows, you may have to install a device driver to talk to your device over USB. If your device is not detected, use Impactor's USB Driver Scan feature to attempt to automatically construct and install a driver for your device. You do not need the Android SDK.
#Credit to Chirantantab for easier to follow method. Thanks! (I only did some editing for better understanding)
1) Flash Asus original firmware 3.2.4 using sd download
2) Download cydia impactor from http://www.cydiaimpactor.com/
3) Enable usb debugging. Then open impactor.exe from zip and here the pop up screen shows
"# drop SuperSU su to /system/xbin/su"
Press start button. Meanwhile your tablet screen will splash twice with payload logo
4) Check with root checker.
"Congrats! you have root access"
5) Install Super SU and Open. Then Enable "Super User"from settings.
Now go to cydia impactor.exe > Devicetab > OpenShell
6) Squirrel away su following rfrazier method by copying this code and paste it to shell.
Then allow it through Permission on your Phone
****************************************************************
#####
# squirrel away a good su. #
# use adb and get root
su
mount -o remount,rw /system /system
# If su saving has been done before, you need to to lose the
# immutable attribute in order to overwrite it. If this is the first time
# you've saved su, you can skip this step.
/system/bin/busybox chattr -i /system/usr/abcd/efgh
mkdir /system/usr/abcd
chmod 001 /system/usr/abcd
cat /system/xbin/su > /system/usr/abcd/efgh
chmod 06755 /system/usr/abcd/efgh
/system/bin/busybox chattr +i /system/usr/abcd/efgh
mount -o remount,ro /system /system
# Double check attributes and permissions of efgh.
# Exit root, and try getting root with efgh.
exit
/system/usr/abcd/efgh
# Done squirreling away a good su.
#####
*****************************************************************
7) Run OTA update. Install. Your phone will be restarted.
8) Restore SU. Copy this code and paste it to shell again (You need to enable USB debugging again and open impactor shell)
*****************************************************************
OTA update
#####
# Restore su. #
# use adb and get root.
/system/usr/abcd/efgh
mount -o remount,rw /system /system
# I'm assuming that /system/bin/su is a link to /system/xbin/su. If it
# isn't, change as needed.
cat /system/usr/abcd/efgh > /system/xbin/su
chown 0:0 /system/xbin/su
chmod 06755 /system/xbin/su
mount -o remount,ro /system /system
# Done restore su. #
####
#
# I double and triple check everything.
#
# After it is known to work, you can get rid of the squirrelled away su by
# changing its attributes, and removing. But, don't remove it until you are
# absolutely confident that you have a good su on your system. Indeed,
# you might just leave it there.
# Use adb and get root.
su
rm /system/usr/abcd/efgh
cd /system/usr
rmdir abcd
*******************************************************************
9) Completed. Your device now on rooted v3.2.6
Cheers!
June 21, 2013
(Seriusly) Khabar Angin Pablo Aimar masuk JDT
Dengar-dengar khabar angin Pablo Aimar akan join JDT. Confirm ke?
"Pese a ser uno de los sueños más anhelados de todos los hinchas de
River, parece que el regreso de Pablo Aimar, uno de los hijos pródigos
del club millonario, tendrá que seguir esperando.
¿Qué pasó ahora? Sucede que el volante de 33 años, recientemente desvinculado del Benfica de Portugal, donde jugaba desde 2008, estuvo en el país y había reconocido haber tenido una charla con Emiliano Díaz, hijo y ayudante de campo de Ramón, entrenador actual del club de Núñez.
Ante esto, claro está, todo parecía indicar que el cordobés estaba a un paso de regresar al equipo que lo vio nacer, aunque por estos días, la cosa parece haber dado un vuelco de 180 grados.
Aimar viajó a Malasia, tentado por una oferta del Johor Darul Takzim, un ignoto equipo de la Primera División de aquel país que está muy interesado en contratar al ex jugador de la Selección argentina.
De esta forma, si bien nada está confirmado, todo parece indicar que una vez más el sueño quedará trunco. El tan ansiado retorno de unos de los últimos ídolos que sacó el club, por ahora, está en veremos, una vez más."
¿Qué pasó ahora? Sucede que el volante de 33 años, recientemente desvinculado del Benfica de Portugal, donde jugaba desde 2008, estuvo en el país y había reconocido haber tenido una charla con Emiliano Díaz, hijo y ayudante de campo de Ramón, entrenador actual del club de Núñez.
Ante esto, claro está, todo parecía indicar que el cordobés estaba a un paso de regresar al equipo que lo vio nacer, aunque por estos días, la cosa parece haber dado un vuelco de 180 grados.
Aimar viajó a Malasia, tentado por una oferta del Johor Darul Takzim, un ignoto equipo de la Primera División de aquel país que está muy interesado en contratar al ex jugador de la Selección argentina.
De esta forma, si bien nada está confirmado, todo parece indicar que una vez más el sueño quedará trunco. El tan ansiado retorno de unos de los últimos ídolos que sacó el club, por ahora, está en veremos, una vez más."
Translation
Despite being one of the biggest dreams of every fan of River seem that
the return of Pablo Aimar, one of the millionaire club prodigal sons,
will have to wait.
What happened now? It happens that the steering wheel 33, recently split from Benfica of Portugal, where he played from 2008, was in the country and had admitted having had a chat with Emiliano Diaz, son and aide of Ramon current club coach Nunez.
Given this, of course, it seemed that the Cordoba was one step away from returning to the team where he was born, but these days, things seem to have turned around 180 degrees.
Aimar traveled to Malaysia, tempted by an offer from Johor Darul Takzim, an unknown team from the First Division of the country which is keen to hire former Argentina Team player.
In this way, although nothing is confirmed, it appears that once again the dream will be truncated. The long awaited return of one of the last idol that took the club, for now, is we will see once again.
What happened now? It happens that the steering wheel 33, recently split from Benfica of Portugal, where he played from 2008, was in the country and had admitted having had a chat with Emiliano Diaz, son and aide of Ramon current club coach Nunez.
Given this, of course, it seemed that the Cordoba was one step away from returning to the team where he was born, but these days, things seem to have turned around 180 degrees.
Aimar traveled to Malaysia, tempted by an offer from Johor Darul Takzim, an unknown team from the First Division of the country which is keen to hire former Argentina Team player.
In this way, although nothing is confirmed, it appears that once again the dream will be truncated. The long awaited return of one of the last idol that took the club, for now, is we will see once again.
June 15, 2013
(Proton) Saga SV Mampu Milik
DRB-HICOM hari ini telah melancarkan model baru Proton Saga SV dengan harga mampu milik RM33,888. Ia ditawarkan dengan ansuran bulanan serendah RM250 sebulan mengikut syarat dan terma tertentu. Untuk maklumat lanjut, sila lawati laman utama Proton atau ke kedai pengedar Proton berdekatan anda.
June 09, 2013
(Good Bye) Google Reader
Google Reader was created in 2005 by Chris Wetherell and officially launched through Google Labs on 7th October 2005. It grew in popularity as a platform to serve news & information to the masses. Unfortunately on 13th March 2013, Google announced Google Reader's closure due to declining usage.
Well, a bit of history and now I will share a new feeds aggregator that I found to fit my requirement just fine.
Meet "The Old Reader".
Click here to go to the main page.
June 03, 2013
(Naik) Harga Susu Tepung Dinaikkan
Beberapa pengeluar jenama susu tepung dikenalpasti telah mula menaikkan harga produk tenusu mereka. Antara mereka termasuklah jenama terkenal Dutch Lady (Growing Up 123, 456)yang akan menaikkan harga barangan mereka sehingga 5%. Harga produk yang bermula dari RM25.20 akan meningkat ke RM26.40.
Maklumat dari pengedar, pada bulan July 2013 pihak Nestle & Mead pula akan menaikkan harga barangan mereka. Tiga pembekal utama telahpun menaikkan harga WYETH S26 600gram dari RM58 ke RM63.50, Abbott 1.8kg dari RM134 ke RM142, dan Dumex 900gram dari RM19 ke RM21.
Berita ini hanya disiarkan di suratkhabar berbahasa cina.
(ASUS) FonePad Note FHD 6 Powered By ATOM
Asus revealed the new 6-inches ASUS FonePad Note FHD 6 powered by Intel ATOM Z2560 at Computex 2013 today. It comes with a digital stylus for sketching and notetaking which we might say as about the same as Samsung Galaxy Note itself.
Below are the specifications of the Asus FonePad Note :
Intel Atom DualCore x86 Z2560 1.6GHz
2GB RAM
6-inch 1080p Full HD Super IPS+ display at 450 nits brightnes
3G Voice & Data
Stylus with exclusive Asus Apps
1.2MP front camera
8MP rear camera
Front-facing Stereo Speakers (Top & Bottom frontal speakers)
DC-HSPA+ (42 Mbit/s download speed)
Price and availability are still unknown.
(Tembakau) Harga Rokok Dinaiktaraf
Produk Tembakau Berproses atau lebih dikenali sebagai rokok tembakau telah ditaiktarafkan harganya untuk menangani masalah peningkatan kos oleh British American Tobacco Malaysia (BAT Malaysia) sebanyak 3 peratus berkuatkuasa hari Isnin, 3 Jun 2013.
Mengulas mengenai kenaikan harga tersebut, Datuk William Toh, Pengarah Urusan, BAT Malaysia berkata, "Sama seperti semua syarikat lain, BAT Malaysia berdepan dengan tekanan inflasi, kos buruh dan kos input, yang membawa kepada peningkatan kos operasi".
Selain itu, kuantiti industri tembakau sah juga terjejas akibat peningkatan berterusan perdagangan rokok haram (pada 2012 berada pada 34.5 peratus), katanya dalam satu kenyataan hari ini.
"Bagi menangani peningkatan kos dan tekanan perdagangan rokok haram kami memutuskan untuk menaikkan sedikit harga sebanyak 3.0 peratus bagi semua jenama rokok kami," kata Toh.
Harga baru rokok sekrang adalah seperti berikut:
DUNHILL RM10.50
KENT RM10.50
BENSON & HEDGES RM10.50
PETER STUYVESANT RM9.00
PALL MALL RM9.00
PALL MALL Plain RM10.90
LUCKY STRIKE RM10.90
ROTHMANS INTERNATIONAL RM10.90.
Subscribe to:
Posts (Atom)