Related
I open this thread to know the sysctl config settings for each one of you.
will have this structure:
MFK (min free kbytes)
DR (dirty radio):
DBR (dirty radio background):
VFS (vfs cache pressure):
OAT (Oom Allocating task): Y or N (yes or not enabled)
* and the advantage(s) of the configuration: (more performance, speed up, emulators works better batery life increases, etc.)
for example:
MFK: 32568
DR: 5
DBR: 3
VFS: 0
OAT: Y
* more performance, and speed up in the applications
wat we need to do??
There's already a thread. Go to android development and read the RAM discussion. alfsamsung posted his settings there and im going to post a summary.
Pjay12 said:
There's already a thread. Go to android development and read the RAM discussion. alfsamsung posted his settings there and im going to post a summary.
Click to expand...
Click to collapse
and yours settings???, is the reason of thread, posts the configuration of everyone and benefits.
jiawei0309 said:
wat we need to do??
Click to expand...
Click to collapse
you have to download sysctl from market and test settings to optimize ram in x8, then post your results
SMALLJIM said:
you have to download sysctl from market and test settings to optimize ram in x8, then post your results
Click to expand...
Click to collapse
8192-95-60-OOM enabled
General speed increase.
Please tell me! What values the best's for speed ?
tony-noob said:
Please tell me! What values the best's for speed ?
Click to expand...
Click to collapse
test with the spyder´s settings
But spyder ur setting is incomplete
Sorry my english
Sent from my X8 using XDA App
4096-95-65-10-OOM enabled
this is my best setting
roymouse said:
But spyder ur setting is incomplete
Sorry my english
Sent from my X8 using XDA App
Click to expand...
Click to collapse
It's complete, just that the format is horrible (oops my bad)
MFK: 8192
DR: 95
DBR: 60
VFS: 20
OAT: Y/N (Debatable, recommended is No but I use Yes)
General speed increase and faster loading. Use some settings from this http://forum.xda-developers.com/showthread.php?t=1212396&page=14
to speed up your phone more.
thanks dude
SpyderX said:
It's complete, just that the format is horrible (oops my bad)
MFK: 8192
DR: 95
DBR: 60
VFS: 20
OAT: Y/N (Debatable, recommended is No but I use Yes)
General speed increase and faster loading. Use some settings from this http://forum.xda-developers.com/showthread.php?t=1212396&page=14
to speed up your phone more.
Click to expand...
Click to collapse
thanks spyderx
Is SYSCTL CONFIG backup orginal settings ?
Update 03-04-12:
This project moved to:
http://forum.xda-developers.com/showthread.php?t=1529746
---
Update 02-18-12:
Just to clarify: DONT FLASH THIS ZIP-FILE !!! It's NOT a flashable zip.
On sidenote, maybe the bootloop problem is caused by traing to flash this zip ? Maybe the .txt file in there confuses android ? I don't know but DONT flash this! Use manual installation.
---
Would any OP be willing to move this thread to the Ace Development Subforum ? Thanks a lot !
---
Update 02-09-12 (number 2):
The touchscreen sensitivity tweak was removed from the script as suggested by the posters here. It did not work anyway as the path to the files was non-existant.
Attached the updated script with short installation instructions.
---
Update 02-09-12:
I went through the LagFreeV3 script and cleaned it up / optimized it so there are no more useless repetitions of the same commands. Succesful startup of the script was tested using DDMS.
Attached the cleaned up script with short installation instructions.
---
All,
longtime lurker - first time poster here. Since i'm not allowed to post into the Ace Development subforum i have to post right here.
Looks like there are some bugs in Slaid480's latest LagFreeV3 script. On my ace running DDM during boot i can see it erroring out right here:
Code:
02-08 14:26:50.239: I/run-parts(100): /system/etc/init.d/S95LagfreeV3: 351: Syntax error: word unexpected
02-08 14:26:50.239: I/run-parts(100): run-parts: /system/etc/init.d/S95LagfreeV3 exited with code 2
so it's not even running to its EOF due to this error. Looking at he script the lines around line 351 look like this:
Code:
echo ${READ_AHEAD_KB} > /sys/block/mmcblk1/queue/read_ahead_kb
for i in \ `find /data -iname "*.db"` do \ sqlite3
$i 'VACUUM;'
done
echo "6144 87380 524288" > /proc/sys/net/ipv4/tcp_wmem
with " $i 'VACUUM;' " being on line 351. So: i'm not a BASH pro but maybe someone knows what is the syntax error in here and a way to fix it ?
Also by looking at the script there seem to be a lot of lines / functions doing the same things over and over, like setting minfree or readahead_kb - maybe in a community effort it would be possible to consolidate that script into something smaller and more streamlined ?
Just a thought
Yes I think it might have to do with that word.....try deleting the line .
Herpderp Defy.
maybe slaid can give this a clue?
g_BonE said:
...
Also by looking at the script there seem to be a lot of lines / functions doing the same things over and over, like setting minfree or readahead_kb - maybe in a community effort it would be possible to consolidate that script into something smaller and more streamlined ?
Click to expand...
Click to collapse
slaid did exactly that to
One Script To Roll Them ALL
Click to expand...
Click to collapse
I guess while cutting, pasting and reformatting all of known scripts to streamline them, two more newlines were accidentally added here?
Try to edit the above code snippet to
Code:
for i in \ `find /data -iname "*.db"` do \ sqlite[B][COLOR=Red]3[/COLOR][/B] [COLOR=Blue][B]$[/B][/COLOR]i 'VACUUM;'
and see, if it runs till the end. ...
^^
i will give this a try and come back here to post about the results. meanwhile i was also thinking about shuffling through all the parts in the script that essentially do the same thing, dont know if i'd be allowed to clean this up and repost the cleaned version here ?
I'd PM Slaid and ask him. The android spirit is one of openness, as is the spirit of almost all the work on modifying our favourite android ROMs. LagfreeV3 doesn't specify a software licence so it is not clear what slaid's intentions are in terms of modifications to his code. Ideally code should be licenced (and forkable via github) to make these things clearer. I think the broken bits are supposed to be formatted as in the following (the equivalent function in engengis, written more robustly):
Code:
for i in \
`busybox find /data -iname "*.db"`;
do \
/system/xbin/sqlite3 $i 'VACUUM;';
/system/xbin/sqlite3 $i 'REINDEX;';
done;
There are other sorts of errors, like the broken hashbang on line 387 (which is just a stock turboboost copy'n'pasted in) -- and yes, loads of places in which lagfreeV3 does something which is then done again by the inline turboboost. As some ROMs include turboboost and lagfree, when they upgrade to V3, things will often be repeated 3 times!!!
Looking at the code a bit is another good reason to try engengis, which combines many tweaks in a flexible system without all the duplication.
iandol said:
...
LagfreeV3 doesn't specify a software licence so it is not clear what slaid's intentions are in terms of modifications to his code.
...
Click to expand...
Click to collapse
There ain't any, because he also only copied it from several sources. You can find there names and "Copyrights" verbatim in there.
iandol said:
...
Looking at the code a bit is another good reason to try engengis, which combines many tweaks in a flexible system without all the duplication.
Click to expand...
Click to collapse
Good find! I'll take a closer look. Like it already, that the options are well explained and documented.
^^
iandol said:
Looking at the code a bit is another good reason to try engengis, which combines many tweaks in a flexible system without all the duplication.
Click to expand...
Click to collapse
Maybe a little out of topic, but what if we want to switch to engengis from lagfix? I have both lagfix and turboboost installed on my stock rom and i'd love to switch to this new tweak, but how? Is removing S95lagfix in /system/etc/init.d good enough?
As i mention in his thread, if u looks closedly u will find more lines actually not working...its maybe taken from other device tweaks
regards,
•ƒγяύs ργяσ™•
Delete S95Lagfree to get rid of lagfreeV3.
87calibration, S95zipalign S98CFSK and S98system_tweak remove turboboost.
Engengis contains the cache dropping (S98CFSK), zipaligning (S95zipalign) and deep tweaks (S98system_tweak) of turboboost, and I delete 87calibration as all it does is delete batterystats the first time it is run which I'd rather not do (and engengis can do this via the commandline control when I choose to).
Engengis also contains the same sqlite3 version as turboboost to optimise the sqlite databases, and performs both a a vacuum and a reindex, which is more thorough optimisation than the lagfree/turboboost combination seems to do...
Alright, after some ~6 hours of fiddling with the lagfree V3 script i managed to get it semi-cleaned up. I'll post the zip-file in my first post of this thread.
Regarding Engengis: I'll have a look at this soon and give it a shot
Touchscreen tweak will not working coz there are no path name like that exist...
regards,
•ƒγяύs ργяσ™•
will try it later on! So still thiscompatible with turboboost? Delete s78touchscreen part from turboboost, right?
Thanks...6 hours is a lot of work dude!
thanks g_BonE -- you still have the touchscreen tweaks in at line250
Reading through the code this is much better than lagfreeV3 original, and should combine better with turboboost...
Thanks for the nudge to the non-working touchscreen tweak. I removed the tweak alltogether and reuploaded the fixed script. See first post
I'll have a go at the turboboost v8.5 script: maybe i can integrate all / most of it into the cleaned LFv3 script. Maybe also the "journaling disabler" script can be integrated as it is just a matter of mount options.
g_BonE said:
Thanks for the nudge to the non-working touchscreen tweak. I removed the tweak alltogether and reuploaded the fixed script. See first post
I'll have a go at the turboboost v8.5 script: maybe i can integrate all / most of it into the cleaned LFv3 script. Maybe also the "journaling disabler" script can be integrated as it is just a matter of mount options.
Click to expand...
Click to collapse
I am really not an expert, not even close, but doing a script with so many lines will probably not have the desired result?
As member pyronia suggested it's better to do small scripts for a specific task than having one for all. Maybe the one for all script would suit devices with more power to process the script?
Anyway, already thanked, glad someone cleaned that script, watching you closely for the updates!
I was used this fix script. But when I check in terminal manager 'a2sd check' the end value min RAM free change to 14xxx, when used lagfixv3 the value is 23xxx.
So actually it's works or not? Thanks
Sent from my GT-S5830 using Tapatalk
Hello g_BonE!
I'm having an issue with your last version (I got stucked in Android Screen). Is there anything I did wrong? I just entered in /system/init.d/deleted s95lagfix and simply copied you s99 with all permissions (with root explorer) and then I got stucked.
What can I do?
Thank you very much for your script!
I knew it there was something fishy with these scripts.LOL Thank you g_BonE for your effort! I'll be hitting the thanks button buddy. Oh and another thing, should I delete V8.5 TurboBoost too?
---------- Post added at 08:38 AM ---------- Previous post was at 08:26 AM ----------
For the people who don't read the instructions:
You should delete S95Lagfree first, located at etc/init.d. Then paste S99_LFv3gB on the same folder (etc/init.d), then set permissions to rwe-rwe-rwe.
I used to think that it should be at rw-r-r sir g_BonE.
itasoulas said:
I am really not an expert, not even close, but doing a script with so many lines will probably not have the desired result?
As member pyronia suggested it's better to do small scripts for a specific task than having one for all. Maybe the one for all script would suit devices with more power to process the script?
Anyway, already thanked, glad someone cleaned that script, watching you closely for the updates!
Click to expand...
Click to collapse
Yeah bro, i test so many script but not all working well coz of too much lines..the devices itself maybe could not read the script properly when too much lines in it, thats why i make a single line script that actually u can see the different...
regards,
•ƒγяύs ργяσ™•
Please Help make kernel training
and tools needed to put it in this section.
First of all thanks for all Developers ( Oleg_k, Volk204,Rebellos,Tigrouzen, mijoma, nbates66, anghelyi, mikegapinski, hunktb, autra,Alberto96
and many others)
Wonderfull tuto by mylove : http://forum.xda-developers.com/showthread.php?t=2276481
There is also one in all badadroid thread, but some links are dead (you have to use their manifest.xml though)
You need : linux 64 bit=>64bit processor (all recent pc have it) (Ubuntu 12.04 64 bit work great)
Some 30Gb on your hard drive (there is 10 Gb to download for whole sources, less for kernel only, and lot of space for /out)
Patience, and knowing code
all recent pc have it
Click to expand...
Click to collapse
In theory... if you have only old Hardware for tests...
I need workaround for 32 bit...
Thanx.
Best Regards
adfree said:
In theory... if you have only old Hardware for tests...
I need workaround for 32 bit...
Thanx.
Best Regards
Click to expand...
Click to collapse
Something interesting i just found https://groups.google.com/forum/#!topic/android-building/xFtX6K42BDE
Compile the compiler, smart
And another,maybe less easy https://github.com/yath/android_prebuilts_gcc_linux-x86-32_arm_arm-linux-androideabi-4.6
BenzoX said:
Something interesting i just found https://groups.google.com/forum/#!topic/android-building/xFtX6K42BDE
Compile the compiler, smart
And another,maybe less easy https://github.com/yath/android_prebuilts_gcc_linux-x86-32_arm_arm-linux-androideabi-4.6
Click to expand...
Click to collapse
Hey benzoX
Step 3 : Preparing Repo
-Run these commands (each line is a command)
erorr not found link >> https://dl-ssl.google.com/dl/googlesource/git-repo/repo > repo
Please give me a new link
meysam.ir said:
Hey benzoX
Step 3 : Preparing Repo
-Run these commands (each line is a command)
erorr not found link >> https://dl-ssl.google.com/dl/googlesource/git-repo/repo > repo
Please give me a new link
Click to expand...
Click to collapse
try to replace "https://dl-ssl.google.com/dl/googlesource/git-repo/repo" by "http://commondatastorage.googleapis.com/git-repo-downloads/repo"
Hello guys, I'm here to present you my new rom based on the new update sony marshamallow final version .238, optimized stock tops for best experience.
--------------------- // ---------------------
~ Features and Changelog ~
- Full ROM
- Deodexed
- Debloated Agressive
- Superuser mod, services.jar patched
- TWRP 3.0.2
- ROM rooted
- Enable Init.d
- RXSM Script ~ New script RXSM ~
- CPU completely Optimized
- Optimized battery usage
- Perfect Sound MOD
- Xperia X theme and Icon Pack
- Xperia X SystemUI Support ~ Systemui Xperia X not included ~
- Build.Prop Tweaks
- Xperia X bootanimation
- Optimized for multitasking
- Settings Xperia Performance Max Dark Fury™
- Emoji in keyboard mounted
- Xposed Modules
- Improved Doze
- DATA cleaning
- Optimized RAM
--------------------- // ---------------------
~ Requirements ~
- Z3 compact [D5833][D5803]
- Tested with LB/UB
- To install my rom you need be. Basic 238 all necessary files available in ~ Link ~ soon after you can Flash my rom.
--------------------- // ---------------------
~ How to install ~
* Download the ~[ROM][xZ3c][6.0.1][238][STOCK][MM][LB][UB]Xperia Performance Max Dark Fury™.zip ~ and place it on your sdcard.
* In your TWRP, just install the rom and then the xposed (optional)
* Wipe >> Factory Reset <<
* Reboot
######################
#### UPDATE DARK FURY Z3c ####
#####################
--------------------- // ---------------------
Already in the initial screen xperia (home xperia) I advise you to go into the settings and give a reset of manufactures, so you stay free of all caches and bugs.
--------------------- // ---------------------
~ Thanks in particular ~
@serajr, @Gustavo RD78, @Wajk, @dontbelive, @Rajeev, @MarianaLovegood, @xswxm, @rovo89, @Pandemic, @Woalk, @C3C076, @whalesplaho, @Bazoocaze, @ssrij, @jjwrongjj, @Mohitash, @MrWasdennnoch, @AutumQueen92, @nreuge, @Naman Bhalla , @henryzhang317, @xSilas43, @.hEiMDaLL., DarkSpiceR7.5, @zacharias.maladroit, @Wolfbreak, @C3C076, ztc1997, j2rong, BenLing, betonStyle, RXSW, XperianosBr's
Do not forget to give me a thank you [:good:], it will be great for me because somehow will encourage me to keep my work and create new roms and mods! Thank you all
So far no bug was found. I ask you please file a bug found that I can fix. Thank you
Wow interesting. Will give it a shot!
Thanks.
His Dudeness said:
Wow interesting. Will give it a shot!
Thanks.
Click to expand...
Click to collapse
Great Work! How do you remove "Perfect Sound Mod", I prefer using Viper4Android. Thanks
How about switching from your previous rom? Do I need to install stock beta first?
Sent from my Z3 Compact using XDA Labs
Hi guys, it's been ages I haven't geeked on my phone. Should I be aware of particular problems if trying to install this rom coming from a locked Bootloader (used an exploit hack I think) + TWRP 2.8.7.0 + 5.1.1 (23.4.A.1.232) ?
Oops! /system/app/Force does not contain Force.apk, instead it contains ForceDoze_1.3.4_rev_38.apk.
Also, /system/app/fix doesn't contain fix.apk but com.pyler.mobileradioactivefix.apk.
Also, /system/app/Xposed.
Okay, no idea if you actually use linux or Windows (I guess the latter, concidering the funny characters of your rom-zip-files that are a nuscience in any shell), but if you do use linux, here's a simple and quick script that'll make all the directories for you. Just throw all apks that goes in app in app, then run the script there. Throw what ever needs to be in priv-app in to priv-app and run the script there.
Code:
#!/bin/bash
for file in ./*.apk
do
name="$(basename "$file" .apk)"
mkdir -p "$name"
mv "$file" "./$name"
done
Ah, /system/etc/customization/content/com/sonyericsson/wallpaperpicker/wallpapers conatins Thumbs.db. You do use Windows. Nevermind the script then.
Also, you've removed /system/app/experienceflow2livewallpaper-release - this is why the background is black (until changed by the user).
His Dudeness said:
Wow interesting. Will give it a shot!
Thanks.
Click to expand...
Click to collapse
Thanks
Verbato said:
Oops! /system/app/Force does not contain Force.apk, instead it contains ForceDoze_1.3.4_rev_38.apk.
Also, /system/app/fix doesn't contain fix.apk but com.pyler.mobileradioactivefix.apk.
Also, /system/app/Xposed.
Okay, no idea if you actually use linux or Windows (I guess the latter, concidering the funny characters of your rom-zip-files that are a nuscience in any shell), but if you do use linux, here's a simple and quick script that'll make all the directories for you. Just throw all apks that goes in app in app, then run the script there. Throw what ever needs to be in priv-app in to priv-app and run the script there.
Code:
#!/bin/bash
for file in ./*.apk
do
name="$(basename "$file" .apk)"
mkdir -p "$name"
mv "$file" "./$name"
done
Ah, /system/etc/customization/content/com/sonyericsson/wallpaperpicker/wallpapers conatins Thumbs.db. You do use Windows. Nevermind the script then.
Also, you've removed /system/app/experienceflow2livewallpaper-release - this is why the background is black (until changed by the user).
Click to expand...
Click to collapse
The names of the apps are cuz I rename them so. Use linux and windows :good:
patrol95 said:
How about switching from your previous rom? Do I need to install stock beta first?
Sent from my Z3 Compact using XDA Labs
Click to expand...
Click to collapse
Yes you need, and best to avoid errors
Marília de Oliveira said:
The names of the apps are cuz I rename them so. Use linux and windows :good:
Click to expand...
Click to collapse
Yah, but you do realize that if you have a directory called /system/app/theme then android will look for theme.apk inside that directory? If it isn't there then the android system will go on to the next directory. If you have a file called theme-with-a-different-name.apk inside /system/app/theme, then the android system will skip that file. It's a part of google having fun making a hassle for everyone...
Hello,
http://forum.xda-developers.com/z3-...3c-xperia-performance-max-ultra-fury-t3360315
This is the same ROM?!?
Revontheus said:
Great Work! How do you remove "Perfect Sound Mod", I prefer using Viper4Android. Thanks
Click to expand...
Click to collapse
For removing this you have to replace that 2 files from attachments. Place them in "/system/etc" and dont forget about right permissions (rw-r--r--) . Files from stock 0.570 for D5803
Please come up with an original name Marilia, it looks like you put all the words you know together and make a name, you put effort in this, the title makes it very childish imho.
pickmod said:
Hello,
http://forum.xda-developers.com/z3-...3c-xperia-performance-max-ultra-fury-t3360315
This is the same ROM?!?
Click to expand...
Click to collapse
Don't. Different ROMs
Sent from my D5803 using XDA Free mobile app
marshalpear said:
Please come up with an original name Marilia, it looks like you put all the words you know together and make a name, you put effort in this, the title makes it very childish imho.
Click to expand...
Click to collapse
Bugging you? ??
Sent from my D5803 using XDA Free mobile app
Max Dark Fury or Max Ultra Fury Alliance ???
Hi
Bettwen This ROM and Performance Max Ultra Fury Alliance™ 1.0, which is the difference ??
Which of both are better ??
Regards
Juan
agile2011 said:
Hi
Bettwen This ROM and Performance Max Ultra Fury Alliance™ 1.0, which is the difference ??
Which of both are better ??
Regards
Juan
Click to expand...
Click to collapse
Base and other things
alanbras said:
Base and other things
Click to expand...
Click to collapse
If I want flash this ROM but mantein all DATA that I have actually, How can I do this ??
Actually have Performance Max Ultra Fury Alliance™ 1.0 ROM
Thanks a lot
Juan
agile2011 said:
If I want flash this ROM but mantein all DATA that I have actually, How can I do this ??
Actually have Performance Max Ultra Fury Alliance™ 1.0 ROM
Thanks a lot
Juan
Click to expand...
Click to collapse
use Titanium Backup to backup all your User Apps and it's data
UPDATE DARK FURY xZ3c
What's new?
Aggressive mode in memory ram
Improvement in CPU
Play services fixed battery
Improvements in the management of the cpu for better battery saving
OVERLAY Material Accent Xperia Keyboard v2
Fixed Bug
Installation mode* Download the attached file
* Make the flash only
* Reboot
Dynamic unpacker
Hey, here I am with one testing kitchen to pack and unpack SUPER.IMG
its just in initial phase, the motive behind this kitchen is only to help others who wants to learn and make it more better
Initial
Clone that repo with git clone https://github.com/neel021000/dynamic.git tho its still in beta phase.
Get the super.img file and put it in the same folder as the binary named 'lpunpack'
What needed?
Linux machine and some time
REPO
Dynamic unpacker
extracting stuff
Note: Some devices have only: system, odm, vendor and product. Oppo/Realme devices can have oppo_product, then use imjtool binary its there too!!
Shell time:
chmod a+x ./kitchen.sh
./kitchen.sh
or
. kitchen.sh
choose as per your need!
Credits
@DAvinash97 - for his base script
@Astrako - for his help in each and everything
@yukosky - for explaining me and sharing his idea
@cytolytic - for his clever ideas
Google sources - for files
Credits for Binaries (backbone of this kitchen)
bynarie - lpunmake and lpmake is his property
morpheus______ - imjtool is his property
- if I forgot to mention anyone, please do let me know by pming me on telegram @neel0210
OMG! Good work as usual!
epic! thanks!
Astrako said:
OMG! Good work as usual!
Click to expand...
Click to collapse
tysm
el0xren said:
epic! thanks!
Click to expand...
Click to collapse
I am not a dev but I would like to wish u well done good job
Good work! But you forgot to credit the owners of binaries. Here
DAvinash97 said:
Good work! But you forgot to credit the owners of binaries. Here
Click to expand...
Click to collapse
Agnes you're life saver. Just added.
kitchen*
Epic work as usual @neel0210
Working on WSL2 ?