Sponsored Content
Operating Systems Linux Red Hat set device mode permanently with udev rule Post 302574457 by hergp on Thursday 17th of November 2011 10:27:05 AM
Old 11-17-2011
set device mode permanently with udev rule

On a test server running CentOS 6, I try to permanently set the owner, group and mode of disk devices for use with a DB2 database. For this I created an udev rule file /etc/udev/rules.d/99-db2.rules:
Code:
KERNEL=="sdb[1-9]*", OWNER="db2usrl1", GROUP="db2adml1", MODE="0600"

After a reboot, the owner and group of all sdb* devices is correct, but the device mode stays 0660. As far as I can tell there is no error message.

When I try udevadm trigger, the same happens. For demonstration, I set owner, group and mode of a device, then run udevadm trigger and finally look at the result:
Code:
# chown 0:0 /dev/sdb21
# chmod 666 /dev/sdb21
# ls -l /dev/sdb21
brw-rw-rw-. 1 root root 259, 5 Nov 17 14:22 /dev/sdb21
# udevadm trigger
# ls -l /dev/sdb21
brw-rw----. 1 db2usrl1 db2adml1 259, 5 Nov 17 14:22 /dev/sdb21

Is this a bug or am I missing something?
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Set User ID on execution mode.

I have a directory. To this directory, for Group bits combination, it is showing as 's'. Which I found out, it means "Set User ID on execution mode". Within this directory I am not able to create subfolder. Does it mean, only the Owner of this directory will be able to create subdirectories &... (5 Replies)
Discussion started by: videsh77
5 Replies

2. Shell Programming and Scripting

lynx browser set permanently option

hi all, is there somebody that know how can I set an permanently option for the lynx text browser? The reason is if I open some URL's and type my login infos then lynx show follow message: P)roceed, use G)ET or C)ancel Server asked for 301 redirection of POST content to URL: The UNIX... (1 Reply)
Discussion started by: research3
1 Replies

3. Solaris

How do i permanently set bash profile??

Hi all, I don't want to enter below command on solaris every time. How do i permanently set this command on Solaris. I know that this operation is a piece of cake on redhat because there is a /etc/rc.local file on it. But Solaris ???? bash-3.00#export PS1="\e (2 Replies)
Discussion started by: getrue
2 Replies

4. Linux

udev rule + script for setting webcam's mic as audio input

Hello, whenever I plugin my webcam, I want to use its microphone instead of the one integrated in my laptop. I therefore created a udev rule: SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="0807", RUN+="/usr/local/bin/webcammic"This rule works, I've tested it with a testscript (the... (0 Replies)
Discussion started by: MojoDodo
0 Replies

5. Solaris

Set autolist permanently

Hi , How to set autolist permanently in Solaris 10 (2 Replies)
Discussion started by: ankit.padhiyar
2 Replies

6. AIX

Permanently set maxdata to maximum

Hi, I've a 32-bit program running on AIX. By default the memory limit of the process is 256 MB as per the 32-bit AIX OS behavior. This can be changed using the LDR_CNTRL=maxdata environment variable. Baseed on the value that we set in terms of increments of segments the process... (6 Replies)
Discussion started by: kprajesh
6 Replies

7. Red Hat

Udev Rule TAG for identifying a local sas disk, non-scsi, non-fiber, non-iscsi

I need to add a VMware virtual disk to the 99-oracle-asmdevices.rules file but the OS is not assigning a WWID to the disk. It has been fdisk'd and a single partition created. What TAG inside the file needs to be added? the Program scsi-id does not work for some reason. latest patches... (0 Replies)
Discussion started by: mrmurdock
0 Replies

8. Web Development

Set Edge Compatibility Mode for IE

hi i have code in iplanet webserver in obj.conf file <If $uri !~'^/app/literature/item/(.*)'> AuthTrans fn="set-variable" insert-srvhdrs="X-UA-Compatible:IE=EmulateIE8" </If> i want to migrate it to apache webserver need your help to replace the above code for apache webserver. i... (0 Replies)
Discussion started by: raghur77
0 Replies
UDEVADM(8)							      udevadm								UDEVADM(8)

NAME
udevadm - udev management tool SYNOPSIS
udevadm [--debug] [--version] [--help] udevadm info options udevadm trigger [options] udevadm settle [options] udevadm control command udevadm monitor [options] udevadm test [options] devpath DESCRIPTION
udevadm expects a command and command specific options. It controls the runtime behavior of udev, requests kernel events, manages the event queue, and provides simple debugging mechanisms. OPTIONS
--debug Print debug messages to stderr. --version Print version number. --help Print help text. udevadm info options Queries the udev database for device information stored in the udev database. It can also query the properties of a device from its sysfs representation to help creating udev rules that match this device. --query=type Query the database for specified type of device data. It needs the --path or --name to identify the specified device. Valid queries are: name, symlink, path, property, all. --path=devpath The devpath of the device to query. --name=file The name of the device node or a symlink to query --root The udev root directory: /dev. If used in conjunction with a name or symlink query, the query returns the absolute path including the root directory. --attribute-walk Print all sysfs properties of the specified device that can be used in udev rules to match the specified device. It prints all devices along the chain, up to the root of sysfs that can be used in udev rules. --device-id-of-file=file Print major/minor numbers of the underlying device, where the file lives on. --export-db Export the content of the udev database. --version Print version. --help Print help text. udevadm trigger [options] Request device events from the kernel. Primarily used to replay events at system coldplug time. --verbose Print the list of devices which will be triggered. --dry-run Do not actually trigger the event. --type=type Trigger a specific type of devices. Valid types are: devices, subsystems, failed. The default value is devices. --action=action Type of event to be triggered. The default value is change. --subsystem-match=subsystem Trigger events for devices which belong to a matching subsystem. This option can be specified multiple times and supports shell style pattern matching. --subsystem-nomatch=subsystem Do not trigger events for devices which belong to a matching subsystem. This option can be specified multiple times and supports shell style pattern matching. --attr-match=attribute=value Trigger events for devices with a matching sysfs attribute. If a value is specified along with the attribute name, the content of the attribute is matched against the given value using shell style pattern matching. If no value is specified, the existence of the sysfs attribute is checked. This option can be specified multiple times. --attr-nomatch=attribute=value Do not trigger events for devices with a matching sysfs attribute. If a value is specified along with the attribute name, the content of the attribute is matched against the given value using shell style pattern matching. If no value is specified, the existence of the sysfs attribute is checked. This option can be specified multiple times. --property-match=property=value Trigger events for devices with a matching property value. This option can be specified multiple times and supports shell style pattern matching. --tag-match=property Trigger events for devices with a matching tag. This option can be specified multiple times. --sysname-match=name Trigger events for devices with a matching sys device name. This option can be specified multiple times and supports shell style pattern matching. udevadm settle [options] Watches the udev event queue, and exits if all current events are handled. --timeout=seconds Maximum number of seconds to wait for the event queue to become empty. The default value is 180 seconds. A value of 0 will check if the queue is empty and always return immediately. --seq-start=seqnum Wait only for events after the given sequence number. --seq-end=seqnum Wait only for events before the given sequence number. --exit-if-exists=file Stop waiting if file exists. --quiet Do not print any output, like the remaining queue entries when reaching the timeout. --help Print help text. udevadm control command Modify the internal state of the running udev daemon. --log-priority=value Set the internal log level of udevd. Valid values are the numerical syslog priorities or their textual representations: err, info and debug. --stop-exec-queue Signal udevd to stop executing new events. Incoming events will be queued. --start-exec-queue Signal udevd to enable the execution of events. --reload-rules Signal udevd to reload the rules files. The udev daemon detects changes automatically, this option is usually not needed. Reloading rules does not apply any changes to already existing devices. --property=KEY=value Set a global property for all events. --children-max=value Set the maximum number of events, udevd will handle at the same time. --help Print help text. udevadm monitor [options] Listens to the kernel uevents and events sent out by a udev rule and prints the devpath of the event to the console. It can be used to analyze the event timing, by comparing the timestamps of the kernel uevent and the udev event. --kernel Print the kernel uevents. --udev Print the udev event after the rule processing. --property Also print the properties of the event. --subsystem-match=string[/string] Filter events by subsystem[/devtype]. Only udev events with a matching subsystem value will pass. --tag-match=string Filter events by property. Only udev events with a given tag attached will pass. --help Print help text. udevadm test [options] devpath Simulate a udev event run for the given device, and print debug output. --action=string The action string. --subsystem=string The subsystem string. --help Print help text. AUTHOR
Written by Kay Sievers kay.sievers@vrfy.org. SEE ALSO
udev(7) udevd(8) udev 06/02/2010 UDEVADM(8)
All times are GMT -4. The time now is 10:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy