Skip to content

Instantly share code, notes, and snippets.

@tomsato
Created January 21, 2016 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomsato/14dfbefcba31102403fa to your computer and use it in GitHub Desktop.
Save tomsato/14dfbefcba31102403fa to your computer and use it in GitHub Desktop.
// 現在の設定を確認(cfq)
$ cat /sys/block/sda/queue/scheduler
noop anticipatory deadline [cfq]
// スケジューラを変更する
$ sudo sh -c '(echo deadline > /sys/block/sda/queue/scheduler)'
// 設定確認
$ cat /sys/block/sda/queue/scheduler
noop anticipatory [deadline] cfq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment