20th August 2011, 06:04 PM
(Last edited by knzo; 27th January 2012 at 12:35 PM .)
Senior Member -
OP
Thanks Meter
3805
Posts: 1,979
Join Date: Nov 2010
[TWEAKS][SCRIPTS] Collection of 'em all - build.prop; init.d; etc.
On my ROMs adventure I've been collecting some tweaks and scripts and seems to me it's now time to share it. While some values in terms of optimization might fluctuate from device to device, I've found these pretty consistent throughout many.
Build.prop
(edit your /system/build.prop with a file manager with root access)
Careful for already existing settings. In this case, just change the values.
1. Force launcher into memory
2. Raise JPG quality to 100%
Code:
ro.media.enc.jpeg.quality=100
3. VM Heapsize; higher the RAM, higher the hp can be
Code:
dalvik.vm.heapsize=48m
4. Render UI with GPU
5. Decrease dialing out delay
Code:
ro.telephony.call_ring.delay=0
6. Helps scrolling responsiveness
Code:
windowsmgr.max_events_per_sec=150
7. Save battery
Code:
wifi.supplicant_scan_interval=180
pm.sleep_mode=1
ro.ril.disable.power.collapse=0
8. Disable debugging notify icon on statusbar
Code:
persist.adb.notify=0
9. Increase overall touch responsiveness
Code:
debug.performance.tuning=1
video.accelerate.hw=1
10. Raise photo and video recording quality
Code:
ro.media.dec.jpeg.memcap=8000000
ro.media.enc.hprof.vid.bps=8000000
11. Signal (3G) tweaks
Code:
ro.ril.hsxpa=2
ro.ril.gprsclass=10
ro.ril.hep=1
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=10
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=14449
ro.ril.hsupa.category=5
12. Net speed tweaks
Code:
net.tcp.buffersize.default=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,16384,256960
13. Disable blackscreen issue after a call
Code:
ro.lge.proximity.delay=25
mot.proximity.delay=25
14. Fix some application issues
Code:
ro.kernel.android.checkjni=0
15. Phone will not wake up from hitting the volume rocker
Code:
ro.config.hwfeature_wakeupkey=0
16. Force button lights on when screen is on
Code:
ro.mot.buttonlight.timeout=0
17. Disable boot animation for faster boot
Code:
debug.sf.nobootanimation=1
18. Miscellaneous flags
Code:
ro.config.hw_menu_unlockscreen=false
persist.sys.use_dithering=0
persist.sys.purgeable_assets=1
dalvik.vm.dexopt-flags=m=y
ro.mot.eri.losalert.delay=1000
19. Specifics to some LG devices
Code:
persist.service.pcsync.enable=0
persist.service.lgospd.enable=0
user.feature.flex=true
user.feature.lgdrm=false
user.feature.lgresource=false
user.feature.lgpoweroff=false
user.feature.ls_event=false
user.feature.ls_normal=false
user.feature.sui=false
Init.d
(needs ROM with init.d access and busybox, open empty file, insert header #!/system/bin/sh and put these there, save in /system/etc/init.d and name it something like 77tweaks)
1. strict minfree handler tweak
Code:
echo "2048,3072,6144,15360,17920,20480" > /sys/module/lowmemorykiller/parameters/minfree
2. internet speed tweaks
Code:
echo "0" > /proc/sys/net/ipv4/tcp_timestamps;
echo "1" > /proc/sys/net/ipv4/tcp_tw_reuse;
echo "1" > /proc/sys/net/ipv4/tcp_sack;
echo "1" > /proc/sys/net/ipv4/tcp_tw_recycle;
echo "1" > /proc/sys/net/ipv4/tcp_window_scaling;
echo "5" > /proc/sys/net/ipv4/tcp_keepalive_probes;
echo "30" > /proc/sys/net/ipv4/tcp_keepalive_intvl;
echo "30" > /proc/sys/net/ipv4/tcp_fin_timeout;
echo "404480" > /proc/sys/net/core/wmem_max;
echo "404480" > /proc/sys/net/core/rmem_max;
echo "256960" > /proc/sys/net/core/rmem_default;
echo "256960" > /proc/sys/net/core/wmem_default;
echo "4096,16384,404480" > /proc/sys/net/ipv4/tcp_wmem;
echo "4096,87380,404480" > /proc/sys/net/ipv4/tcp_rmem;
3. vm management tweaks
Code:
echo "4096" > /proc/sys/vm/min_free_kbytes
echo "0" > /proc/sys/vm/oom_kill_allocating_task;
echo "0" > /proc/sys/vm/panic_on_oom;
echo "0" > /proc/sys/vm/laptop_mode;
echo "0" > /proc/sys/vm/swappiness
echo "50" > /proc/sys/vm/vfs_cache_pressure
echo "90" > /proc/sys/vm/dirty_ratio
echo "70" > /proc/sys/vm/dirty_background_ratio
4. misc kernel tweaks
Code:
echo "8" > /proc/sys/vm/page-cluster;
echo "64000" > /proc/sys/kernel/msgmni;
echo "64000" > /proc/sys/kernel/msgmax;
echo "10" > /proc/sys/fs/lease-break-time;
echo "500,512000,64,2048" > /proc/sys/kernel/sem;
5. battery tweaks
Code:
echo "500" > /proc/sys/vm/dirty_expire_centisecs
echo "1000" > /proc/sys/vm/dirty_writeback_centisecs
6. EXT4 tweaks (greatly increase I/O)
(needs /system, /cache, /data partitions formatted to EXT4)
a) removes journalism
Code:
tune2fs -o journal_data_writeback /block/path/to/system
tune2fs -O ^has_journal /block/path/to/system
tune2fs -o journal_data_writeback /block/path/to/cache
tune2fs -O ^has_journal /block/path/to/cache
tune2fs -o journal_data_writeback /block/path/to/data
tune2fs -O ^has_journal /block/path/to/data
b) perfect mount options
Code:
busybox mount -o remount,noatime,noauto_da_alloc,nodiratime,barrier=0,nobh /system
busybox mount -o remount,noatime,noauto_da_alloc,nosuid,nodev,nodiratime,barrier=0,nobh /data
busybox mount -o remount,noatime,noauto_da_alloc,nosuid,nodev,nodiratime,barrier=0,nobh /cache
7. Flags blocks as non-rotational and increases cache size
Code:
LOOP=`ls -d /sys/block/loop*`;
RAM=`ls -d /sys/block/ram*`;
MMC=`ls -d /sys/block/mmc*`;
for j in $LOOP $RAM
do
echo "0" > $j/queue/rotational;
echo "2048" > $j/queue/read_ahead_kb;
done
8. microSD card speed tweak
Code:
echo "2048" > /sys/devices/virtual/bdi/179:0/read_ahead_kb;
9. Defrags database files
Code:
for i in \
`find /data -iname "*.db"`
do \
sqlite3 $i 'VACUUM;';
done
9. Remove logger
10. Ondemand governor tweaks
Code:
SAMPLING_RATE=$(busybox expr `cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_transition_latency` \* 750 / 1000)
echo 95 > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold
echo $SAMPLING_RATE > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate
11. Auto change governor and I/O Scheduler
a) I/O Scheduler (Best: MTD devices - VR; EMMC devices - SIO) - needs kernel with these
Code:
echo "vr" > /sys/block/mmcblk0/queue/scheduler
or
echo "sio" > /sys/block/mmcblk0/queue/scheduler
b) Governor (Best: Minmax > SavagedZen > Smoothass > Smartass > Interactive) - needs kernel with these
Code:
echo "governor-name-here" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
12. Auto-zipalign on boot
(needs zipalign bin)
13. Loopy Smoothness tweak
14. Move dalvik-cache to cache partition (if it's big enough) to free up data partition space
Code:
CACHESIZE=$(df -k /cache | tail -n1 | tr -s ' ' | cut -d ' ' -f2)
if [ $CACHESIZE -gt 80000 ]
then
echo "Large cache detected, moving dalvik-cache to /cache"
if [ ! -d /cache/dalvik-cache ]
then
busybox rm -rf /cache/dalvik-cache /data/dalvik-cache
mkdir /cache/dalvik-cache /data/dalvik-cache
fi
busybox chown 1000:1000 /cache/dalvik-cache
busybox chmod 0771 /cache/dalvik-cache
# bind mount dalvik-cache so we can still boot without the sdcard
busybox mount -o bind /cache/dalvik-cache /data/dalvik-cache
busybox chown 1000:1000 /data/dalvik-cache
busybox chmod 0771 /data/dalvik-cache
else
echo "Small cache detected, dalvik-cache will remain on /data"
fi
15. Disable normalize sleeper
Code:
mount -t debugfs none /sys/kernel/debug
echo NO_NORMALIZED_SLEEPER > /sys/kernel/debug/sched_features
16. OOM groupings and priorities tweaks - SuperCharger
GPS.conf
(create or edit your /system/etc/gps.conf with a file manager with root access)
For improving GPS lock time and signal.
a) European NTP server (replace for america or asia in your case)
Code:
NTP_SERVER=europe.pool.ntp.org
XTRA_SERVER_1=http://xtra1.gpsonextra.net/xtra.bin
XTRA_SERVER_2=http://xtra2.gpsonextra.net/xtra.bin
XTRA_SERVER_3=http://xtra3.gpsonextra.net/xtra.bin
b) SE supl for A-GPS (better than Nokia's or Google's)
Code:
SUPL_HOST=supl.sonyericsson.com
SUPL_PORT=7275
Other tweaks or guidelines
1. Patch your hosts file for blocking Ads
(please think before doing this; many developers are supported through this way)
Code:
You can use AdFree application for this or changing manually your hosts file.
Here are some databases:
http://www.mvps.org/winhelp2002/hosts.txt
http://pgl.yoyo.org/adservers/serverlist.php?showintro=0;hostformat=hosts
2. Use CyanogenMOD's APN list file - it's one of the most complete.
Code:
It's located in /system/etc/apns-conf.xml
3. Use UOT kitchen for basic theming on your device.
Code:
http://uot.dakra.lt/
4. Use Google's dns servers
Code:
Create an empty file, name it resolv.conf and put there these 2 lines:
nameserver 8.8.8.8
nameserver 8.8.4.4
Save to /system/etc/.
5. Update Superuser and su binary to latest version (3.0 beta)
Code:
http://goo-inside.me/superuser/
6. Disable sync feature in sqlite
(author: ownhere - needs a source for your device so you can compile the /system/lib/libsqlite.so)
Code:
Patch file here: http://forum.xda-developers.com/showthread.php?t=903507
7. Do not use task killers.
Alright, I think this is it for now.
If you have any other tweaks or better values, you can PM me and I'll include them.
The Following 483 Users Say Thank You to knzo For This Useful Post: [ Click to Expand ]
*Phi* (16th September 2011),
-Eternox- (5th February 2012),
..Cory.. (27th January 2013),
02ranger (11th September 2011),
2easilyamused (14th September 2011),
3xeno (18th October 2011),
3|Saint|5 (1st April 2012),
47th_Ronin (8th April 2012),
4Orr (25th June 2012),
5DChan (2nd January 2013),
5pace (31st March 2012),
AA1973 (27th October 2011),
aaronpoweruser (23rd August 2011),
aavan (17th October 2011),
ac3theone (21st September 2012),
acax456 (28th February 2012),
Ace42 (19th May 2012),
adi55 (12th December 2011),
adoy (13th September 2011),
af974 (13th September 2011),
Akbhar (13th September 2011),
alarien (13th September 2011),
AllEyezOnMe (26th March 2012),
allofusjw (25th August 2011),
alphine.zzz (26th July 2012),
alroger (13th September 2011),
alteredlikeness (20th June 2012),
alvinsiu (3rd October 2011),
Al_Shoot (15th December 2012),
amigo_s (15th September 2011),
AMUK0110 (2nd February 2013),
Andrey G. (31st July 2012),
androidboss7 (23rd October 2011),
AndroidJaspie (13th September 2011),
anisbombaywala (6th October 2011),
antec123 (4th November 2011),
archer928 (27th January 2013),
are-red (4th September 2011),
ariftwister (31st August 2012),
arkerio (6th April 2012),
artifex21 (15th December 2012),
artteam (14th September 2011),
aspee (8th October 2011),
asratxda (16th July 2012),
Atento (26th October 2011),
azoller1 (31st October 2012),
Azwraith7788 (28th December 2011),
badhbt76 (Yesterday),
bagherica (14th February 2012),
balamu96m (19th May 2012),
baliriot (12th September 2011),
barclays (25th August 2011),
basily (14th September 2011),
Be SILENT! (25th January 2013),
beats4x (30th January 2013),
Beejis (28th April 2012),
bigron77 (3rd September 2012),
blmvxer (17th December 2012),
Bologna (14th September 2011),
bone069 (15th February 2012),
boxmax (1st November 2011),
breebauer (24th August 2011),
brieuwers (23rd October 2011),
bunnahabhain (19th September 2011),
CalamitySir (14th September 2011),
calash (13th September 2011),
cdesai (3rd September 2011),
Ceelos09 (3rd September 2011),
chalan30 (19th March 2012),
ChavitoArg (31st May 2012),
cherry676 (22nd February 2013),
chitose_ndy (28th April 2012),
chris5s (16th October 2011),
chris7os (18th October 2011),
Chry_Gigio (24th September 2012),
ckck543 (11th April 2012),
coffeehandle (19th February 2012),
coolexe (29th August 2011),
coringabrazil (28th October 2012),
CosmoDroid (17th August 2012),
crack46 (19th February 2013),
Cristiano Matos (20th November 2012),
Cronos (21st September 2011),
csensitive (3rd October 2011),
D.O.C (21st August 2011),
dajj (7th June 2012),
dakshesh.b85 (1st December 2012),
DaleX (10th September 2012),
DareDan (14th September 2011),
DarkMD (12th April 2012),
dastin1015 (30th November 2011),
Dataslycer (18th December 2011),
dave481985 (14th September 2011),
DavidMKD (19th September 2012),
davidmore (11th June 2012),
DaXmax (20th August 2011),
Daywalkr1990 (9th February 2012),
dbwogus (13th January 2012),
deadey3 (13th September 2011),
DeathCzar (30th June 2012),
DeepUnknown (20th August 2012),
despotovski01 (10th April 2012),
deviler (7th May 2012),
dirtyreturn (29th January 2012),
Ditti4 (13th September 2011),
djb77 (1st January 2013),
djmaz (13th September 2011),
doc_v15 (14th March 2012),
Dogg006 (18th June 2012),
DooMeDboY93 (8th November 2011),
dorimanx (14th September 2011),
dp94 (8th January 2012),
Dr.FANTASTIK-US (6th October 2011),
drydeniv (18th February 2012),
dsexton702 (10th September 2011),
dSlice (2nd November 2012),
Duarte777 (11th September 2012),
duffymm (21st September 2011),
Dunc001 (18th March 2012),
eagledipesh (4th November 2011),
EdikNeznanov (6th January 2013),
edwarddd (12th May 2012),
efl2009 (9th March 2012),
el_liberator (16th September 2011),
emelie (20th December 2011),
Endless7 (12th September 2011),
enewman17 (8th February 2013),
eoghan2t7 (13th September 2011),
Erahgon (2nd October 2011),
EViollet (13th September 2011),
exitmood (22nd August 2012),
extrem0 (3rd August 2012),
eytan123 (5th February 2013),
F308 (5th April 2013),
fabsau (4th March 2012),
Fantomas. (2nd August 2012),
fatbas202 (13th September 2011),
ferreinf (21st September 2011),
festa20 (13th September 2011),
fisha21 (6th June 2012),
fla.sh (21st August 2011),
flolep (26th September 2011),
FPChaim (9th April 2012),
fshami (14th September 2011),
Fujyoshi (10th April 2012),
fundoozzz (2nd March 2012),
fuzzbeans (21st September 2011),
galinha (16th September 2011),
gangsterjoop (15th September 2011),
Garuxa (4th September 2011),
gdi2290 (13th September 2011),
gdsbalaji (13th September 2011),
gengi (31st March 2012),
geniusboy93 (19th February 2013),
Ghostfreak NB (3rd January 2013),
gifton1 (14th September 2011),
Gingo21 (30th January 2013),
giulio_cont (22nd July 2012),
Giyat (27th March 2012),
goenieg (16th August 2012),
gokussjx (14th January 2012),
GregórioAxiaMagno (16th May 2012),
Gtj94 (14th September 2011),
gto (24th June 2012),
guitardoc64 (14th March 2012),
GuneetAtwal (21st December 2012),
Gustavo RD78 (6th September 2011),
gustavo.rocha (6th September 2011),
gwallee (14th September 2011),
HannoSLM (18th November 2011),
hiksmoeda (23rd February 2012),
Hinouchi (24th June 2012),
HTCinspiration (14th September 2011),
I.Chaos (17th September 2011),
IAmTheOneTheyCallNeo (4th July 2012),
Ianis G. Vasilev (21st January 2012),
ibanezman192 (12th June 2012),
ice14777 (8th June 2012),
igor.cv (15th September 2011),
ilievski.ace (13th September 2011),
imanesaurus (10th November 2012),
IN-Freak (4th October 2011),
InfiniteRisen (12th September 2011),
InMesh (28th February 2013),
iridaki (4th September 2011),
IronBlossom (13th February 2013),
IvanDinchev (24th July 2012),
j sta (14th April 2012),
jamcar (4th June 2012),
Jamison904 (19th August 2012),
jasonwsc (30th June 2012),
jbbandos (19th September 2011),
jdhas (13th September 2011),
Jejs234 (13th September 2011),
jeti182 (4th June 2012),
JieeHD (13th September 2011),
JKILO (4th February 2012),
joeykrim (13th March 2012),
JohnCorleone (3rd September 2011),
johnhale (8th February 2012),
Jonfensu (1st July 2012),
Jonny (16th February 2012),
jullman (30th August 2011),
jungbum (19th September 2011),
kajet915 (25th December 2011),
kalambik (18th March 2013),
kamalnath (24th August 2011),
kanttii (8th February 2012),
kapilthio (17th March 2012),
karan128 (19th April 2013),
kartikk (17th September 2011),
kcthomlau (27th December 2011),
Kenjboy (1st February 2013),
Kennes95 (7th October 2011),
khalang (25th August 2012),
KingDavid63 (21st September 2011),
Kir3 (21st October 2012),
Kirpman (23rd April 2012),
kjaved373 (22nd November 2011),
kkkhattak (22nd June 2012),
klacenas (28th September 2012),
klin1344 (12th March 2012),
Knowledge0417 (4th September 2012),
KNTXTremE (8th July 2012),
koenvbeek (12th September 2011),
kokayyn (16th October 2012),
kokonuter (23rd December 2012),
konstantin12 (27th June 2012),
konsti23 (31st December 2011),
Krendelrus (12th December 2011),
kryptoner (1st December 2011),
krzych (22nd September 2011),
ktrotter11 (7th March 2012),
kubson1999 (25th February 2012),
KurskS (17th September 2011),
kyrillos13 (20th September 2011),
lazyb421 (13th May 2012),
Leoisright (17th December 2011),
le_manhpro (13th December 2011),
LiLChris06 (8th March 2012),
littleg33k (26th November 2012),
LJP1111 (23rd March 2012),
lkirra (16th March 2013),
louie317 (14th September 2011),
lupp0l0 (13th September 2011),
LynXT (17th August 2012),
macmanjpd (28th September 2011),
mad1111 (3rd September 2011),
madfix (8th October 2011),
madman_sle (6th April 2012),
malaw (21st October 2012),
maluga (1st January 2013),
ManCityFC (26th December 2011),
MarckX (3rd June 2012),
mariaulfa44 (23rd February 2012),
mario_fe (26th April 2012),
marko! (12th November 2011),
MarkVis (25th September 2011),
marlontoe (3rd September 2011),
Marshy919 (11th June 2012),
marsr (14th September 2011),
marviv69 (5th October 2011),
Master Ramy (11th June 2012),
masterpfa (7th October 2011),
matias.diez.tj (3rd May 2013),
MattDN93 (24th April 2012),
Mattymat (10th September 2011),
mcmb03 (13th September 2011),
mDroidd (16th February 2012),
Miasmic (17th September 2011),
Michał12 (7th August 2012),
mihir287 (8th September 2011),
Milan94 (20th October 2012),
miso00 (19th June 2012),
mistadman (1st October 2011),
Misterjokerboy (24th April 2012),
moegrave (21st September 2011),
molimo (9th October 2011),
morenoro (2nd March 2012),
mouhab (23rd June 2012),
mpitcher225 (15th September 2011),
MrSenne (30th January 2012),
Msiiek (13th November 2011),
MvSt (14th September 2011),
mvszgz (26th January 2013),
N00BY0815 (14th January 2013),
n0rg3N_ (31st May 2012),
nag xperia (27th January 2013),
Nasty_z (9th June 2012),
NatsuDragneell (4th November 2011),
needo (14th September 2011),
NextEQ (9th April 2012),
nibla101 (27th December 2011),
nikhilguitar (17th September 2011),
nikosrs4 (2nd January 2012),
nimbold (31st December 2011),
nk7 (25th January 2012),
Nonverbose (3rd May 2012),
Nooby Arc S User (7th November 2012),
notass (23rd January 2013),
notime2d8 (14th September 2011),
Notorious544d (1st December 2011),
nukeitall (12th September 2011),
NUNsLAUGHTER92 (12th November 2012),
NVardan (10th May 2013),
Obartuckc (23rd April 2012),
oikeakives (4th December 2011),
Oldsteel (25th January 2013),
onlavu (9th February 2012),
onlyankush_s (1st October 2011),
optik19918 (14th June 2012),
Owl.Kr (23rd November 2011),
pancit (23rd February 2012),
paolo-red1 (3rd July 2012),
Paracetamol100 (2nd October 2011),
parham1234 (29th November 2011),
patrao_n (17th April 2012),
Patrick-Mav (8th September 2011),
pbrauer (5th March 2012),
pctech101 (12th January 2012),
PeaceMaker_htc (24th April 2012),
pee-wee (21st December 2012),
Perka (8th October 2011),
peshovec (15th September 2011),
PeteM95 (11th May 2012),
Peteragent5 (18th March 2012),
ph03n!x (3rd September 2011),
PhompAng (7th September 2011),
pierro78 (12th September 2011),
pinguy1982 (17th December 2012),
PiotrekDG (14th September 2011),
pipis87 (17th July 2012),
plainjane (10th November 2011),
pongster (21st August 2011),
pr0xy mAn1Ac (13th September 2011),
psychEinside (30th May 2012),
pungkas (22nd July 2012),
punkmaxx (16th September 2011),
qkster (21st February 2012),
r2d2-andras (31st October 2012),
R3v3nGe (18th April 2013),
r4z0r (18th May 2012),
rajatbajpai0072 (17th September 2011),
Rajneeshgadge17 (10th April 2012),
ramski (25th September 2011),
rashidkn (13th September 2011),
rasroygbiv (11th November 2011),
ravagilli (10th October 2011),
ravichandrabr (13th September 2011),
raypiece3 (18th October 2012),
RealGunjack (24th March 2012),
reisamm (6th July 2012),
renguer0 (1st November 2012),
Reviewers (24th November 2011),
ridobe (4th April 2013),
rk00064 (16th April 2012),
rmg2 (1st April 2012),
robertips (10th February 2012),
rogerscrack (17th September 2011),
RomsWell (26th July 2012),
RooceeD (26th August 2011),
Rounsy222 (4th September 2011),
runningdap (13th September 2011),
Rycon33 (25th August 2011),
Rydah805 (14th April 2012),
r_i_x (27th December 2012),
sabbour_onar (11th June 2012),
sach in (27th July 2012),
sakindia123 (13th September 2011),
salesale (13th June 2012),
salvopetrucci (15th February 2012),
sam1136 (3rd January 2013),
sathurnn (26th September 2011),
sbryan12144 (5th October 2011),
Scothran3 (1st January 2012),
scrack26 (22nd September 2011),
sdk16420 (22nd December 2011),
SDoom (18th July 2012),
sdtaddey (27th February 2012),
seadersn (5th September 2011),
sechko (2nd July 2012),
Sentoumaru (8th September 2012),
Serious_Beans (13th September 2011),
sgyd12 (31st March 2013),
shankyt (26th April 2012),
sharkie405 (29th January 2012),
sharmanking (13th September 2011),
shazzy1 (28th January 2013),
shikaziin (14th September 2011),
shrome99 (13th September 2011),
ShyamSasi (24th August 2011),
Sigray (5th September 2011),
sigurd_LU (13th February 2012),
Simba501 (22nd July 2012),
sinkster (25th September 2011),
sirilpta (14th January 2012),
Siznex (27th June 2012),
skrillex13 (1st March 2013),
slaj76 (11th May 2013),
slartyxxx (14th September 2011),
SlimSnoopOS (8th October 2011),
Slynightdark (10th January 2012),
smashmix (31st December 2011),
smirkis (11th March 2012),
smithinsundar (22nd June 2012),
Smonic (27th July 2012),
sniperkill (4th March 2012),
splattx_x (23rd August 2011),
spyd312 (28th September 2011),
starbagz (23rd January 2013),
StaticX (29th January 2012),
Stiegi (23rd September 2011),
stona175 (27th October 2012),
stoske (13th September 2011),
strofo (19th October 2012),
stuffinthesky (5th June 2012),
suaverc118 (4th January 2013),
Superman (25th September 2012),
Surajkumar (7th August 2012),
sushdroid (11th April 2013),
sweetpotatoz (1st November 2011),
syamsoul (13th September 2011),
syps54 (15th December 2011),
tailsthecat3 (4th September 2011),
Taimur Akmal (30th January 2012),
tam3xx (23rd September 2011),
tarekh020 (30th May 2012),
Tegen (17th September 2011),
thachtunganh (12th September 2011),
thatdudepoops (10th September 2011),
Theonew (23rd September 2011),
thewarhawk (5th October 2011),
theZest (2nd September 2012),
ThE_DeamoN (10th October 2011),
thronnos (16th September 2011),
thunder888 (30th June 2012),
Tikki Pon (25th July 2012),
timmae2 (19th September 2011),
Tokl (13th September 2011),
tommytomatoe (14th September 2011),
Tortel1210 (13th September 2011),
torxx (19th June 2012),
trance89 (23rd September 2011),
triton302 (14th June 2012),
Turducken (3rd September 2011),
TweetyPeety (9th September 2011),
ugothakd (3rd September 2011),
ukanth (15th September 2011),
veer1238 (19th September 2011),
Vernox701 (30th August 2011),
VibrantThemer (26th December 2011),
vikasb32 (28th December 2011),
vinnyt (18th July 2012),
violence1907 (27th October 2011),
ViperPyro (12th March 2012),
Wakamatsu (3rd April 2012),
waqasr (28th October 2011),
wd5gnr (27th July 2012),
whisper_ (7th January 2013),
WildWere (14th September 2011),
will8578 (20th August 2011),
willembier (30th April 2013),
wolfpack612 (1st November 2012),
xcxa23 (14th September 2011),
xdadevnube (1st June 2012),
xdevilium (21st June 2012),
xHausx (3rd September 2011),
xl DIGITAL lx (17th October 2011),
xp7 (30th May 2012),
XsMagical (17th September 2011),
xXCorleoneXx (13th July 2012),
Yokav (6th May 2012),
youngpro83 (5th September 2011),
zare555 (23rd July 2012),
zFr3eak (14th September 2011),
ZioGTS (25th September 2011),
Zorua (4th November 2012),
|Melvin| (6th November 2011)
20th August 2011, 07:17 PM
(Last edited by udK; 13th September 2011 at 09:41 PM .)
Reason: there is not reason to full quote.
Recognized Themer
Thanks Meter
9575
Posts: 10,612
Join Date: Sep 2008
Location: Singapore
DONATE TO ME
Wow... Neojn, will tis work on lg optimus one? I know u used to have a optimus one...
Sent from LGE Secret phone using tapatalk app...
Student | Android Bitching | 16/2013 | Xylon Ownership #2
The Following 6 Users Say Thank You to DaXmax For This Useful Post: [ Click to Expand ]
20th August 2011, 07:25 PM
Senior Member -
OP
Thanks Meter
3805
Posts: 1,979
Join Date: Nov 2010
Most of them will, yeah.
The Following 5 Users Say Thank You to knzo For This Useful Post: [ Click to Expand ]
20th August 2011, 07:41 PM
Recognized Themer
Thanks Meter
9575
Posts: 10,612
Join Date: Sep 2008
Location: Singapore
DONATE TO ME
Quote:
Originally Posted by
Noejn
Most of them will, yeah.
Will try, thanks...
Sent from LGE Secret phone using tapatalk app...
Student | Android Bitching | 16/2013 | Xylon Ownership #2
20th August 2011, 07:50 PM
Senior Member
Thanks Meter
51
Posts: 506
Join Date: Apr 2011
Location: herne bay
my word thats a MASSIVE list lol thanks, some interesting tweaks there
Sent from my HTC Desire using XDA App
Galaxy Note 2
Android revolution HD
Android...Phone...History...
T-Mobile-Pulse---HTC Wildfire---ZTE Blade---HTC Desire---Xperia Play---[B]HTC evo3d/B]----sgs3 ---- SG NOTE 2
Android...Tablet...History...
Scroll 7inch---Hannspree Hannspad---ASUS TRANSFORMER
20th August 2011, 07:53 PM
Senior Member -
OP
Thanks Meter
3805
Posts: 1,979
Join Date: Nov 2010
If I have time in the future I can create a script that applies them all.
(with a check of already existing tweaks / compatibility with the device, etc)
The Following 6 Users Say Thank You to knzo For This Useful Post: [ Click to Expand ]
22nd August 2011, 12:17 AM
Junior Member
Thanks Meter
1
Posts: 16
Join Date: Jul 2011
Location: Bangkok
If some script fail it may cause bootloop? And can use for all device?
thanks for answer.
22nd August 2011, 02:22 PM
Senior Member -
OP
Thanks Meter
3805
Posts: 1,979
Join Date: Nov 2010
Quote:
Originally Posted by
Deaw^^
If some script fail it may cause bootloop? And can use for all device?
thanks for answer.
None of them should cause bootloop, at least if you follow everything I wrote.
Yes, they work on most devices. Just read what it needs.
The Following User Says Thank You to knzo For This Useful Post: [ Click to Expand ]
22nd August 2011, 11:32 PM
Recognized Contributor
Thanks Meter
1968
Posts: 4,105
Join Date: Jan 2011
Location: Belfast
DONATE TO ME
how do i test this one because i cant remember what i rename the bold parts to lol
tune2fs -o journal_data_writeback /block/path/to/system
tune2fs -O ^has_journal /block/path/to/system
tune2fs -o journal_data_writeback /block/path/to/cache
tune2fs -O ^has_journal /block/path/to/cache
tune2fs -o journal_data_writeback /block/path/to/data
tune2fs -O ^has_journal /block/path/to/data
thanks in advanced
Eoghan
The Following User Says Thank You to eoghan2t7 For This Useful Post: [ Click to Expand ]
23rd August 2011, 07:08 PM
Junior Member
Thanks Meter
1
Posts: 16
Join Date: Jul 2011
Location: Bangkok
I hav another question..What is "
Flags "?
- 18. Miscellaneous
flags
- 7.
Flags blocks as non-rotational and increases cache size
thanks for answer
The Following User Says Thank You to Deaw^^ For This Useful Post: [ Click to Expand ]
Thread Tools
Search this Thread
Display Modes
Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Go to top of page...
Most Thanked In This Thread
6 If I have time in the
future I can … 6 Wow... Neojn, will tis
work on lg … 5 Thread cleaned, calm down
and stay on … 5 (quote)
Here is your
build.prop from … 5 Most of them will, yeah.