打印

[智能電話] 其實都幾搞笑, 機內memory慢過張SD card

引用:
原帖由 BlackBird 於 2011-6-28 18:19 發表

link /cache/dalvik-cache to /sd-ext/dalvik-cache
點做

TOP

引用:
原帖由 BlackBird 於 2011-6-28 18:30 發表

recover console :

cd /cache
mv dalvik-cache dc (求其改名)
ln -s /sd-ext/dalvik-cache dalvik-cache
reboot

第一次reboot應該入唔到os

原理係copy 哩個
但點樣好像a2sd 做的 link as folder就要再研究下 ...
我個open recovery 讀唔入個ext partition

TOP

引用:
原帖由 BlackBird 於 2011-6-28 18:35 發表

唔洗讀得入
你而家只係係/cache入面加symlink
而個destination係果時讀唔讀到根本唔重要, 但你個sd-ext一定要有dalvik-cache 哩個destination folder
係咪每次flash完rom都要打過

TOP

引用:
原帖由 BlackBird 於 2011-6-28 18:40 發表

無wipe cache的話應該唔洗
引用:
#!/system/bin/sh


insmod /system/lib/modules/jbd2.ko
insmod /system/lib/modules/ext2.ko
insmod /system/lib/modules/ext3.ko
insmod /system/lib/modules/ext4.ko

if [ ! -d /sd-ext ];
then
        busybox mount -o rw,remount /
        install -m 774 -o 1000 -g 1000 -d /sd-ext
        busybox mount -o ro,remount /
fi
mkdir /sd-ext
busybox chown 1000:1000 /sd-ext
busybox chmod 777 /sd-ext
/system/xbin/mount -t auto /dev/block/mmcblk0p2 /sd-ext

if [ -e /dev/block/mmcblk0p2 ]; then
        if [ -d /data/app ]; then
                mkdir /sd-ext/app
                chmod 777 /sd-ext/app
                cp -a /data/app/* /sd-ext/app/
                rm -r /data/app
                ln -s /sd-ext/app /data/app
        fi
        if [ -d /data/app-private ]; then
                mkdir /sd-ext/app-private
                chmod 777 /sd-ext/app-private
                cp -a /data/app-private/* /sd-ext/app-private/
                rm -r /data/app-private
                ln -s /sd-ext/app-private /data/app-private
        fi
fi
不如直接起段 code 到加番 , 變做 auto dav2ext

TOP

引用:
#!/system/bin/sh


insmod /system/lib/modules/jbd2.ko
insmod /system/lib/modules/ext2.ko
insmod /system/lib/modules/ext3.ko
insmod /system/lib/modules/ext4.ko

if [ ! -d /sd-ext ];
then
        busybox mount -o rw,remount /
        install -m 774 -o 1000 -g 1000 -d /sd-ext
        busybox mount -o ro,remount /
fi
mkdir /sd-ext
busybox chown 1000:1000 /sd-ext
busybox chmod 777 /sd-ext
/system/xbin/mount -t auto /dev/block/mmcblk0p2 /sd-ext

if [ -e /dev/block/mmcblk0p2 ]; then
        if [ -d /data/app ]; then
                mkdir /sd-ext/app
                chmod 777 /sd-ext/app
                cp -a /data/app/* /sd-ext/app/
                rm -r /data/app
                ln -s /sd-ext/app /data/app
        fi
        if [ -d /data/app-private ]; then
                mkdir /sd-ext/app-private
                chmod 777 /sd-ext/app-private
                cp -a /data/app-private/* /sd-ext/app-private/
                rm -r /data/app-private
                ln -s /sd-ext/app-private /data/app-private
        fi
        if [ -d /data/dalvik-cache ]; then
                mkdir /sd-ext/dalvik-cache
                chmod 777 /sd-ext/dalvik-cache
                cp -a /data/dalvik-cache/* /sd-ext/dalvik-cache/
                rm -r /data/dalvik-cache
                ln -s /sd-ext/dalvik-cache /data/dalvik-cache
        fi

fi
照計應該係咁既...

TOP

引用:
原帖由 BlackBird 於 2011-6-28 18:58 發表

我唔識丫嘛
咪一樣 ...

TOP

引用:
原帖由 BlackBird 於 2011-6-28 19:00 發表

打錯source folder啦
我果個係起 data folder內

我based on MIUI rom 去寫
http://forum.xda-developers.com/showthread.php?t=1090899

TOP

引用:
原帖由 BlackBird 於 2011-6-28 19:06 發表

no

兩邊都會有dalvik-cache folder
/cache果個係for system apps
/data果個係普通app
cache 果度唔見有喎

TOP

引用:
原帖由 BlackBird 於 2011-6-28 19:09 發表


cache partition usage?
1.57MB used, 104.43MB free

TOP

段code無效 , 頂

TOP

完成

個人感覺好似差唔多咁

定係部機本身慢, 快少少都唔會覺眼

TOP

引用:
原帖由 BlackBird 於 2011-6-28 19:33 發表

可能cm7太sluggish
佢算快o左架啦 , 相比起以前原版

TOP

引用:
原帖由 真.飛鳥 於 2011-6-28 19:35 發表

佢算快o左架啦 , 相比起以前原版
提速都係加 vm.heapsize 最直接
而家行900Mhz順過以前

TOP

引用:
原帖由 BlackBird 於 2011-6-28 20:27 發表
move過去/dev會...
what happen?

TOP

引用:
原帖由 BlackBird 於 2011-6-28 20:50 發表

boot機慢左
反應差左
開app Kick住kick住左
証明粒ram chip都係廢既

TOP