<keybind key="XF86KbdBrightnessUp">
<action name="Execute">
<command>xbacklight +10</command>
</action>
</keybind>
<keybind key="XF86KbdBrightnessDown">
<action name="Execute">
<command>xbacklight -10</command>
</action>
</keybind>
<keybind key="XF86AudioRaiseVolume">
<action name="Execute">
<command>amixer -c 0 set Master 2dB+</command>
</action>
</keybind>
<keybind key="XF86AudioLowerVolume">
<action name="Execute">
<command>amixer -c 0 set Master 2dB-</command>
</action>
</keybind>
Showing posts with label function. Show all posts
Showing posts with label function. Show all posts
Sunday, 5 January 2014
Thursday, 23 May 2013
In-memory page states and kscand
- kscand task
- periodically sweeps through all the pages in memory
- notes "last access time"
- was accessed?
- increments page's age counter
- wasn't accessed?
- decrements page's age counter
- age counter at zero
- move page to inactive dirty state
- free
- begin in this state
- not being used
- available for allocation, i.e. made active
- active
- allocated
- actively in use
- inactive dirty
- has fallen into disuse
- candidate for removal from main memory
- inactive laundered
- interim state
- contents are being moved to disk
- when disk I/O operation complete
- moved to the inactive clean state
- if, during the disk operation, the page is accessed
- moved back into the active state
- inactive clean
- laundering succeeded, i.e. contents in sync with copy on disk
- may be
- deallocated
- overwritten
Subscribe to:
Posts (Atom)
Interview questions: 2020-12
Terraform provider vs provisioner Load balancing Network Load Balancer vs Application Load Balancer Networking Layer 1 vs Layer 4 haproxy u...
-
CRITICAL: AWS now offers internal VPC DNS! Below is no longer necessary AFAIK. Woo hoo! http://aws.amazon.com/about-aws/whats-new/2014/...
-
build sudo apt-get install git gcc sudo apt-get install automake autoconf git clone git://github.com/rriley/tsunami-udp.git cd tsunam...
-
From: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382972#c4 Assumptions: jEdit was installed into /Applications directory. Close any...