<div dir="ltr">Hello everyone, <div><br></div><div>I am new to this list and to udev (used mdev before). </div><div><br></div><div>My goal: Mount a CFast card partioned with 2 partitions one FAT32 and one EXT4, the EXT4 I would like to mount with option "data=journal"</div><div><br></div><div>The Problem: from the console using mount the partition can be mounted with mount -o "data=journal" ... but not from my udev rule. My rule results in only the FAT32 partition being mounted. </div><div><br></div><div>My Rule: </div><div><br></div><div><div>KERNEL!="sd[a-z][0-9]", GOTO="media_by_label_auto_mount_end"  </div><div># Import FS infos  </div><div>IMPORT{program}="/sbin/blkid -o udev -p %N"  </div><div><br></div><div># Global mount options  </div><div>ACTION=="add", ENV{mount_options}="relatime"  </div><div><br></div><div># Filesystem-specific mount options  </div><div>ACTION=="add", ENV{ID_FS_TYPE}=="vfat|ntfs", ENV{mount_options}="$env{mount_options},utf8,gid=100,umask=002"</div><div>ACTION=="add", ENV{ID_FS_TYPE}=="ext4", ENV{mount_options}="$env{mount_options},data=journal"     </div><div><br></div><div>#Mount the Filesystems</div><div>ACTION=="add", RUN+="/bin/mkdir -p /media/$env{ID_FS_LABEL}", RUN+="/bin/mount -o %E{mount_options} /dev/%k /media/$env{ID_FS_LABEL}" </div><div><br></div><div># Exit  </div><div>LABEL="media_by_label_auto_mount_end"</div></div><div><br></div><div>Any help is highly appreciated, so far I can only mount with "data=ordered" since this seems to be the default option (for that the two lines matching "ENV{ID_FS_TYPE} are removed). </div><div><br></div><div>Best regards</div><div>Pascal</div></div>