I am trying to install Oracle ASM on Red Hat Linux (RHEL) 7.1, and for that I am trying to configure udev rules. I have noticed there is a new attribute in udev rules, SYMLINK+
, which seems to be a replacement for the NAME
attribute.
Working rules:
SUBSYSTEM=="block", KERNEL=="powerae", SYMLINK+="ORAdisk1", OWNER="grid", GROUP="oinstall", MODE="0660"
Not working rules:
SUBSYSTEM=="block", KERNEL=="powerae", NAME="ORAdisk1", OWNER="grid", GROUP="oinstall", MODE="0660"
I have searched in the Red Hat release note, but I could not find any details regarding udev rules. Are RHEL 6 udev rules compatible with RHEL 7?