Anyone know what happened to the link on the OP for the incognito color series for 1.6?
The thread is in the themes section of this forum if you search.
Threads removed from bgill theme section, apparently he won't be theming anymore...
So, when the rumored 2.2.1 update for the X launches, are we still gonna be able to install this rom over the ota?
Sent from my DROIDX using DroidForums App
The thread is in the themes section of this forum if you search.
Threads removed from bgill theme section, apparently he won't be theming anymore...
Ahh, didnt realize that. Incognito Red is still in Rom Manager.
**NOOB ALERT**The following is a fix for the known bug - sysctl.conf tweaks not being applied.
1) In /etc/install-recovery.sh, underneath #!/system/bin/sh, add:
this cause the tweaks to be executed at boot, and therefore persistent through rebootCode:busybox sysctl -p /etc/sysctl.conf
2) In /etc/sysctl.conf, change your code to look like this:
3) Reboot, then go to terminal emulator or adb and type cat /proc/sys/vm/dirty_ratio. If you get a value of 95, you were successful.Code:vm.swappiness = 0 vm.min_free_kbytes = 2048 vm.dirty_ratio = 95 vm.dirty_background_ratio = 60 vm.oom_kill_allocating_task=1
I quickly fixed this up yesterday when it was pointed out that the tweaks weren't active, but decided to test the tweaks for a while to give you guys some better feedback.
You'll notice that i removed vm.vfs_cache_pressure=12. The parameter affect's the kernel's tendency to reclaim dentries and inodes, and lowering it favors retaining over reclaiming. By removing it, the parameter defaults to 100. I prefer to keep it at 100, because I noticed that the value of 12 caused my phone to be much snappier at boot and in the first few hours, but as time went by it got slower and slower. By hour 8 it was turtling so hard that I had to reboot just to get back to homescreen.
You'll also noticed that I added vm.oom_kill_allocating_task=1. This changes the parameter to 1 from the default of 0. With a value of 0, if your phone detects that an app is using too much memory, it will go down your list of running apps and terminate some of them to free up memory. With a value of 1, your phone will terminate the app that is using too much memory instead. I prefer a value of 1, this way memory leaks are dealt with swiftly.
I can also confirm an increase in battery life, with no sacrifice to speed.
**NOOB ALERT**The following is a fix for the known bug - sysctl.conf tweaks not being applied.
1) In /etc/install-recovery.sh, underneath #!/system/bin/sh, add:
this cause the tweaks to be executed at boot, and therefore persistent through rebootCode:busybox sysctl -p /etc/sysctl.conf
2) In /etc/sysctl.conf, change your code to look like this:
3) Reboot, then go to terminal emulator or adb and type cat /proc/sys/vm/dirty_ratio. If you get a value of 95, you were successful.Code:vm.swappiness = 0 vm.min_free_kbytes = 2048 vm.dirty_ratio = 95 vm.dirty_background_ratio = 60 vm.oom_kill_allocating_task=1
I quickly fixed this up yesterday when it was pointed out that the tweaks weren't active, but decided to test the tweaks for a while to give you guys some better feedback.
You'll notice that i removed vm.vfs_cache_pressure=12. The parameter affect's the kernel's tendency to reclaim dentries and inodes, and lowering it favors retaining over reclaiming. By removing it, the parameter defaults to 100. I prefer to keep it at 100, because I noticed that the value of 12 caused my phone to be much snappier at boot and in the first few hours, but as time went by it got slower and slower. By hour 8 it was turtling so hard that I had to reboot just to get back to homescreen.
You'll also noticed that I added vm.oom_kill_allocating_task=1. This changes the parameter to 1 from the default of 0. With a value of 0, if your phone detects that an app is using too much memory, it will go down your list of running apps and terminate some of them to free up memory. With a value of 1, your phone will terminate the app that is using too much memory instead. I prefer a value of 1, this way memory leaks are dealt with swiftly.
I can also confirm an increase in battery life, with no sacrifice to speed.
I am total noob about tweaking the system. Can you tell me how do I get to /etc/install-recovery.sh, underneath #!/system/bin/sh? Is it ADB Shell that I heard about? If it is true, is there any instruction how to do it ?
So, when the rumored 2.2.1 update for the X launches, are we still gonna be able to install this rom over the ota?
Sent from my DROIDX using DroidForums App
This ROM would replace the OTA update soooo, theres no point in updating if your planning on using this ROM.
Today, after 8 hours unplugged so far....about 20 phone calls, a handful of txting and some playing around Im at 80% battery still. This also being medium voltage overclocked to 1.45ghz.
So, when the rumored 2.2.1 update for the X launches, are we still gonna be able to install this rom over the ota?
Sent from my DROIDX using DroidForums App
This ROM would replace the OTA update soooo, theres no point in updating if your planning on using this ROM.
I realize that, but I want my phone to have an up-to-date OTA nandroid. I might not use this ROM anymore if it doesn't support installing over the latest OTA updates.
Sent from my DROIDX using DroidForums App
I still dont know how to get my contacts back threw back up assisant
Sent from my DROIDX using DroidForums App
The following is a fix for the known bug - sysctl.conf tweaks not being applied.
1) In /etc/install-recovery.sh, underneath #!/system/bin/sh, add:
this cause the tweaks to be executed at boot, and therefore persistent through rebootCode:busybox sysctl -p /etc/sysctl.conf
2) In /etc/sysctl.conf, change your code to look like this:
Code:vm.swappiness = 0 vm.min_free_kbytes = 2048 vm.dirty_ratio = 95 vm.dirty_background_ratio = 60 vm.oom_kill_allocating_task = 1
3) Reboot, then go to terminal emulator or adb and type cat /proc/sys/vm/dirty_ratio. If you get a value of 95, you were successful.
vm.swappiness = 0
vm.min_free_kbytes = 2048
vm.dirty_ratio = 40
vm.dirty_background_ratio = 15
vm.vfs_cache_pressure = 12
vm.swappiness = 0
vm.min_free_kbytes = 2048
vm.dirty_ratio = 95
vm.dirty_background_ratio = 60
vm.oom_kill_allocating_task = 1
#Run Scripts From init.d
chmod 755 /system/etc/init.d/01cpu
chmod 755 /system/etc/init.d/02vm
busybox run-parts /system/etc/init.d
#Ensure Bootstrap In Case Something Goes Wrong
echo "1" > data/.recovery_mode
sync