Editing User:Emesem

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
-
[http://sites.google.com/site/markusscharnowski/ My Homepage]
 
-
 
-
[http://sites.google.com/site/oeffnungszeitenwiki/ Öffnungszeiten wiki]
 
-
 
-
= My maemo projects =
 
-
 
-
== Push-It ==
 
-
 
-
* [http://sites.google.com/site/markusscharnowski/n/pushit Push-It Website]
 
-
* [http://code.google.com/p/push-it/ Push-It Project Webiste]
 
-
* [http://maemo.org/packages/view/push-it/ Push-It packages from maemo.org]
 
-
* [http://talk.maemo.org/showthread.php?t=59134 Announce in talk.maemo.org]
 
-
 
=Quick links=
=Quick links=
Line 17: Line 4:
   https://bugs.maemo.org/show_bug.cgi?id=6615#c119 solution for wlan battery drain bug
   https://bugs.maemo.org/show_bug.cgi?id=6615#c119 solution for wlan battery drain bug
-
  http://bugreports.qt.nokia.com/secure/Dashboard.jspa bugs for nokia qt sdk - the link is to hard to find -.-
 
==Talk==
==Talk==
Line 46: Line 32:
   http://www.ovi.com/services/support/subpage?id=services_support_maps_faqs
   http://www.ovi.com/services/support/subpage?id=services_support_maps_faqs
   http://talk.maemo.org/showthread.php?p=447608 not used, but seems ok or at least it could help ;)
   http://talk.maemo.org/showthread.php?p=447608 not used, but seems ok or at least it could help ;)
-
 
-
==Others==
 
-
  http://thehandheldblog.com/2010/07/27/how-to-easily-overclock-your-n900-in-under-two-minutes/
 
-
  http://talk.maemo.org/showpost.php?p=595582&postcount=774
 
=Read first=
=Read first=
Line 201: Line 183:
   tracker-processes -r #will reset the tracker databases, useful when changing the tracked directories
   tracker-processes -r #will reset the tracker databases, useful when changing the tracked directories
-
 
-
=maemo development=
 
-
 
-
==Building a package for maemo==
 
-
 
-
Currently I only collect links. Maybe when I'm more experienced in building a package I write a guide - currently I'm happy to get it somehow to work.
 
-
 
-
  http://wiki.maemo.org/Documentation/Maemo5_Final_Installation follow x86-64 and then x64-32 instruction (adding nokia repository for nokia binaries)
 
-
  http://wiki.maemo.org/Scratchbox_repositories Add maemo-extras-devel repository
 
-
  http://wiki.maemo.org/Packaging_a_Qt_application
 
-
  http://wiki.maemo.org/User:Jebba/Package_Building_HOWTO
 
-
 
-
=Speed up the N900=
 
-
 
-
==CPU speed/power consumption==
 
-
 
-
  http://thehandheldblog.com/2010/07/27/how-to-easily-overclock-your-n900-in-under-two-minutes/
 
-
  http://talk.maemo.org/showpost.php?p=595582&postcount=774
 
-
 
-
 
-
  sudo gainroot
 
-
  kernel-config load ideal
 
-
  kernel-config limits 500 1150
 
-
  kernel-config save ideal500-1150
 
-
  kernel-config default ideal500-1150 #make it default on power on
 
-
 
-
==Swapiness==
 
-
 
-
  echo 30 > /proc/sys/vm/swappiness
 
-
 
-
  # /etc/event.d/rcS-late-swappiness fix
 
-
  start on started rcS-late
 
-
  script
 
-
        echo 30 > /proc/sys/vm/swappiness
 
-
  end script
 
-
 
-
  http://talk.maemo.org/showpost.php?p=806769&postcount=34
 
-
  http://talk.maemo.org/showthread.php?t=48966&highlight=swappiness
 
-
 
-
==Performance parameters==
 
-
 
-
Source http://talk.maemo.org/showthread.php?p=948572#post948572
 
-
 
-
===Get the defaults===
 
-
  echo -n "#dirty_ratio: " ; cat /proc/sys/vm/dirty_ratio
 
-
  #dirty_ratio: 40
 
-
  echo -n "#dirty_background_ratio: " ; cat /proc/sys/vm/dirty_background_ratio
 
-
  #dirty_background_ratio: 10
 
-
  echo -n "#dirty_writeback_centisecs: " ; cat /proc/sys/vm/dirty_writeback_centisecs
 
-
  #dirty_writeback_centisecs: 500
 
-
  echo -n "#dirty_expire_centisecs: " ; cat /proc/sys/vm/dirty_expire_centisecs
 
-
  #dirty_expire_centisecs: 500
 
-
  echo -n "#min_free_kbytes: " ; cat /proc/sys/vm/min_free_kbytes
 
-
  #min_free_kbytes: 2039
 
-
  echo -n "#swappiness: " ; cat /proc/sys/vm/swappiness
 
-
  #swappiness: 30
 
-
  echo -n "#vfs_cache_pressure: " ; cat /proc/sys/vm/vfs_cache_pressure
 
-
  #vfs_cache_pressure: 100
 
-
  echo -n "#onboard_nr_requests: " ; cat /sys/block/mmcblk0/queue/nr_requests
 
-
  #onboard_nr_requests: 128
 
-
  echo -n "#sd_nr_requests: " ; cat /sys/block/mmcblk1/queue/nr_requests
 
-
  #sd_nr_requests: 128
 
-
 
 
-
===Change that stuff===
 
-
 
-
    echo 3 > /proc/sys/vm/dirty_ratio
 
-
    echo 3 > /proc/sys/vm/dirty_background_ratio
 
-
    echo 100 > /proc/sys/vm/dirty_writeback_centisecs
 
-
    echo 100 > /proc/sys/vm/dirty_expire_centisecs
 
-
    echo 4096 > /proc/sys/vm/min_free_kbytes
 
-
    echo 50 > /proc/sys/vm/swappiness
 
-
    echo 200 > /proc/sys/vm/vfs_cache_pressure
 
-
    echo 8 > /proc/sys/vm/page-cluster
 
-
    echo 4 > /sys/block/mmcblk0/queue/nr_requests
 
-
    echo 4 > /sys/block/mmcblk1/queue/nr_requests
 

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)