[APP][1.6+] Link2SD

Search This thread

fabricioemmerick

Senior Member
Feb 25, 2011
75
10
NY
Originally Posted by lcmartin
Looking for this feature I have found your apk, it is exactly what I was requiring for my Tablet Coby MID7015, operating under Android Eclair.

I followed all the instructions and have partitioned my SD card (it is a 16Gb Kingston class 2).

My tablet is rooted and I have tried two different ways to create a recognizable partition, using MiniTool partition wizard and using Ubuntu, in both cases the partition was created succesfully but was not recognized by the tablet.

In fact once partitioned any of both partitions was recognized.

Link2SD displays a message saying thet the partition not found.

I have asked this question before in a Tablets Forum and got some answers, one recommending to partition NAND(?) and the excelent recommendation to better contact you.

The forum is androidtablets dot net/forum/coby-tablets/11299-coby-7015-link2sd-ext2-partition-not-found.html[/url] (I had to writte it in this way since the forum was not allowing links)

May you help me?

Regards from Chile



To determine the external storage (SD Card) location, Link2SD uses Environment.getExternalStorageDirectory (not hard coded "/sdcard").

Can you run "set" command from terminal on your tablet and check EXTERNAL_STORAGE environment varible.

This should be your external SD card mount point, but I see that on some tablet models EXTERNAL_STORAGE points to internal storage (built in NAND) instead of SD card device.


Bakpinar, I run the "set" command I have got EXTERNAL_STORAGE=/sdcard
What shall I do now?


The same Problem for me
 

fdespotovski

Senior Member
Jan 5, 2011
561
145
Skopje
Guys,I have a problem.I can successfully link some apps but when linking other apps they disappear from the phone.I can't find them anywhere.I previously had them,but when I linked them they disappeared.Please help.:(
 

MongooseHelix

Senior Member
Aug 29, 2010
711
453
Portland, OR, USA
Guys,I have a problem.I can successfully link some apps but when linking other apps they disappear from the phone.I can't find them anywhere.I previously had them,but when I linked them they disappeared.Please help.:(
Does Link2SD still list them as linked? If so, you can try selecting each of the missing apps and clicking reinstall. If they aren't listed, see if the apk files for those apps are in the /data/sdext/ directory using a file manager like root explorer or through a terminal.
 

bakpinar

Inactive Recognized Developer
Dec 2, 2010
354
931
Istanbul
UPDATE:
1.6.0
- added option to link library (.so) files along with apk and dex files
- added automatic linking option for the new installed apps
- added ability to link/unlink apk, dex and lib files separately
- added '->' linked indicator to Apk, Dex and Lib labels
- added lib file size and link status information
- added lib size to sort options
- some bugfixes

The main improvement in this version is option to link the native library (*.so) files that some apps install in their /data/lib directory.
These libraries are typically quite large, so moving them to SD will free up space on the internal storage.
I added lib size info both to main list page and app detail page so you can see how much space you'll free up if you link it.

Another improvement is that, you can link/unlink apk, dex and lib files separately, that is, you can link or unlink all three or any two of three or even only one of them.

Another new addition is auto linking option for new installed applications. You can enable/disable this feature and select which files will be linked automatically from the new settings menu.

And some bug fixes and code improvements.

Hope you enjoy!
 

fabricioemmerick

Senior Member
Feb 25, 2011
75
10
NY
UPDATE:
1.6.0
- added option to link library (.so) files along with apk and dex files
- added automatic linking option for the new installed apps
- added ability to link/unlink apk, dex and lib files separately
- added '->' linked indicator to Apk, Dex and Lib labels
- added lib file size and link status information
- added lib size to sort options
- some bugfixes

The main improvement in this version is option to link the native library (*.so) files that some apps install in their /data/lib directory.
These libraries are typically quite large, so moving them to SD will free up space on the internal storage.
I added lib size info both to main list page and app detail page so you can see how much space you'll free up if you link it.

Another improvement is that, you can link/unlink apk, dex and lib files separately, that is, you can link or unlink all three or any two of three or even only one of them.

Another new addition is auto linking option for new installed applications. You can enable/disable this feature and select which files will be linked automatically from the new settings menu.

And some bug fixes and code improvements.

Hope you enjoy!

Hello friend, great job, sadly, could not do on my tablet Coby MID7015. Does not recognize the partition. I am anxious to use your app. A hug
 

fabricioemmerick

Senior Member
Feb 25, 2011
75
10
NY
Code:
$ export PATH=/data/local/bin:$PATH
$mount
rootfs / rootfs ro 0 0
tmpfs /dev tmpfs rw,mode=755 0 0
devpts /dev/pts devpts rw,mode=600 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
tmpfs /sqlite_stmt_journals tmpfs rw,size=4096k 0 0
tmpfs /tmp tmpfs rw,size=4096k 0 0
tmpfs /broadcasting tmpfs rw,size=512k 0 0
/dev/block/mtdblock2 /system yaffs2 rw 0 0
/dev/block/mtdblock5 /data yaffs2 rw,nosuid,nodev 0 0
/dev/block/mtdblock4 /cache yaffs2 rw,nosuid,nodev 0 0
/sys/bus/usb /proc/bus/usb usbfs rw 0 0
/dev/block/ndda1 /nand vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0
/dev/block//vold/179:1 /sdcard vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0
$

And

Code:
export PATH=/data/local/bin:$PATH
$ $ls -l /dev/block/vold
brw-rw---- root     root     179,   1 2011-04-20 13:41 179:1
brw-rw---- root     root     179,   0 2011-04-20 13:41 179:0
$
 

voy108

New member
Mar 6, 2011
1
0
tablet, Coby, 2.1 rooted

bakpinar: I reformatted my 8gb sdcard with Partition Wizard but the Coby will not recognize the card after doing it. I also tried Easeus Partition which appears to be same program different name but link2sd still tells me no 2nd partition...probably because Coby won't mount the card. Any ideas on what I may not be doing? Both partitions(fat32 & ext 2) are primary. thx
 

MongooseHelix

Senior Member
Aug 29, 2010
711
453
Portland, OR, USA
Code:
/dev/block/vold/[COLOR="Red"]179:1[/COLOR] [COLOR="red"]/sdcard[/COLOR] vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1015,fmask=0702,dmask=0702,allow_utime=0020,codepage=cp437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 0

And

Code:
$ls -l /dev/block/vold
brw-rw---- root     root     179,   1 2011-04-20 13:41 [COLOR="red"]179:1[/COLOR]
brw-rw---- root     root     179,   0 2011-04-20 13:41 [COLOR="red"]179:0[/COLOR]
It doesn't appear like your sd card contains a second partition which is needed for Link2SD. If you did, 179:2 would be listed in the /dev/block/vold directory and is what Link2SD tries to mount. As you can see from your mount command output, the /sdcard partition is mounted on 179:1 since that represents the first partition of the removable media device located at 179:0.

bakpinar: I reformatted my 8gb sdcard with Partition Wizard but the Coby will not recognize the card after doing it. I also tried Easeus Partition which appears to be same program different name but link2sd still tells me no 2nd partition...probably because Coby won't mount the card. Any ideas on what I may not be doing? Both partitions(fat32 & ext 2) are primary. thx
Does the Coby tablet support ext2 filesystems? If not, you will either need to get a compatible ext2.ko module to enable support or make the second partition fat32 also.
 
Last edited:

fabricioemmerick

Senior Member
Feb 25, 2011
75
10
NY
Hello friend thanks for replying, actually after several tests, I had to format and leave only one partition so you can use the memory card. That's why it appeared only one partition, did more commands to see what our friend bakpinar can do to help us. I've tried also to create the ext2 partition and does not recognize too. It seems that we do not have this module loaded in our system. I had to find a compatible chipset and Android Eclair. I found this topic here
http://xdaforums.com/archive/index.php/t-894305.html
 

lakshesh

Member
Apr 20, 2011
27
2
Mumbai
i have an problem dude

should i select the main partition with primary or logical ?

the 2nd partition should be primary "if im not wrong ?"

and both should be fat 32 ?
 

ravilov

Senior Member
Jan 26, 2010
2,217
1,346
localhost
- linking data directory. This is almost finished, but there is an issue when updating the app, @ravilov did you try to update the app after linking data directory?
The issue is that installer can't create cached shared lib if shared lib dir is linked, I found a workaround and testing it...
Hmm, it's hard to say. First of all, I didn't actually link the entire datadir, I only linked the files that were too big (eg. for gmail, I only linked the email sqlite database file, which was like 98% of the whole datadir size). Second of all, I only linked a few apps, and sadly none of them received any updates since.

Next time Market reports there's an update available, I'll first symlink the datadir of that app and then do the update. I'll get back to you on how that went.

Sorry for the belated response.

I did notice another problem, though - when I try to update an app that's been link2sd'd, my phone reboots and doesn't do the update. No idea why this is happening. :dunno:
 

elcede

Senior Member
Feb 13, 2010
68
4
Siedlce
I have a question: is there a way that link2sd will work with no need to create a separate partition and using existing fat32 partition? Becouse this is a little problem witch switching rom, and I think it will be better for lot of users who have problems with mounting second partition.
 

lakshesh

Member
Apr 20, 2011
27
2
Mumbai
its not working at all coz when i had install this app then installed angry bird or an live wallpaper it was showing that it was install in my sd card but my internal memory is getting used as and when i install apps

i also cleared cached file but no use my internal memory getting up


i dont know anything about android coz in INDIA only little or few people have android phone and i m totally newbie in knowing the android platform and i have taken my mobile 1 week ago and already formated my mobile more than 5 times.

if anybody ready to help me then please contact me guys at my skype id "lakshesh1099"
 
Last edited:

mhyke13ph

Senior Member
Dec 17, 2010
512
81
42
Baguio City
Thanks for This Update Bakpinar

i have around 50apps installed, now my X8 have a roomier space 92/210mb

You're Application Just keeps getting Better and Better

If I may ask? what is your next project for this Link2SD?

Thanks Again
 
Last edited:

mallaccra

Member
Dec 4, 2010
30
3
Link2SD

yeah, your app becomes more and more better/smarter and i've to say this is the best app to me so far..... :D
 

Top Liked Posts

  • There are no posts matching your filters.
  • 602
    Link2SD is an application manager that makes it easy for Android 2.0+ users on their phone to move applications to the SD card. It enables you to manage your apps and storage easily.

    Features:

    - Link apk, dex and lib files of apps to SD card
    - Link internal data of apps to SD card (Plus)
    - Link external data and obb folders of apps and games to SD card (Plus)
    - Link dex files of the system apps to SD card (Plus)
    - Auto clear cache service (Plus)
    - Automatically link newly installed apps
    - Move any user apps to SD even though the app does not support moving to SD ("force move")
    - Shows the apps that support moving to SD with native apps2sd
    - Set the default install location of the apps; auto, internal, or external
    - Batch link, unlink, reinstall, uninstall, "move to SD", "move to phone" functions
    - Notify when movable apps installed
    - Uninstall system applications (bloatware removal)
    - Freeze and un-freeze system and users applications
    - Convert system apps into user apps
    - Convert user apps into system apps
    - Integrate "Updated" system apps into system (ROM)
    - Clear data and cache of an application
    - Batch clear data and cache of the selected apps
    - Clear all apps cache at once (1-tap cache cleaner without being root)
    - Clear cache widget (1-tap cache cleaner without being root)
    - Notify if total cache size exceeds specified size
    - Reboot manager includes power off, normal reboot, quick (hot) reboot, reboot recovery, reboot bootloader/download mode
    - Reboot widget to boot with one click
    - List applications, show detailed size information and link status
    - Wide variety of options to sort and filter apps
    - Search applications by name
    - Display available space information of internal storage, SD card and SD card 2nd partition
    - Share the Play Store link or the APK (app\'s full package) file of an app
    - Create shortcut for the apps
    - Support 40+ languages

    How it works:
    Linking applications;
    Link2SD uses a secondary partition on your SD card and uses it as another segment of internal storage. Link2SD moves apk files, dalvik-cache (.dex) files, lib files and internal data files into this partition, which the OS mounts on boot, and creates a symbolic link in the original location. This retains the file structure that the system expects but with the bulk of the data moved to the SD card.

    Linking obb and external data;
    On devices that have emulated SD card, obb and external data files are actually located on the internal storage, not on the external (real) SD card.
    This method moves these files into the first or the second partition of your external SD card (depending on your selection) and with the bind option of the mount command remounts the file hierarchy at external SD card while it is still available at the original location.

    Linked apps are marked with "Linked -> SD card" in the app list.

    What you need:
    for linking apps;
    - root permission
    - second partition on SD card

    You should have two partitions on your SD card and both should be primary.
    The first FAT partition is your standard SD card storage. The second partition is used for application files and can be ext2, ext3, ext4, f2fs or FAT.
    You need to use a non-FAT file system (ext2, ext3, ext4 or f2fs) on your second partition in order to link app\'s private data files. Because the FAT file system (FAT16, FAT32 or exFAT) does not support UNIX file ownership or permissions and will cause a security breakdown of app's private files.
    Link2SD does not create the second partition, you need to create it yourself. You can use any partition manager such as Minitool, Paragon, Easeus etc. on Windows, GParted on Linux, built in Disk Utility on Mac OS.

    for linking obb and external data;
    - root permission

    Second partition on SD card is optional, folders can be moved to the first or the second partition of the SD card.

    Note:
    When you connect your device to PC as mass storage, Android unmounts the first FAT partition but the second partition remains mounted so the apps linked to this partition are not affected and can be run without problems.
    But the apps which their obb and external data files have been moved to the external storage don\'t work until the mass storage is disabled and the external storage is remounted on the device.

    Link2SD also provides native app to SD (app2sd) feature of Android OS. It can move any non-protected user apps to SD card (force move), with batch moving capability.
    That feature uses first partition (normal FAT) of the SD card, does not require a second partition.

    Cache cleaner function clears all your cache and free up space with a single tap. Also cache cleaner widget displays total cache size and enables "one tap cache cleaning" without opening the app.

    Link2SD is available in the following languages:
    English, Turkish, German, Hungarian, Italian, Polish, Portuguese, Portuguese Brazilian, Russian, Slovak, Spanish, Thai, Ukrainian, Japanese, Chinese Traditional, Chinese Simplified, French, Arabic, Bulgarian, Czech, Serbian, Indonesian, Dutch, Vietnamese, Greek, Slovenian, Basque, Macedonian, Catalan, Persian, Croatian, Danish, Albanian, Georgian, Afrikaans, Hindi, Swedish, Armenian, Tagalog, Romanian, Lithuanian, Nepali, Tamil.

    If you want to help translating Link2SD into other languages please send me an email.

    Link2SD is a free (ad supported) application. You can upgrade to Link2SD Plus to remove ads and get additional features.

    DISCLAIMER: It is made available for use at your own risk with no warranty of any kind.

    It's avaliable on Google Play, search for "Link2SD".

    For more info and FAQ see the following site.

    http://www.link2sd.info

    UPDATE:
    The long awaited feature to link external data and obb folders of apps and games is now available.

    4.0
    - (Plus) added ability to link external data and obb folders to the SD card
    ** Second partition on SD card is optional, folders can be moved to the 1st or the 2nd partition of your SD card.
    - app info screen has been redesigned to become cleaner and more straightforward
    - fixed the bug that causes linked apps disappear after reboot on some devices
    ** if you have this issue run "Recreate mount scripts" and reboot
    - updates for Android 5.0 Lollipop
    - bug fixes and improvements
    - updated translations
    3.7.3
    - fixed external SD bug in "Storage Info"
    3.7.2
    - added support for Android Lollipop (5.0), all features are now fully functional on Lollipop
    - added "Create shortcut" function for the apps
    - added notification for Plus license verification issues
    - bug fixes and improvements
    3.6.2
    - fixed crash on some devices
    3.6.1
    - material design updates in UI
    ** default theme is light, you can switch to dark from the settings
    - added sharing apk files of the apps
    - added batch (multi-select) share, clear data and clear cache
    - bug fixes and improvements
    3.5.3
    - added Tamil translation
    - some minor bug fixes
    3.5.2
    - fixed the bug that causes linked apps disappear on reboot when internal data is linked on some KitKat devices
    ** if you have this issue run "Recreate mount scripts" and reboot
    3.5.1
    - fixed Link2SD Plus installation issue, it is available again on Play Store
    - fixed force close at startup on Android 2.2 (Froyo)
    - bug fixes
    3.4.8
    - performance and stability improvements
    - some minor bug fixes
    - updated translations
    3.4.6
    - added reboot menu includes power off, normal reboot, quick (hot) reboot, reboot recovery, reboot bootloader / download mode
    - added reboot widget
    - some fixes and optimizations
    - added Nepali language and updated translations
    3.4.5
    - (Plus) added ability to link internal data and dex files of the apps that are already on SD card (with native app2sd)
    - fixed a bug which caused the linked apps disappear after reboot on some devices **
    ** if you have this issue run "Recreate mount scripts" and reboot
    - some fixes and optimizations[
    3.4.4
    - fixed clear cache issues seen on some devices
    - exclusion list for "clean all app caches" is now also available in Link2SD
    3.4.3
    - fixed the bug in relink library files
    - updated translations
    3.4.2
    - fix the bug in "Clean up the 2nd partition" and "Storage Info"
    3.4.1
    - (Plus) added ability to link internal data directory of the apps to SD card
    ** You need to use a non-FAT file system (ext2, ext3, ext4 or f2fs) on your second partition for this feature.
    Because the FAT file system does not support Unix file ownership or permissions and will cause a security breakdown of app\'s private files.
    - (Plus) added exclusion list for "clean all app caches" function
    - added "internal data size" and "external data size" sort options
    - some fixes and optimizations
    - added Lithuanian language
    - updated translations
    3.3.1
    - minor fixes and optimizations
    - added Romanian language
    3.3
    - (Plus) added ability to link dex files of the system apps
    - added f2fs file system support
    - added shortcut for searching with long-press of the menu button
    - fixed "error 491" seen after clearing all app cache on some devices
    - fixed the bug in detecting external SD cards that have exFAT file system
    - some fixes and optimizations
    - updated translations
    3.2.1
    - fixed licensing issue seen on some devices
    - fixed the bug in obtaining root access for clear cache function
    3.2
    - added cache cleaner widget that displays total cache size and enables "one tap cache cleaning" without opening the app
    - (Plus) added auto cache clean service, you can select the interval in settings
    - added an option to include or exclude external cache files during "Clear all app caches"
    - fixed the bug in auto linking on some devices
    - fixed apk name bug seen on some new ROMs
    - some fixes and optimizations
    - updated translations
    3.1.5
    - fixed dalvik-cache (dex) issues on KitKat
    3.1.4
    - fixed the bug in "Convert to system app" on apps that have lib files
    - fixed the bug in "Integrate update into system" on some apps
    - added "Encrypted" filter option
    - "Clear all app caches" and "Clear cache" functions now clean external cache as well
    - some fixes and optimizations
    - updated translations
    3.1.3
    - added support for devices with SELinux set to "Enforcing" mode (e.g new Samsung devices, KitKat ROMs etc.)
    ** if you have FC on linked apps, reboot your device after installing the new version
    - added native app2sd support for new Samsung/ASUS devices (Android 4.2+)
    - added Armenian and Tagalog languages
    - minor fixes and optimizations
    3.1.2
    - improved KitKat support, fixed dex file issue on KitKat
    - minor optimizations in UI
    - updated translations
    3.1.1
    - minor fixes and optimizations
    - added Swedish translation and updated some translations
    3.1
    - added Android KitKat (4.4) support
    ** if you have FC on linked apps on Kitkat, run "Recreate mount scripts" from the sliding menu and reboot
    - fixed the bug that causes the search view to not open when pressing hardware search button
    - some bug fixes and optimizations
    3.0.1
    - minor fixes and optimizations
    3.0
    - revamped user interface
    ** new sliding menu, new action bar, new multi-select interface, new menu and more
    - added dark and light theme option
    ** default is dark, you can switch to light theme from the settings
    - added "Share" function to send "Play Store" link of an app
    - improved tablet support
    - stability improvements and bug fixes
    - updated translations
    2.4.10
    - fixed hang on app startup on some devices
    - small fixes and optimizations
    - updated translations
    2.4.9
    - fixed clean up the dalvik-cache and 2nd partition bug
    2.4.8
    - fixed "Invalid package" issue seen on some devices with previous update
    2.4.7
    - fixed bug in obtaining root access on some devices
    - fixed bug that prevents relinking dex and lib files at boot on some devices
    - fixed bug which caused the mount script can not be created on new Samsung devices (Note II, S4 etc.)
    - improved Android 4.3 support
    - some bug fixes and optimizations
    - added Georgian, Afrikaans and Hindi translations
    - updated translations
    2.4.6
    - added an option to notify when movable apps installed
    - added an option to notify if total cache larger than specified size on app startup
    - some bug fixes and optimizations
    - updated translations
    2.4.5
    - added Android 4.3 support
    - fixed a bug which caused the second partition can not be detected on some devices
    - added "Obb size" sort option
    - stability improvements and bug fixes
    - updated translations
    2.4.4
    - fixed a bug which caused the second partition can not be detected on some devices
    - added obb size info of the apps
    - some bugfixes and optimizations
    - added Albanian translation and updated some translations
    2.4.2
    - some bugfixes
    - updated translations
    2.4.1
    - added warning if the device does not support native app2sd due to emulated external storage (such as Galaxy S3, Note 2 etc.)
    - fixed a bug which caused the second partition can not be detected on some devices **
    - fixed "mkdir failed , File exists" error for FAT partitions on some devices **
    ** if you have these problems run "Recreate mount scripts" from the menu after installing the new version and reboot
    - added external data and cache size info used by the apps
    - added encrypted label for Jell Bean style encrypted apps
    - added ability to convert encrypted apps into normal apps (move to phone)
    - added ACCESS_SUPERUSER permission declaration (proposed by Koush)
    - updated translations
    2.3
    - added x86 and mips support
    - added ability to link encrypted apps
    - fixed crash if too many apps (600+) are installed on some devices
    - minor fixes and optimizations
    - added Danish language and updated translations
    2.2.2
    - fixed not working "clear all app caches" function for some devices
    - minor fixes and optimizations
    2.2.1
    - fixed bug in obtaining root access on some devices
    2.2
    - fixed file permission bug that causes linked apps to FC on Jelly Bean
    - added external SD information in "Storage Info" page (if presents)
    - updated translations
    2.1.2
    - fixed crash if too many apps (400+) are installed on some devices
    - improved app search (use "contains" instead of "start with" and higlight the matching characters)
    - updated translations
    2.1.1
    - some fixes and tweaks
    - added Croatian language
    - updated translations
    2.1
    - added "relink all application files" feature to scan 2nd partition and relink all the files (can be used when changing or updating the ROM)
    - added "relink dex files at boot" option
    - changed multi-select UI
    - added batch freeze/unfreeze
    - added size info of /system and /cache partitions to "Storage info"
    - fixed bug in converting system apps into user apps and vice versa
    - added Persian language
    - updated translations
    - some fixes and UI tweaks
    2.0.4
    - fixed relink lib bug introduced in 2.0.3
    - added Catalan and Macedonian translations
    - updated some translations
    2.0.3
    - fixed force close at startup on some devices
    - updated translations
    2.0.2
    - fixed bug in obtaining root access on some devices
    - updated translations
    2.0.1
    - added the ability to convert system apps into user apps
    - added the ability to convert user apps into system apps
    - added "Updated" mark to show if the app has been install as an update to a system (built-in) app
    - added "Updated" filter option
    - added the ability to integrate "Updated" system apps into system
    - fixed freeze/unfreeze bug on some ICS devices
    - improved ICS compatibility
    - optimized link/unlink/move operations and speed improvements
    - some fixes and UI tweaks
    1.9.13
    - added an option to change language in application settings
    - fixed bug in "Storage info" that displays incorrect values if the partition is >1GB on some devices
    1.9.12
    - changed a2sd checking
    1.9.11
    - fixed "Mount warning" issue on some devices that do not have operational init scripts to mount 2nd partition at boot, e.g. new Samsung Gingerbread roms
    ** if you have this problem run "Recreate mount scripts" from the menu after installing the new version of Link2SD
    - added Basque translation
    - some fixes and tweaks
    1.9.10
    - fixed some issues on Android 4.0 (Ice Cream Sandwich)
    - added Greek and Slovenian translations
    - updated some translations
    - some minor fixes and tweaks
    1.9.9
    - fixed bug in recognizing the second partition on some devices
    - updated some translations
    1.9.8
    - fixed bug in setting install location option
    - updated some translations
    1.9.7
    - moved filter and sort functions from menu to title bar
    - added an indicator icon which shows the apps that can be moved to SD with native apps2sd (a small icon in upper right corner, for Android 2.2 and higher)
    - added "Movable" filter option which lists the apps that support moving to SD with native apps2sd (for Android 2.2 and higher)
    - added "Clear data" to clear user data from the app
    - added "Clear cache" to clear the app cache
    - added "Cache size" sort option
    - added ability to clear cache on all apps at once
    - added "View in Market" for applications
    - added an option to turn "auto link notification" off
    - added Dutch, Serbian, Indonesian, Vietnamese translation
    - fixed bug in recognizing the 2nd partition on some devices
    - updated some translations
    - some minor fixes and tweaks
    1.9.6
    - added Japanese, Chinese Simplified, French, Arabic, Bulgarian, Czech translation
    - updated some translations
    - added "Translation Credits" to the About page
    1.9.5
    - fixed freeze/unfreeze bug on some devices
    - added Chinese Traditional, German, Hungarian, Italian, Polish, Portuguese, Portuguese Brazilian, Russian, Slovak, Spanish, Thai, Ukrainian translation
    - added an option to use English language instead of system language
    1.9.4
    - added ability to freeze and unfreeze the user and system applications
    - added "Frozen" filter option
    - added ability to search applications by name, activated from the menu or search button
    - some minor fixes and tweaks
    1.9.3
    - added "Recreate mount scripts" menu to recreate mount scripts manually when you change fs type or rom
    - fixed bugs in "Quick reboot" and setting "Install location" on some devices
    - some minor fixes and tweaks
    1.9.2:
    - added "Dex size" and "Total size" sort options
    - some bugfixes
    1.9.1:
    - fixed FC on some devices
    1.9.0:
    - added native apps2sd function with batch capability (for Android 2.2 and higher)
    ** moves any user apps to SD even though the app does not support moving to SD
    - added option to set the default install location of the apps; auto, internal, or external (for Android 2.2 and higher)
    - added workaround for Roms that do not have install-recovery.sh and init.d scripts to mount 2nd partition at boot, e.g. new Samsung GB roms
    ** mounts after system finishes booting and you need to perform 'Quick reboot'
    - new and safer 'Quick reboot' method
    - added context menu to app list (activated on a long press)
    - added option for automatic relinking of library files at boot
    - added "on SD card" and "on internal" filter options
    - added applications count to the title
    - some UI changes
    1.8.0
    - changed the method for determining external storage to support devices that have more than one external storage (MMC and SD)
    - added ability to uninstall system applications
    - added batch (multi-select) reinstalling
    - added batch (multi-select) uninstalling
    - added "Relink library files" menu which relinks all the lib files that get unlinked after reboot
    - removed "Market Fix" menu
    - added "fast scroll thumb" option to quickly scroll through the app list
    - added "Data size" to sort options
    - some bugfixes
    1.7.0
    - added batch linking and unlinking (multi-select mode)
    - some bugfixes
    1.6.2
    - fixed force close on application startup on some devices
    1.6.1
    - added horizontal screen orientation support
    - added "Link dalvik-cache files" menu back
    - improved loading and scrolling performance of the app list
    - added cache size to app list
    - fixed "Storage Info" bug on Android 2.3
    - better CM7 support
    Known issue:
    * library files get unlinked after reboot on Android 2.3 and sometimes on 2.1 and 2.2. (PackageManager unpacks all native libraries from the apk files at boot)
    1.6.0
    - added option to link library (.so) files along with apk and dex files
    - added automatic linking option for the new installed apps
    - added ability to link/unlink apk, dex and lib files separately
    - added '->' linked indicator to Apk, Dex and Lib labels
    - added lib file size and link status information
    - added lib size to sort options
    - some bugfixes
    1.5.5
    - changed link creation, reboot is not required on Android 1.6 and 2.1 anymore
    1.5.4
    - added notification to status bar for automatic re-linking after app update
    - added "reboot required" notification to status bar after linking app on Android 1.6 and 2.1
    - some bugfixes
    1.5.3
    - changed menu name from "Quick Restart" to "Quick Reboot"
    1.5.2
    - added "Quick Restart" menu, cuts boot time
    - added "Clean up the dalvik-cache" menu
    - added "Clean up the 2nd partition" menu
    - added ability to link updated system apps (that are located in /data/app)
    - optimized refreshing of the app list after linking
    - changed App2sd checking
    - added support in detecting and mounting the second partition for some roms
    - some bugfixes
    1.5.1
    - fixed background message
    1.5.0
    - added ext3, ext4 and FAT32 support for the second partition of SD card
    - added refresh menu
    - added "Not Linked" filter option
    - changed App2sd checking
    - added support in linking protected (/data/app-private) apps
    - added support in detecting and mounting the second partition for some roms
    - some bugfixes
    1.4.2
    - disabled automatic Market status fix after linking
    1.4.1
    - added option to link dalvik-cache (.dex) files along with apk files
    - added automatic re-linking after app upgrade
    - added automatic deleting from SD card after app uninstall
    - added "Reinstall" button
    - added "Link dalvik-cache files" menu which links dex files of all existing linked applications all at once
    - added automatic Market status fix after linking
    - better froyo support
    - added dex file size and link status information
    1.3.1
    - added support in detecting and mounting ext2 partition for some roms
    - some minor bugfixes
    1.3.0
    - added uninstall feature which deletes apk file also from ext2 for linked apps
    - added launch and manage buttons
    - added detailed size information of applications
    - added support in detecting and mounting ext2 partition for some roms
    - some minor bugfixes
    1.2.1
    - added info message to show which applications have been repaired after "Market Fix"
    1.2.0
    - added "Market Fix" feature to repair missing Market applications
    - added support in detecting and mounting ext2 partition for some roms
    - removed "ext2 found" info message at startup
    - some minor bugfixes
    1.0.5
    - added support for some roms which install-recovery.sh is not operational
    - added ext2.ko module installation on boot (if exists) for Motorola phones
    1.0.4
    - changed mount method at startup to be much safer
    - some minor bugfixes
    1.0.3
    - initial release
    14
    Hello Guys,

    I am a newbie for android OS. You stated that you can do this SD partition stuff with MiniTool Partition Wizard Home Edition" (free). Sahll I have to use a lunix based pc? or Win Xp is enough?

    Besides, ext2 partition will be used for the apps. And SD card also has another partition with FAT 16 format. So, what will be ratio for these partitions? Let's say I owned a 8 gb SD card. What will be proper partition sizes?

    As a last question, We will first install the apps to phone memory. And then link it to SD card. Am i right?

    thank you for your support.

    Regards,

    Hello,

    • You can use windows machine for partition stuff with "MiniTool Partition Wizard Home Edition". It is a windows application, supports Windows 2000/XP/Vista/windows 7 (32 bit & 64 bit) operating system.

    • There is no such a restricted ratio but 10% is recommended. So if you have a 8GB card ~7.2GB for FAT32 and ~800MB for ext2 would be ok.


    • Yes, first install the application and then link it to SD card with Link2SD.
    8
    UPDATE:
    1.5.5
    - changed link creation, reboot is not required on Android 1.6 and 2.1 anymore

    After linking, reboot and "Market Fix" are not needed anymore on Android 1.6 and 2.1 because the app does not disappear from the system (like 2.2+).
    You only need to, if any, re-add the shortcut and the widget of the app to homescreen.

    Seem a small change but it is an important improvment.
    8
    UPDATE:
    2.3
    - added x86 and mips support
    - added ability to link encrypted apps
    - fixed crash if too many apps (600+) are installed on some devices
    - minor fixes and optimizations
    - added Danish language and updated translations
    8
    UPDATE:
    1.6.0
    - added option to link library (.so) files along with apk and dex files
    - added automatic linking option for the new installed apps
    - added ability to link/unlink apk, dex and lib files separately
    - added '->' linked indicator to Apk, Dex and Lib labels
    - added lib file size and link status information
    - added lib size to sort options
    - some bugfixes

    The main improvement in this version is option to link the native library (*.so) files that some apps install in their /data/lib directory.
    These libraries are typically quite large, so moving them to SD will free up space on the internal storage.
    I added lib size info both to main list page and app detail page so you can see how much space you'll free up if you link it.

    Another improvement is that, you can link/unlink apk, dex and lib files separately, that is, you can link or unlink all three or any two of three or even only one of them.

    Another new addition is auto linking option for new installed applications. You can enable/disable this feature and select which files will be linked automatically from the new settings menu.

    And some bug fixes and code improvements.

    Hope you enjoy!