How to check Linux I/O scheduler
How to check Linux I/O scheduler
Answer:
Assume your hard drive is sda, you can check the current Linux I/O scheduler at
# cat /sys/block/sda/queue/scheduler
noop anticipatory deadline [cfq]
Above shows that you are currently using the cfq scheduler.
Related posts:
- How to check which directory used up most of the disk space?
- Check what Linux kernel modules are loaded
- Check current environment variables
- How to check if a file is locked in Linux?
- How do I check memory information in Linux?
Post a Comment