我正在Rust中编写一个工具,需要根据当前文件系统是SSD还是传统硬盘来改变其功能。
运行时的差异在于,如果SSD上存在文件,则会使用更多线程来访问文件而不是HDD,这只会破坏磁盘并降低性能。
我主要对Linux感兴趣,因为这是我的用例,但欢迎任何其他添加。如果可能的话,我还需要以非root用户身份执行此操作。是否有系统调用或文件系统设备会告诉我我在使用什么类型的设备?
答案 0 :(得分:1)
信用转到@Hackerman:
$ cat /sys/block/sda/queue/rotational
0
如果返回1,则给定的文件系统位于旋转媒体上。
我已经将这个概念充实到shell脚本中,可以可靠地确定文件是否在旋转媒体上:
#!/bin/bash
set -e
# emits the device path to the filesystem where the first argument lives
fs_mount="$(df -h $1 | tail -n 1 | awk '{print $1;}')"
# if it's a symlink, resolve it
if [ -L "$fs_mount" ]; then
fs_mount="$(readlink -f $fs_mount)"
fi
# if it's a device-mapper like LVM or dm-crypt, then we need to be special
if echo $fs_mount | grep -oP '/dev/dm-\d+' >/dev/null ; then
# get the first device slave
first_slave_dev="$(find /sys/block/$(basename $fs_mount)/slaves -mindepth 1 -maxdepth 1 -exec readlink -f {} \; | head -1)"
# actual device
dev="$(cd $first_slave_dev/../ && basename $(pwd))"
else
dev="$(basename $fs_mount | grep -ioP '[a-z]+(?=\d+\b)')"
fi
# now that we have the actual device, we simply ask whether it's rotational or not
if [[ $(cat /sys/block/$dev/queue/rotational) -eq 0 ]]; then
echo "The filesystem hosting $1 is not on an rotational media."
else
echo "The filesystem hosting $1 is on rotational media."
fi
上面的工作对我来说都是在普通分区(即/dev/sda1
安装在给定路径上)和dm-crypt
分区(即/dev/mapper/crypt
安装在给定路径上)。我没有用LVM测试它,因为我附近没有。
道歉不能携带Bash。