udisks

udisks provides a daemon udisksd, that implements D-Bus interfaces used to query and manipulate storage devices, and a command-line tool udisksctl, used to query and use the daemon.

Installation

Install the udisks2 package.

udisksd(8) is started on-demand by D-Bus and should not be enabled explicitly. It can be controlled through the command-line with udisksctl(1).

Note: The development of udisks has ceased in favor of udisks2 . The legacy version udisksAUR is available in the AUR. With udisks it is udisks-daemon that is started on demand and the control command is udisks.

Configuration

Permissions

Actions a user can perform using udisks are restricted with polkit. If the user session is not activated or present (for example, when controlling udisks from a systemd/User service), adjust polkit rules accordingly.

See https://github.com/coldfix/udiskie/wiki/Permissions for common udisks permissions for the group, and for a more restrictive example. If you are using Dolphin, you may see .

Default mount options

It is possible to define default mount options in /etc/udisks2/mount_options.conf. Create the file if it doesn't already exist. The built-in defaults and some examples can be seen in .

The options can target specific filesystem types. For example, mount btrfs filesystems with zstd compression enabled:

[defaults]
btrfs_defaults=compress=zstd

Usage

To manually mount a removable drive, for example :

$ udisksctl mount -b /dev/sdc1

To unmount:

$ udisksctl unmount -b /dev/sdc1

See udisksctl help for more.

Tips and tricks

Mount helpers

The automatic mounting of devices is easily achieved with udisks wrappers. See also List of applications/Utilities#Mount tools.

udevadm monitor

You may use to monitor block events and mount drives when a new block device is created. Stale mount points are automatically removed by udisksd, such that no special action is required on deletion.

#!/bin/sh

pathtoname() {
    udevadm info -p /sys/"$1" | awk -v FS== '/DEVNAME/ {print $2}'
}

stdbuf -oL -- udevadm monitor --udev -s block | while read -r -- _ _ event devpath _; do
        if [ "$event" = add ]; then
            devname=$(pathtoname "$devpath")
            udisksctl mount --block-device "$devname" --no-user-interaction
        fi
done

Mount to /media

By default, udisks2 mounts removable drives under the ACL controlled directory . If you wish to mount to /media instead, use this rule:

Since /media, unlike , is not mounted by default as a tmpfs, you may also wish to create a tmpfiles.d snippet to clean stale mountpoints at every boot:

Mount loop devices

To easily mount ISO images, use the following command:

$ udisksctl loop-setup -r -f image.iso

This will create a read only loop device and show the ISO image ready to mount. Remove the flag to be able to write to it. The name of the created loop device is output by the above command.

You can unmount, and remount, the image as long as the specific loop device is in place. When done working with the specific loop device, use

$ udisksctl loop-delete -b /dev/loop0

to delete it. Substitute with the name of the specific loop device.

Loop devices are cheap. Therefore, many loop devices can be created in practice without worrying about a denial of service issue. See .

Hide selected partitions

If you wish to prevent certain partitions or drives appearing on the desktop, you can create a udev rule, for example :

KERNEL=="sda1", ENV{UDISKS_IGNORE}="1"
KERNEL=="sda2", ENV{UDISKS_IGNORE}="1"

shows all partitions with the exception of sda1 and on your desktop.

Because block device names can change between reboots, it is also possible to use UUIDs to hide partitions or whole devices:

Then the following line can be used:

SUBSYSTEM=="block", ENV{ID_FS_UUID}=="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXXX", ENV{UDISKS_IGNORE}="1"

The above line is also useful to hide multi device btrfs filesystems, as all the devices from a single btrtfs filesystem will share the same UUID across the devices but will have different SUB_UUID for each individual device.

Apply ATA settings

At start-up and when a drive is connected, udisksd will apply configuration stored in the file where is the value of the Drive:Id property for the drive. Currently ATA settings are supported. See udisks(8) for available options. These settings have essentially the same effect as those of hdparm, but they are persistent as long as the udisks daemon is autostarted.

For example, to set standby timeout to 240 (20 minutes) for a drive, add the following:

To obtain the DriveId for your drive, use

Alternatively, use a GUI utility to manage the configuration file, such as .

Troubleshooting

Hidden devices

Udisks2 hides certain devices from the user by default. If this is undesired or otherwise problematic, copy to and remove the following section in the copy:

# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
# Devices which should not be display in the user interface
[...]

Broken standby timer

The udisks daemon polls S.M.A.R.T. data from drives regularly. Hard drives with a longer standby timeout than the polling interval may fail to enter standby. Drives that are already spun down are usually not affected. There seems no way to disable polling or change the interval as for udisks2 by now. See , .

However, Standby timeout applied by udisks2 seems to be unaffected. To set standby timeout via udisks, see #Apply ATA settings.

Other possible workarounds could be setting the timeout below the polling interval (10 minutes) or forcing a manual spindown using .

NTFS mount failing

If mounting a ntfs partition fails with the error:

Error mounting /dev/sdXY at [...]: wrong fs type, bad option, bad superblock on /dev/sdXY, missing codepage or helper program, or other error

and in the kernel log with / ran as root:

ntfs: (device sdXY): parse_options(): Unrecognized mount option windows_names.

Then the problem is that udisks is trying to use the kernel ntfs driver, which does not understand this (default) mount option. For this to work the optional dependency NTFS-3G must be installed.

gollark: Hmm, I suppose so on the population densities one.
gollark: I mean, spreading them better because of increased global travel, sure, but we can also actually treat them now (ish).
gollark: <@354360619622727681> How did we/advanced technology go around causing *viruses* and *diseases*?
gollark: I think if we do end up going extinct for whatever reason it'll be either humanity wiping each other out or gradual decline and collapse.
gollark: I figure we'll start seeing very problematic stuff within... probably 50 to 100?

See also

This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.