Friday 14 October 2011

Transfer Files in Linux (Samsung Galaxy)


Works on 32bit and 64bit Linux. Just a quick guide on how to configure Linux for file transfers using MTP. The instructions and config is intended for Ubuntu Natty 32bit and 64bit, though the same process will work on other platforms - the only real difference being the package manager commands and possibly the config file locations.
The attached files are for the Galaxy Tab 10.1v but should work for the 10.1g / 10.1 as well. See the end of the post to learn how to modify this config to work for other devices.

How to configure for gMTP and other Media Sync tools

1) Install aptitude
sudo apt-get install aptitude
2) Install mtp-tools and mtpfs
sudo aptitude install mtpfs mtp-tools
3) Download this  file: 98-gtab.zip for 32bit Linux or 98-gtab.rules-AMD64.zip for 64bit Linux to your desktop.
4) Extract the 98-gtab.rules file to your desktop
5) Copy the rules file to /etc/udev/rules.d/
sudo cp ~/Desktop/98-gtab.rules /etc/udev/rules.d
6) Reboot
7) Connect your Tab
8) Run the following command to confirm it is working:
ls /dev | grep gtab
This command  should return "gtab" if successful. If not, follow the "Modifying" guide below.
9) Download / install gMTP
sudo apt-get install gmtp
10) Open gMTP and select "connect" from the menu

Setting up for Automount (Optional, but recommended)

Before follow these instructions, you must have completed Steps 1-8 above.
1) Edit your fstab file to add your gtab:
sudo gedit /etc/fstab
2) Add this to the end of the file:
#gtab
mtpfs /media/gtab fuse user,noauto,allow_other 0 0
3) Save and exit
4) Open fuse.conf for editing:
sudo gedit /etc/fuse.conf
5) Find the following line and remove the #
#user_allow_other
6) Save and exit
7) Open and edit the groups file:
sudo gedit /etc/group
8) Find the details for the group 'fuse' and append your username to the end of the line eg.
fuse:x:104:
9) Save and exit
10) Create the folder to mount your Tab:
sudo mkdir /media/gtab
11) Take ownership of the folder:
sudo chown :users /media/gtab
12) Reboot
13) Plug in your Tab.
14) Click on the Places menu and click gtab.
15) You're in business!

Modifying for other devices

If the above doesn't work immediately on the 10.1g / 10.1 (I have only tested on the 10.1v), you can easily edit the rules file to support your device.
1) Install lsusb
sudo apt-get install lsusb
2) Run lsusb
lsusb
3) Check the output of this command to find your device. The 10.1v is shown like this:
Bus 001 Device 010: ID 04e8:6860 Samsung Electronics Co., Ltd
4) Make a note of the Vendor and Product IDs. In the example above, the vendor ID is 04e8 and device ID is 6860 (note 04e8:6860 in the output).
5) Open the rules file for editing (if it's not already in /etc/udev/rules.d, copy it there now)
sudo gedit /etc/udev/rules.d/98-gtab.rules
6) Find this line
ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="6860", MODE="0666" SYMLINK+="gtab"
7) Replace the Vendor ID (04e8) and Product ID (6860) with the ones that you got from step 3 above.
8) Save and exit
9) Reboot
10) Follow step 7 onward in the first guide above

32bit RULES FILE:

ACTION!="add", GOTO="gtab_rules_end"
SUBSYSTEM!="usb|usb_device", GOTO="gtab_usb_end"
ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="6860", MODE="0666" SYMLINK+="gtab"
LABEL="gtab_usb_end"
LABEL="gtab_rules_end"

64bit RULES FILE:

ACTION!="add", GOTO="gtab_rules_end"
SUBSYSTEM!="usb|usb_device", GOTO="gtab_usb_end"
ATTRS{idVendor}=="04e8", ATTRS{idProduct}=="6860", MODE="0777" SYMLINK+="gtab"
LABEL="gtab_usb_end"
LABEL="gtab_rules_end"
READ MORE - Transfer Files in Linux (Samsung Galaxy)

Android Tips and Trick (Resume)



There are many people out there that frustrated and stuck by the lack of memory on theirAndroid gadget, or may be by its slowness, or short battery life? With these 'simple' steps you'll have over 75 installed apps on your gadget (several of them over 1 MB each) and still have 15 MB free. Let's begin the trick (please use with your own rrisk!)

Disable wifi and bluetooth

Install the free WiFi OnOff widget. After installing from the Android Market, do a long press on your home screen, select "Widgets" then "WiFi OnOff". Enable wifi only when you actually need it. To make sure you don't forget to disable wifi when there is no wifi signal, install wifi status. You do not have to run this app, it works as soon as it is installed.

Disable also bluetooth when you don't need it

You can also disable GPS but this is much less important since the battery is drained only when an application such as Google Maps effectively uses the GPS.

Disable sync

During syncing my G1 is very unresponsive, hardly usable. So I keep sync disabled by default, and I enable it manually with AutoSync OnOff when I know I won't need the phone for the next few minutes. ]

Sync only your own calendar

Open Calendar, select Menu->More->My calendars->Menu->Remove calendars. Select all calendars except your own and click OK. This can save a lot of memory, but also makes syncing much faster. Do not just disable the other calendars, you must actually remove them.

Sync only your inbox

I do not use the GMail app on my phone because it's not manageable when receiving several hundred messages per day. But if you do use the GMail app, sync only your inbox, not all your labels. Open the GMail app, select Menu->Settings->Labels. Sync the mimimum number of days and of labels.

Disable the on-screen keyboard

Disable the on-screen keyboard in Settings->Locale & text->Android keyboard. This makes the phone much more responsive. Obviously this is possible only if you have a real keyboard, as on the G1.

Reduce screen brightness

Install the free Brightness Level widget. (See wifi above for widget install.)

Kill unused processes

Install TasKiller and kill the processes you do not need. Android kills processes automatically when RAM becomes low but this is generally too late, the phone is already slow.

Reboot

If you run out of memory or your phone gets very unresponsive, try rebooting (long press on the red phone key).

Move stuff to /cache or SD card (for experts only)

The above sections are perfectly safe. If you still run out of memory, you need to get root on your Android device to be able to free a lot more memory by moving stuff to /cache or to the SD card. Do this only if you have enough Linux expertise. You can brick your phone if you make mistakes. The simplest way to get root is to install a custom ROM. Search for android rooting to find many tutorials, including a video for 1-click install. However I personally prefer a much less intrusive method, which requires more manual work and Linux expertise, but makes minimum changes to the system instead of replacing it completely.
  • Get command line tools
Download and install the Android SDK to get adb. If you are using Windows, download and install the USB drivers. Then install busybox on your phone. This gives you many useful command line tools and a better shell (ash).
  • Get root
If you have an ADP1 (Android DevPhone 1) you can install this kernel update, which contains the desired /system/bin/su. If you have another phone you will have to follow one of the rooting tutorials mentioned above. The OTAs (Over The Air system upgrade) may disable root. To make sure you won't receive and install one by accident you can disable Background Data in Settings->Data synchronization. But you have to enable it temporarily whenever you want to use the Market app.
  • Cleanup /data/dalvik-cache
If you run out of memory, try first to remove everything in /data/dalvik-cache then reboot immediately. The necessary .dex files will be recreated automatically. I had about 15 MB of old unnecessary .dex files.
  • Move other data to the SD card
Applications often keep a large cache under /data/data/. Unfortunately many of them do not provide a way to clear the cache without clearing at the same the configuration parameters for the app. (You can clear the whole data in Settings->Applications->Manage applications.) You can find which applications use most space with:
du -sk /data/data/* | sort -rn | head
then move the biggest caches to the SD card as in the following example:
cd /data/data/com.android.vending
rm -R cache
mkdir /sdcard/cache/market
ln -s /sdcard/cache/market cache
Moving stuff to the SD card is unsafe since all apps can read and write its contents. So only non-sensitive data should be moved there.
  • Delete old system apps
If you have already upgraded Google Maps from the Market, you can delete /system/app/Maps.apk and /data/dalvik-cache/system@app@Maps.apk@classes.dex since the new version uses different file names. You must remount /system rw as shown below to be able to delete stuff from /system/app. Be very careful when modifying /system, you can break your phone. Don't forget to remount it ro afterwards.
  • Move .so files to /cache
/cache is used for OTA updates. But if you don't want OTAs you can move some stuff from /data to /cache, because /data is generally full and /cache generally empty. I do this for .so files which can't be put on the FAT32 SD card, such as the code of the nice Armadillo Roll 3D game. I run once:
cd /data/data/com.qualcomm.qx.dillo/lib
mkdir -p /cache/lib
cp -p libdillo.so /cache/lib/
chown 1000:1000 /cache/lib/libdillo.so
chmod 444 /cache/lib/libdillo.so chmod 555 /cache/lib
ln -sf /cache/lib/libdillo.so .
then once and at each reboot:
chmod 771 /cache
Do this only for games, not for essential system apps, because /cache might be cleaned by an OTA, and the access rights on /cache are reset to 770 at each reboot.
  • Move the apps cache to /cache
Most of the data space is taken by the apps cache /data/dalvik-cache. If you are still running out of memory after cleaning this directory and rebooting, you can move the dalvik cache to /cache/dalvik-cache. However this only works if /cache/dalvik-cache has 771 access rights but each reboot resets them to 770. (If you don't know what 771 and 770 mean, this section is too dangerous for you, please skip it.) So you need to run a script early in the reboot phase to change the access rights back. (Details ommitted: you must do this only if you're desperate and you have already applied all other methods to save memory.) This removes the need for a special ext2 partition on the SD card, but it prevents OTAs which need /cache.
  • Command line editing
To get command line editing and automatic execution of profile on the phone I use a rather indirect method, inspired from this blog. (There might be a simpler solution but I have not found it yet). On the phone I did once:
mount -o remount,rw /dev/block/mtdblock3 /system
echo 'root:xxx:0:0:root:/data/root:/system/bb/ash' > /etc/passwd
ln -s /data/root/.profile /etc/profile
echo root::0: > /etc/group
touch /etc/shadow
passwd root
chmod 4755 /system/bb/su
mount -o remount,ro /dev/block/mtdblock3 /system
with the appropriate hashed password instead of xxx. /data is mounted with the nosuid option, so I had to put a setuid copy of busybox in /system/bb/su. I can now put arbitrary commands in /data/root/.profile without having to remount /system in rw mode, such as:
export PATH=/data/bb:/data/root:/sbin:/system/bin
export HOME=/data/root
PS1='# '
alias cp='cp -p'
Then on my laptop I run the following script:
#!/bin/bash
adb -d forward tcp:4444 tcp:23
adb -d shell "exec /data/bb/telnetd -F -b 127.0.0.1 -l /data/bb/login" &
sleep 1
telnet localhost 4444
adb kill-server
The tab key and the arrows keys then magically work. Note that the password typed in telnet goes over the USB cable only, not over ethernet. If I need root in the Terminal Emulator I just have to type
/system/bb/su -
The tab key and the trackball work. I get the correct PATH and aliases, and also the correct uid (0 for root). The original /system/bin/su doesn't give the correct uid even when installed setuid root. Do not forget to disable Settings->Applications->Development->USB debugging once you have finished otherwise someone else can get root access if you lose your phone and adbd runs as root.

Useful apps

Once you have made your phone responsive and saved a lot of memory, you can install the following apps that I found useful (more to come). •Steel excellent browser.
•Astro the best file manager.
TasKiller kill processes to save memory.
•AndNav2 maps with local cache if you don't have 3G.
•sipdroid VoIP over 3G or wifi.
SnapPhoto Free takes crisp photos.
•Hugoban go problems and pro games.
•KoalaGo watch go games on IGS
•Contact owner show your name on locked phone.
SK Sync Client sync phone and workstation through wifi.
APNdroid essential if you have no data plan or when roaming.
Proxoid simple USB tethering (http proxy) that does not need root


Thanks to : http://gailly.net/android/android-tips.html
READ MORE - Android Tips and Trick (Resume)

Monday 10 October 2011

CyanogenMod 7 for the Nexus S - V7.0.3 (5 May 2011)


CyanogenMod is a free, community built, aftermarket firmware distribution of Android 2.3 (Gingerbread), which is designed to increase performance and reliability over stock Android for your device.
This version is a release candidate, but you will find it stable for everyday use.
#include <std_disclaimer.h>
/*
 * Your warranty is now void.
 *
 * I am not responsible for bricked devices, dead SD cards,
 * thermonuclear war, or you getting fired because the alarm app failed. Please
 * do some research if you have any concerns about features included in this ROM
 * before flashing it! YOU are choosing to make these modifications, and if
 * you point the finger at me for messing up your device, I will laugh at you.
 */

CyanogenMod is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. CyanogenMod does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for CyanogenMod is available in the CyanogenMod Github repo. And if you would like to contribute to CyanogenMod, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
Instructions:

First time flashing CyanogenMod 7 to the Nexus S, or coming from another ROM?
Root the device and install ClockworkMod Recovery. Instructions are available here.
  • Perform a NANDroid backup of your current ROM.
  • Format the system, data & cache partitions of your device.
  • Perform a factory reset.
  • Flash CyanogenMod.
  • Optional: Install the Google Apps addon package.

Upgrading from earlier version of CyanogenMod 7?

Perform a NANDroid backup of your current ROM.
Flash CyanogenMod (your Google Apps will be backed up & restored automatically).
Issues?
Experience issues? Please provide the following info:
If the device was hard reboot, please provide the file "/proc/last_kmsg".
If the device was soft reboot or is "bootlooping", please run a logcat and provide the full ourput.
Please use Pastebin when possible.

CyanogenMod:

Latest version: update-cm-7.0.3-NS
Download: link
Mirror: link
MD5sum: bd6dfc83ae11fdeac8bf6b9662363946

Google Apps addon:

Version: gapps-gb-20110307
Mirror: link
Mirror: link
Source : http://tinyurl.com/3n2sqjt

READ MORE - CyanogenMod 7 for the Nexus S - V7.0.3 (5 May 2011)

Rooting Your Android



Advantages and Disadvantages Root Mode
Advantages
  • Unlimited access to the Android system.
  • Installing applications on memory card and install applications that need root certainly.
  • Un-install the default applications vendor.
  • Backup App + System Installation custom ROM.
  • Access to system files is fully Android.
  • Overclock overall processor performance (but make batteries become more wasteful consumption).
Disadvantages
  • Warranty missing :D
How to rooting for windows
  • Install driver Gio / software Kies
  • Have not installed Microsoft. NET Framework V.2??? download it here
  • Download superoneclick here or this
  • Set Android USB: Settings> Applications> Development, check USB Debugging / To Debug  the USB
  • Plug USB to PC  and handphone, wait until the driver installation is complete
  • Extract superoneclick and run as administrator (if Win7/Vista), then click the root ... wait until the process is complete "root files have been installed"

Rooting in Windows
Congratulations, you has already completed the process of rooting !!  Before access the root,  restart your handphone first. :D

Use with your own risk!!!  :army:

READ MORE - Rooting Your Android

Friday 7 October 2011

Launch of Samsung Galaxy Tab 10.1 on June 24


This powerful tablet boasts a brilliant 10.1-inch HD touchscreen (1,280x800) display delivering sharper movies, better game graphics, and crystal clear video chats. At just 0.34-inches, it is the world’s thinnest mobile tablet. It comes with AndroidTM 3.1 Honeycomb with Android MarketTM providing access to more than 60,000 apps for Galaxy Tab 10.11 and an immersive, lightning-fast Web browsing experience.
“Samsung Galaxy Tab 10.1 expands Sprint’s tablet innovation, growing our lineup to five options,” said David Owens, Sprint vice president of product development. “This gives Sprint customers a one-stop-shop for all of their tablet needs. Galaxy Tab 10.1 is a dynamic tablet, but it is even more amazing when paired with the Sprint 4G network through our OverdriveTM Pro 3G/4G Mobile Hotspot by Sierra Wireless or MiFi®3G/4G Mobile Hotspot by Novatel.”
Galaxy Tab 10.1 is designed with a brilliant 10.1-inch HD touchscreen display with WXGA 1,280x800 resolution, delivering vibrant colors and crisp clarity. The aspect ratio of the display is ideal for widescreen viewing of movies, TV shows and photos. It features two cameras – a rear-facing 3-megapixel camera with camcorder, flash and zoom, and a front-facing, 2-megapixel camera – enabling video chat.
Additional key features include:
  • Android 3.1 Honeycomb offering faster and smoother transitions between different applications, more intuitive navigation to and from home screens, and broader support of USB accessories, external keyboards, joysticks and gamepads
  • Android Market for access to more than 60,000 applications for Galaxy Tab 10.1
  • Mobile EmailIMAP and POP, GmailTM, MSN Hotmail® and Yahoo!®
  • Google Mobile Services, including YouTube, GmailTM, Google TalkTM and Google MapsTM
  • HD camcorder with 720p video capture
  • Full HTML Web browser with Google Search and Adobe® Flash® Player (10.3)
  • 1GHz Tegra 2 dual-core processor
  • 1GB of RAM, 16GB of storage
  • Wi-Fi enabled
  • Stereo Bluetooth Technology 2.1
Galaxy Tab 10.1 customers can expect a software update planned for this summer that will enable more favorite features and services including:
  • Customized User Experience “Samsung TouchWiz UX”
    Samsung’s TouchWiz user experience is designed with a Live Panel menu for customizing the home screen of Galaxy Tab 10.1with digital pictures, favorite websites and social network feeds. In addition, the TouchWiz UX includes a “Mini Apps” tray of commonly used features, such as task manager, calendar and music player, which can be launched while other major applications are already in use.
  • Samsung Media Hub
    The software upgrade will introduce the evolution of Samsung’s popular movie and TV content service, known as Media Hub. Media Hub has been redesigned with a new user interface for even easier downloads of rented or purchased content. The new version of Media Hub also includes an HD Extender, which allows the user to play back Media Hub content on TV through an HDMI cable from the Galaxy Tab 10.1 dock or adapter.
  • Readers Hub & Social Hub
    It will also gain access to Samsung’s Readers Hub service, which is a robust library filled with more than 2.2 million books, 2,000 newspapers and 2,300 magazines. Also, the software upgrade will install Samsung’s Social Hub service, which aggregates email, instant messaging, contacts, calendar and social network connections into a single interface.
  • Versatile Content Sharing
    Samsung Galaxy Tab 10.1 will also receive Samsung’s Allshare service, for seamless content transfer between the tablet and other DLNA-enabled devices, such as HDTVs, monitors and digital cameras. The software upgrade will also transform Galaxy Tab 10.1 into a device capable of accepting streaming content from a TV to the tablet itself.
Also can be read at here!
READ MORE - Launch of Samsung Galaxy Tab 10.1 on June 24

Samsung Galaxy Tab - A Slightly Better Tablet Than An iPad 2




Although I bought this for my wife as a birthday present during pre-release sales in NYC, I've since used it far more extensively than her so I've purchased a second Tab 10.1 from Amazon for myself. As a background, I also have a good amount of experience using aMotorola Xoom (none with the other Android tablets though) and an iPad 2. Anyway, here are my thoughts comparing the Tab 10.1 with the iPad 2. I won't do a comparison with the Motorola Xoom (which, as of writing this review, is the Tab 10.1's major Android competitor) as the two products are really similar. I'll leave the Xoom/Tab 10.1 decision to you. Here are my thoughts:

Operating System/Interface/Web Browsing -


Slight edge to the Tab 10.1 running Android 3.1 (Honeycomb). This may just be more of a personal preference as I don't like products (like the iPad 2) which are locked down. I feel a company has no right to tell a consumer how he/she is allowed to use a product (as Apple does with theirs). Anyway, Android 3.1 OS is blazing fast and going along with the Android Open Source Project's philosophy, the OS and by rote, the Tab 10.1, is ultimately configurable. Out of the box, you can easily personalize an Android 3.1 tablet any way you want, and if you can't, there is free software out there to let you do it -- there is no hacking/jailbreaking required. The Tab 10.1's interface is also a lot cleaner than the iPad 2's which can get downright cluttered the more apps you have installed. I'll also note that there doesn't seem to be a discernible difference in the actual speed/performance (loading pages, etc) of the two products. So, we're pretty even so far, but Tab 10.1 clearly gets the edge for one thing -- Flash. Enough said.

Battery life -

Strong edge to iPad 2. Both the Tab 10.1 and the iPad 2 are rated for 10 hours. Keeping the screen at about 75% max brightness, I seem to get between about 7 to 8 hours on the Tab 10.1 and 9 to 10 hours on an iPad 2. This may be a result of the screen brightness as I've noticed the Tab 10.1 has a slightly brighter screen at 100% than the iPad 2. Regardless, the iPad 2 has better battery life.

Resolution/Screen -

Strong edge to the Tab 10.1's 1280×800 screen vs the iPad 2's 1024x768 one. If you think this is negligible, you are very wrong. This means the Galaxy Tab 10.1 screen has a 30% greater resolution than the iPad 2. You'll notice this difference in every thing you do -- not just when watching movies and photos. The increased resolution causes much less eye strain especially when reading webpages. Additionally, the Tab 10.1's widescreen aspect ratio seems to work a lot better for watching anything in HD. It's a shame the iPad 2 uses the dying 4:3 aspect ratio as there is a lot of wasted real estate on the screen in the form of black bars when watching anything in widescreen. With the Tab 10.1, the screen is entirely filled with video.

Cameras -

Strong edge to the Tab 10.1. The Tab 10.1 blows the iPad 2 out of the water here and it's not even close. The Tab has a front-facing 2.0 megapixel (vs iPad 2's 0.3 megapixel) camera and rear-facing 3.0 megapixel (vs iPad 2's 0.7 megapixel) camera. Sure, you're never going to replace your P&S/SLR/video camera with a tablet, but it is nice to have a camera on there that can take a decent picture/video when you're in a pinch.

Portability -

Even. The Tab 10.1 is a negligible 0.03 lbs lighter and 0.2mm thinner than the iPad 2.

Cachet -

Strong edge to the iPad 2. Apple has a monopoly on this, it seems. Apple is just the trendier product. Odds are nobody will look at aGalaxy Tab 10.1 and think "Wow, that looks really nice. I need to get me one of those." I'm not saying the Tab 10.1 is ugly, but the brushed metal finish on the iPad does feel and look a bit nicer.

Price -

Even. I'm really surprised Samsung didn't undercut the iPad 2 prices, even by $50.
Is this the iPad 2 killer as has been reported here and there in the media? Honestly, no, but that's more because most Apple consumers purchasing iPad 2s are brand loyal -- not necessarily looking to buy the best product. I really wish I could rate the Tab 10.1 with 4.5 stars. For reference, if I were to write a review of an iPad 2, I would give it a 4 stars. Giving the Tab 10.1 5 stars seems a bit too generous as I feel the lack of an SD slot and slight plasticky feel are noticeable drawbacks, as is the price (which isn't lower than an iPad 2 with the same amount of memory). And giving the Tab 10.1 4 stars seems a disservice as I feel that it is ultimately an outstanding tablet and, in my opinion, definitely has an edge over the iPad 2. (Read the original review here!)
READ MORE - Samsung Galaxy Tab - A Slightly Better Tablet Than An iPad 2

Flash the Samsung Galaxy Tab FW to Enable Phone Calls



Samsung has released the Galaxy Tab Euro version with unbranded version. This version ofGalaxy Tab not allowed us to make a phone calling. In this tutorial, we'll show youo how to enabling the phone calls option ( and 3G data + 850/1900Mhz WCDMA ) in this tab. Tested and working for the following tabs: Bell, Rogers.

What do you need?

Download the following package: http://rapidshare.com/files/444576369/Samsung_TAB_Euro_Flash_Package.7z
What's in it?
  • Kies_2.0.0.11011_16_5.exe
  • Odin3 v1.31
  • P1000XWJJ4
  • P1000XXJK5
  • modem_bell_i9000

Preparation:

  1. After downloaded the package and extracted with 7zip Install and then reboot: Kies_2.0.0.11011_16_5.exe (this will install properly drivers x86 or 64 depending on your OS configuration, needed for your Tab and Odin to communicate correctly ).
  2. Extract Odin3_v1.31_PITupdate and put the all the files contained in P1000XWJJ4 into Odin3 v1.31 source folder.
  3. Set you Samsung Tab into "Download mode" ( Hold volume down and power button until the device boot up. You'll see a yellow android sign and some warning text like :do not turn off target) and connect it to your PC with the USB cable.
  4. Start Odin3 v1.31.exe and make sure that the com post is yellow highlighted and check off Re-partition.
  5. Load the following files as shown in the screenshot below:
  6. Hit Start and then relax, hopefully it is going to be ok and in about 2. min and 50 you'll get a green highlight and pass stamp in the same Odin screen which will also reboot the Tab. It will be In Russian, but not to worry. keep reading below.
  7. Turn offf the tab and set it to download mode again. Transfer over the Odin folder the P1000XXJK5.tar file re-start Odin, Connect the phone.
  8. Leave the "Re-partition" unticked and load into "PDA" the tar file. Hit "Start" and wait again about 2min and 50 sec, you'll get the same green pass and the tab will reboot.
  9. This is the final step. now you are going to flash the tab with the right Modem files. Again like Put the Tab into download mode unpack the modem_bell_i9000.zip into Odin folder then start Odin up and select "phone". Load the modem.bin up and hit Start. Wait for the Green pass and you are DONE!!!
In order to have Internet and mms going you need to set the right APN settings. Google your provider for specifics. Bell canada has the following Settings:
Name: Bell Internet
APN: pda.bell.ca
Proxy: web.wireless.bell.caPort: 80
MMSC: http://mms.bell.ca/mms/wapenc
MMS proxy: web.wireless.bell.ca
MMS port: 80
MCC: 302
MNC: 610
APN type: Internet + mms
Authentication Type: none
Are you wondering where the APN settings are?
1. Press the Menu key
2. Tap Settings3. Tap Wireless controls
4. Tap Mobile networks
5. Tap Access Point Names
6. Press the Menu key
7. Tap New APN.
8. Enter your settings

FAQ

If you see missing apps from the market it is because XXJK5 is not an official firmware and the market is not showing protected apps.To change this you will need to edit the build.prop file under /system and change the fingerprint.
If you are lazy you can do the following:
1) root the tab
2) install busybox from the market, open the app and install busybox from within the app.
3) install GST from the market
4) go top step 6 in the app "change your fingerprint" ad run the script
5) go to setting > applications > manage applications > ALL > find "market", force stop and clear data
6) reboot the tab, reopen the market - you should see all apps now.


Gratitude : http://bit.ly/fXWbhT
READ MORE - Flash the Samsung Galaxy Tab FW to Enable Phone Calls

Thursday 6 October 2011

How To Unlock the Galaxy Tab 10.1v Bootloader


This process will factory reset your device and wipe the internal memory. Please do with your own risk :).
Prepare:
For you  Windows user, you might want to refer to this post. If you're a Linux user, you could try flashing using Heimdall but AFAIK, this has not been tested.
Method 1
  • Download and install the JAVA SDK from here http://www.oracle.com/technetwork/ja...ads/index.html
  • Download the Android SDK from here http://developer.android.com/sdk/index.html
  • Follow the instructions here to download the USB drivers http://developer.android.com/sdk/installing.html
  • Edit the “<PATH TO ANDROID SDK>\extras\google\usb_driver\android_winusb.inf” file and copy/paste the following lines and add them to the [Google.NTx86] section (for 32bit Windows) and/or [Google.NTamd64] (for 64bit Windows).
  • Download the fastboot zip attached to this post (includes both Win and Linux version) and extract the files to your "<PATH TO ANDROID SDK>\tools" folder

Do not leave any blank lines before the first “;”
;
;Galaxy Tab 10.1v
%SingleAdbInterface% = USB_Install, USB\VID_04E8&PID_6860&REV_9999&MI_01
%CompositeAdbInterface% = USB_Install, USB\VID_04E8&PID_6860&MI_01
%SingleAdbInterface% = USB_Install, USB\VID_04E8&PID_6601
%SingleAdbInterface% = USB_Install, USB\VID_0955&PID_7000
Now to get started:
1) Power off your tablet
2) Hold the VOLUME DOWN button and press the POWER button (your tablet will power on and you will see the BACKUP and USB icons)
3) Use VOLUME DOWN to select the USB icon, and then press VOLUME UP to confirm the selection.
4) You should now be in fastboot mode (the word FASTBOOT should appear somewhere in the top left corner)
5) If Windows doesn’t automatically detect the device, go to device manager and find the ‘Fastboot’ device. Right-click and select update driver, choose to manually install and browse to the “<PATH TO ANDROID SDK>\extras\google\usb_driver\” folder.
6) Open a command prompt and do
cd "<PATH TO SDK FOLDER>\tools"
fastboot devices
7) Confirm that your device is detected. If it says “waiting for device”, you need to check that the drivers are installed correctly.
8) In the Command window, type:
fastboot oem unlock
9) On your Tab, Use the VOLUME DOWN button to select YES and then press VOLUME UP to confirm
10) VIOLA! You are unlocked. Note that these instructions are a work-in-progress.
Get your Tab into fastboot mode;:
1) Power off your Tab and power it back on while holding VOLUME DOWN
2) Highlight the USB icon by pressing VOLUME DOWN
3) Press VOLUME UP to confirm your selection (Fastboot Mode)
4) Download the Tegra 2 compatible fastboot (attached to this post) and put it somewhere in your path (eg /usr/bin)
5) Plug your device into the PC using the provided USB cable.
6) Open a terminal and type
fastboot devices
this will list the device but it will be a strign of numbers
7) type
fastboot oem unlock
your tab will then have a yes no option to unlock the bootloader select yes with VOLUME DOWN, and press VOLUME UP to confirm
8) Your bootloader is now unlocked power off the device and power it back on the device will boot and have an unlocked padlock when loading. Also this will factory reset your device this includes everything on the 16 gb storage.
Now that you're done head over here to get root access.
Attachment: Fastboot-Linux-and-NVIDIA
READ MORE - How To Unlock the Galaxy Tab 10.1v Bootloader

Wednesday 5 October 2011

How To Root the Galaxy Tab 10.1v



As always, mucking with your device at this level is risky. If you follow this process, you do so entirely at your own risk. I accept no responsibility for any detrimental effects resulting from following this process of rooting the galaxy tab, or for any problems associated with the updated files. Only if you accept these risks should you use these instructions.
NOTES:
I developed and followed this process on Ubuntu Natty, 64bit. I see no reason why it should not work on any other platform, since the only tool used is fastboot and the syntax for fastboot is the same on any platform. if you need to know how to get fastboot working, there are already many guides for that (see my how to unlock your bootloader thread, for example)
BUTTON CONFUSION:
When in landscape mode, with the camera at the top, the power button is on the left ‘vertical’ side of the tab. On the top is the volume rocker. In this orientation:
- The LEFT side of the volume rocker is VOLUME DOWN
- The RIGHT side of the volume rocker is VOLUME UP
This might seem obvious, but to anyone who is used to phones, this is the opposite, since they were designed to be used in Portrait mode.
PREPARE:
1) With your Tab in fastboot mode (step 1 of “GETTING ROOT” below), make sure you have a working fastboot implementation:
[CODE]fastboot devices[/CODE]
If all is well, you should see your device serial number. If there is a problem, you won’t get any response.
2) Downlad the two files attached to this thread
3) Create a folder on your desktop called “root”
[CODE]mkdir ~/Desktop/root[/CODE]
for Ubuntu or
[CODE]md %userprofile%\desktop\root[/CODE]
for Windows
This will be referred to as the working directory throughout the rest of this guide
4) Copy skitzandroid-10-1v-root.zip to your working directory (DO NOT UNZIP!)
5) Extract the skitzandroid-recovery.img file from skitzandroid-stock-recovery.zip to your working folder. Your working folder should now have 1 IMG file and one ZIP file.
6) This was an afterthought – Make sure fastboot is somewhere in your path (ie can be executed from anywhere). To test, ‘cd’ to any random folder and type ‘fastboot’ and make sure it runs.
7) Copy the skitzandroid-10-1v-root.zip file to the root of your sdcard. You can eithe drag/drop, or run:
[CODE]adb push skitzandroid-10-1v-root.zip /sdcard[/CODE]
from your working directory
…now the easy part
GETTING ROOT:
1) Power off your Tab and power it back on, while holding the VOLUME DOWN button.
2) When the DOWNLOAD / FASTBOOT icons appear, press VOLUME DOWN again to select FASTBOOT icon (the one with the USB logo) and press VOLUME UP to confirm selection.
3) Confirm you are now in fastboot mode and do a:
[CODE]fastboot devices[/CODE]
If all is well, you should see your device serial number.
4) Open a terminal / CMD prompt and CD to your working folder
[CODE]cd ~/Desktop/root[/CODE]
for Ubuntu or
[CODE]cd %userprofile%\desktop\root[/CODE]
for Windows
5) Run the following command:
[CODE]fastboot boot skitzandroid-recovery.img[/CODE]
..and wait. It might not look like anything is happening but it is.
6) You should now have a recovery menu. Use the volume rocker (up/down navigates menu options) to select “Install zip from SDCARD” (or something like that – if someone can post the exact menu item wording, I will update the guide). Press (tap!) the POWER button to confirm the menu selection
7) Navigate to the root of your internal storage (/sdcard), select the skitzandroid-10-1v-root.zip file and press (tap!) the POWER button to confirm selection.
8) Once complete, use the Volume rocker to select “REBOOT” from the menu and press (tap!!!) the POWER button to confirm selection.
9) YOUR’RE DONE. Press the thanks button on this thread to continue ;)
TESTING:
1) Check your apps menu to confirm the existence of SuperUser app.
2) With the Tab attached to your PC via USB cable, do the following:
[CODE]adb shell
su[/CODE]
And watch the screen on your Tab for a SuperUser prompt. If you see this, congratulations!
If you have never rooted a phone/tablet before, go get Titanium Backup Pro and ROM Manager from the market. As soon as the custom ROMs start flowing in, you’ll be all set to go.
Source.
READ MORE - How To Root the Galaxy Tab 10.1v

Monday 3 October 2011

Galaxy Tab users to get TouchWiz update


(Credit: Samsung)
Owners of Samsung's Galaxy Tab 10.1 tablet will receive an update starting tomorrow that will deliver the TouchWiz UX interface and a host of other enhancements.
Sent OTA (over the air), the update package will include Samsung's revamped Media Hub service, Samsung Kies 2.0 support for PCs and Macs, and mobile features for the enterprise crowd.
The most notable feature of the update, the customizable TouchWiz interface, runs on top of Android 3.1 Honeycomb. Among its many options is a Live Panel, which offers home screen widgets that show you the latest news, weather, e-mail, social network updates, and more.

TouchWiz also kicks in a mini apps tray for fast access to the calendar, clock, calculator, task manager, and other frequently used items. The new clipboard lets users copy and paste images, Web pages, and other content from one place to another. And the Indicator Quick Panel allows quick control over the sound, brightness, and other settings.
The redesigned Media Hub provides access to more than 5,000 movies and TV shows, according to Samsung. Users pay for content once and can then share it all among five other Media Hub-connected tablets or smartphones. Using an HDMI dongle, Tab owners can also hook up their tablets to an HDTV.
Samsung Kies 2.0 will offer more options for sharing and synchronizing files from the tablet with both PCs and Macs. Tab users will be able to sync content wirelessly via Wi-Fi or Bluetooth. The latest update can synchronize contacts from Microsoft Outlook, Gmail, and Yahoo mail and use a library to store videos, music, and other hefty  files.
Finally, IT administrators who manage the Tab at the workplace should appreciate the update's new enterprise features. The tablet will now offer full support for Microsoft's Exchange ActiveSync version 14, include built-in encryption to protect important files, and offer the ability to connect to a corporate network via Cisco's Virtual Private Network (VPN) software.
Tab owners who want to grab the update as soon as it's available can set up a Samsung account through the company's Web site. You'll then receive e-mail notification telling you when your device can be upgraded and explaining how to do it.
Beyond offering a new update for the Tab 10.1, Samsung finally seems about ready to launch its 8.9-inch tabletAmazon's U.K. site is now listing the smaller tablet as in stock on August 12, available for preorder now, and selling for 605.34 pounds ($988).
We've reached out to Samsung to ask when the new tablet might reach the shores of the U.S. and will update the story if we hear back.

READ MORE - Galaxy Tab users to get TouchWiz update

How to take native screenshots on your Touchwiz Galaxy Tab 10.1


Samsung Galaxy Tab 10.1
The Samsung Galaxy Tab 10.1 Touchwiz update finally added native screenshot support--hoorah! Here's how to use it and share the screenshots, all without having to connect it to your computer:

Step 1: In the taskbar, you'll notice the new Screenshot icon next to the Recent Apps icon. Tap the Screenshot icon to take your screenshot. You'll see a message pop up that says, "Screen captured. Saved as image file."
Take screenshot(Credit: Screenshot by Ed Rhee)
Step 2: To find your screenshot image, go to your Apps list and select "My files."
My files app(Credit: Screenshot by Ed Rhee)
Step 3: Scroll down to the bottom and select the folder named "ScreenCapture."
Screen capture folder(Credit: Screenshot by Ed Rhee)
Step 4: Select the image you want to share then tap the sharing icon.
Select image then sharing icon(Credit: Screenshot by Ed Rhee)
Step 5: Choose which method you want to use to share the image.
Choose sharing method(Credit: Screenshot by Ed Rhee)
There you go--nice and simple. Now you no longer need to use the Android SDK and a USB cable just to take screenshots of your Galaxy Tab 10.1. Thank you, Samsung!
READ MORE - How to take native screenshots on your Touchwiz Galaxy Tab 10.1

Galaxy Tab Pros and Cons


After using a prototype Galaxy Tab I wanted one.  Now that I have owned one for two weeks (actually it is all I had while on vacation for a week), I thought it would be good to review what I like and don't like about the Galaxy Tab.  What I have been looking for is a replacement for my laptop which I still need to use because of a list of things the Iphone is not up to doing.

Pros - Tablet Wish List

Things that make me use a laptop, Iphone doesn't do these well

  • Need a Laptop replacement
  • Instant on - I hate waiting 4 minutes for windows to boot.
  • Instant Applications - I hate waiting 15 seconds for Outlook or Word to boot
  • Bigger Screen
  • Bigger keyboard, Swipe Keyboard, easy to type longer documents.
  • Small enough to hold in one hand while typing with the other
  • About half the weight of the Ipad
  • Open platform
  • Expansion slot for memory
  • Light enough to be used as a Kindle Reader to read full novels, I am on my second novel.
  • Can mount as a USB drive on my computer.
  • Remote Desktop to my Desktop computer
  • A way to enter rich text, things like bold, fonts, headings (Iphone does not allow this)
  • Both Read and Edit Word, Excel Documents (Thinkfree Office does this and was installed)
  • Android can display fonts 4 times larger than IOS from Apple, this is important for a friend of mine who is nearly blind, so she is replacing her IPad with a Galaxy Tab 10.1

Cons - What I wish for the Galaxy Tab (or Android)

  • Free text messages and voice calls.  I think Google is working on google voice
  • A Cisco VPN client, Cisco has promissed the new "AnyClient" by the end of 2010 will support Android
  • Better buttons, I find the on off button placement akward and the four touch buttons at the bottom of the screen get touched when I don't mean to some times.  I would prefer real buttons at the bottom of the screen.
  • Better combatibility mode management.  I would like a setting that is exposed, not hidden, to turn off combatibility mode.  Even better would be the option to list applications that need combatibilty mode like my old Palm TX would let me.
  • Complete User Manual for Android 2.2, and for Galaxy Tab

More Pros - Things I really like now that I have them

  • Widgets
  • Top Bar - drag down for settings and notifications
  • I can turn off compatibility mode and get most Apps to run in the full screen.

Back ground on my situation

I purchased Galaxy Tab from Verizon on the first day they went on sale in the USA.  I have been a mostly happy Iphone 3GS user for 18 months.  I plan to continue to use my Iphone as a cell phone and for reminding me what apponitments I have while I am on the go.  In addition to the Iphone, I also have to carry around a laptop computer.  I need the laptop because I don't like to type long emails on my Iphone, I have a hard time, with my old eyes, seeing the tiny Iphone screen, this makes browsing web pages or looking at documents on a phone impratical for me. 
So I have been looking for something that would let me do all the things I do on my laptop without lugging around my laptop.  I considered something like my son's netbook but that does not address the instant on and instant application access.  Also you must sit down to use a netbook or even to really use an IPad.  With a 7 inch Galaxy Tab I hold it in one hand while using it with the other.

In summary

Would I trade my Galaxy Tab in for something else?  No way!  My only problem is getting a chance to use it.  My wife and kids want to use it every chance they get.  My kids all have an Ipod touch, but they like the big screen and play games with multiple people watching or playing.  My wife prefers the Tab over her computer in the kitchen for looking up web sites or checking email.
The only thing I am not sure of is which provider (see cost comparison) is really the best fit for me and my needs.  I thought I would use lots of data, but since I have WiFi at my house, work and even the inlaws, I use much less than I thought I would.  I even traveled for week on vacation and downloaded a couple more apps and only have used 200 MB in two weeks.  (I have been careful to only use Youtube when on WiFi).  Verizon support knows almost nothing about the Galaxy Tab.  Maybe no one else does either.
READ MORE - Galaxy Tab Pros and Cons