如何使用Python根据设备名称获取卷标

发布于 2024-10-15 03:30:53 字数 644 浏览 4 评论 0原文

我正在制作类似于 Linux 的已安装设备列表之类的东西。

在程序启动时,我解析 /etc/mtab 以查找现有安装。为了获得有关添加到系统的新挂载的通知,我正在使用 DBus,并且在消息中我得到了volume.label 属性。有没有办法根据 /dev/sda1 或 /dev/sdd 等设备名称获取卷标?

编辑: 一段时间后,我设法找到了解决这个问题的方法。 Python gio 模块有一个名为 VolumeMonitor 的类。因此,获取具有漂亮名称和正确图标的列表非常简单,只需迭代 get_mounts() 方法的结果即可:

for mount in volume_monitor.get_mounts():
    print mount.get_name(), mount.get_icon()

您还可以获取驱动器和卷的列表。您还可以连接一些信号并适当更新列表。不过有一点要注意。卷是第一个出现在列表中的,并且第一个触发自己的事件,挂载随后出现。因此,如果您希望维护活动挂载列表,请监听 mount-addedmount-removed 信号,而不是 volume-added 和 <代码>卷已删除。

I am making something like a list of mounted devices for Linux.

On program startup I parse /etc/mtab for existing mounts. To get notified about new mounts added to the system am using DBus and in message I get there is volume.label property. Is there any way to get volume label based on device name like /dev/sda1 or /dev/sdd?

Edit:
After some time I managed to find a solution to this problem. Python gio module has a class named VolumeMonitor. So getting the list with nice names and correct icons is simple as iterating through result of get_mounts() method:

for mount in volume_monitor.get_mounts():
    print mount.get_name(), mount.get_icon()

You can also get a list of drives and volumes. You can also connect some signals and update list appropriately. One note though. Volume is the first one to appear in the list and first to trigger its own events, mounts come later. So if you wish to maintain a list of active mounts, listen to mount-added and mount-removed signals instead of volume-added and volume-removed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

神爱温柔 2024-10-22 03:30:53

您可以使用 blkid 来代替使用 e2label 命令,然后解析其输出:

$ blkid -o value -s LABEL /dev/sda1
/boot

Instead of using the e2label command, you can use blkid and then parse its output:

$ blkid -o value -s LABEL /dev/sda1
/boot
原来是傀儡 2024-10-22 03:30:53

e2label 命令会在使用时告诉您卷标,如下所示:

e2label /dev/sda1

注意:这仅适用于 ext2、ext3 或 ext4 文件系统。

在 Python 中,您可以使用 os.system 或 Popen 调用命令

The e2label command will tell you the volume label when used like this:

e2label /dev/sda1

Note: this only works for ext2, ext3, or ext4 filesystems.

From Python, you can invoke the command with os.system or Popen

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文