This is Gentoo's testing wiki. It is a non-operational environment and its textual content is outdated.
Please visit our production wiki at https://wiki.gentoo.org
Udevil
Udevil is a small auto-mount utility created to be a "a hassle-free replacement for udisks."[1] It can be used with or without systemd, ConsoleKit, policykit, D-Bus, udisks, gvfs and FUSE.[2]
It is important to know Udevil does not play nicely with encrypted filesystems. If an encrypted filesystem is being used consider looking for an alternate auto-mount utility.
Installation
Kernel
Kernel eventpolling may need to be enabled for device media to be properly detected by the kernel:
'"`UNIQ--pre-00000003-QINU`"'
After enabling eventpolling confirm operation by running:
root #
cat /sys/module/block/parameters/events_dfl_poll_msecs
root #
cat /sys/block/sr0/events_poll_msecs
If either command returns 0 or -1 then there will be issues detecting device media. Create a small script in /etc/local.d that will force event polling for each device:
/etc/local.d/eventpolling.start
Enable event polling#!/bin/bash source /etc/profile echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs echo 2000 > /sys/block/sr0/events_poll_msecs
Be sure to make the script executable:
root #
chmod +x /etc/local.d/eventpolling.start
Emerge
Install Udevil:
root #
emerge --ask sys-apps/udevil
Configuration
Global
Udevil's operation can be configured using the global configuration file:
- /etc/udevil/udevil.conf
Local
According to official documentation[3] it is possible to configure auto-mount permissions on an individual basis by creating an /etc/udevil/ configuration file in this following format:
- /etc/udevil/udevil-user-USERNAME.conf
Where USERNAME
is replaced by the user's user name.
devmon
A configuration file called devmon is also installed in the /etc.
- /etc/conf.d/devmon
Usage
Daemon mode
OpenRC
Udevil can be configured to operate as a daemon by calling the devmon command. It is possible to run this command in the background by calling it as a job using the ampersand (&
). Users can add the following line to their ~/.bashrc file which will start devmon as a daemon each time the system boots:
~/.bashrc
Starting devmon in daemon modedevmon 2>&1 > /dev/null &
Systemd
To start devmon as a systemd service:
root #
systemctl start devmon@<user>
Invocation
user $
udevil mount <device>
user $
udevil unmount <device>
See also
- udev - The device manager for the Linux kernel.
External resources
- https://igurublog.wordpress.com/downloads/script-devmon/ - A page describing devmon, an auto-mounting daemon that is now distributed with Udevil. This link may be helpful for reference purposes.