From mboxrd@z Thu Jan 1 00:00:00 1970 From: shaoning Date: Wed, 08 Dec 2010 07:58:47 +0000 Subject: can i use udev rules to send a dbus signal Message-Id: <4CFF3C7A.4010608@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org hi all I met a problem . Does anybody help me ? I wrote a udeve rules for ntfs filesystem mount , and i want to using dbus-send to send a dbus signal .But it seems it can not work . When I debuge, i saw /var/log/message said it send ok. But , in fact , it can not work. Does anybody know this issue? PS: When exec udev rules, it should be root , and i am using a normal user to debug and see result. [fan@fc13 rules.d]$ cat 10-media-by-label-auto-mount.rules |grep -v ^# KERNEL!="sd[b-z][0-9]", GOTO="media_by_label_auto_mount_end" IMPORT{program}="/sbin/blkid -o udev -p %N" ENV{dir_name}="usb-%k" ENV{DISPLAY}=":0.0" ACTION="add", ENV{ID_FS_TYPE}="ntfs", ENV{mount_options}="relatime,utf8,gid0,umask2", RUN+="/bin/mkdir -p /media/%E{dir_name}", RUN+="/bin/mount -t ntfs-3g -o $env{mount_options} /dev/%k /media/%E{dir_name}", RUN+="/usr/bin/nautilus --no-desktop /media/%E{dir_name}", RUN+="/bin/dbus-send --session --type=signal / com.zhou.dbustest.sayhelloworld" ACTION="remove", RUN+="/bin/umount -l /media/%E{dir_name}", RUN+="/bin/rmdir /media/%E{dir_name}" LABEL="media_by_label_auto_mount_end" [fan@fc13 rules.d]$