udevil At A Glance
Highlights
Limitations
InstallerA self-extracting installer is available in Downloads (click on a file and click View Raw to download). The installer MUST be run in a terminal. It automatically builds and installs, and should work with any recent distro. Run it like this:
The installer requires the build dependencies listed in the README file. Build dependencies include: (package names may vary on your distro) libglib2.0-0 libglib2.0-dev libudev0 (>=143) libudev-dev autotools-dev build-essential fakeroot intltool pkg-config Also recommended for network support: cifs-utils curlftpfs sshfs davfs2 Also recommended if using devmon: eject zenity If any dependencies are missing, examine the error, install missing packages, and try again. To reinstall or upgrade, just run the latest installer again. For easy manual build instructions please see the README file. To authenticate downloads see authentication instructions. NOTE: Also see Post Installation steps below.
Post InstallationKernel PollingYou may need to enable kernel polling for device media to be detected by udevil. See the Enable Kernel Polling section below. Networks and Files By default, /etc/udevil/udevil.conf is set to allow only local fileystems and ISO files to be mounted, with mounting of networks disallowed. To allow networks and files to be mounted, in /etc/udevil/udevil.conf set:
allowed_types = $KNOWN_FILESYSTEMS, file, cifs, nfs, curlftpfs, sshfs, davfs
You may also need to install curlftpfs or ftpfs (ftp://), cifs-utils or smbfs (smb://), sshfs (ssh://), and davfs2 (http://).
NTFS-3G If local ntfs filesystems aren't mounted writable, you may need to configure your system to mount ntfs with ntfs-3g (on some distros this is already done). For example:
sudo ln -s /sbin/mount.ntfs-3g /sbin/mount.ntfs
# OR if mount.ntfs-3g is located in /usr/bin:
sudo ln -s /usr/bin/mount.ntfs-3g /usr/bin/mount.ntfs
Set SUID After installing udevil, /usr/bin/udevil should have the suid bit already set. If not, set it like this:
sudo chown root:root /usr/bin/udevil
sudo chmod u+s,go-s,ugo+x /usr/bin/udevil
ls -l /usr/bin/udevil
-rwsr-xr-x 1 root root 226625 May 22 08:13 /usr/bin/udevil
OR, to restrict execution of udevil to the 'plugdev' group only:
sudo chown root:plugdev /usr/bin/udevil
sudo chmod u+s,go-s,o-x /usr/bin/udevil
ls -l /usr/bin/udevil
-rwsr-xr-- 1 root plugdev 226625 May 22 08:13 /usr/bin/udevil
OR, if you don't want to use udevil for mounting, you can unset suid:
sudo chown root:root /usr/bin/udevil
sudo chmod ugo-s,ugo+x /usr/bin/udevil
ls -l /usr/bin/udevil
-rwxr-xr-x 1 root root 226625 May 22 08:13 /usr/bin/udevil
You can also limit users and groups by editing /etc/udevil/udevil.conf
Enable Kernel PollingYou may need to enable kernel polling for device media to be detected by udevil. For example, if you insert a CD and udevil's monitor command doesn't report a change to the device, or udevil doesn't see a filesystem on the device, this is a symptom that kernel polling is not enabled. Kernel polling is a new feature of the Linux kernel and udev, so most distros don't yet have it enabled. Even if you are using udisks, enabling kernel polling is recommended to eliminate the need for udisks to do userspace polling. Kernel polling also corrects a common issue where the eject button on a drive won't respond with the newer udev. To use kernel polling, your Linux kernel may need to be 2.6.38 or newer, and udev may need to be version 173 or newer.
Determine if kernel polling is enabled by running these commands:
cat /sys/module/block/parameters/events_dfl_poll_msecs
cat /sys/block/sr0/events_poll_msecs
If you get 0 or -1 from both of those commands, then it's probably disabled.
To permanently enable polling (survives a reboot), add the following command to your /etc/rc.local file (anywhere before the 'exit' line in that file):
echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs
Any number between 2000 and 5000 (milliseconds) should be reasonable - the higher 5000 means poll every 5 seconds, which is less overhead but a little slower.
OR you can pass this option to the kernel boot command line in grub: block.events_dfl_poll_msecs=2000 OR, to enable kernel polling temporarily, enable common polling for the block module:
sudo bash -c 'echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs'
OR you can temporarily enable polling just for a single device like this (/dev/sr0 in this example):
sudo bash -c 'echo 2000 > /sys/block/sr0/events_poll_msecs'
The change should be immediate - media will be detected and the eject button on the drive should work normally again. However, these temporary changes will be lost when you reboot.
References: |
|
Updated 2013-03-26
|