diff options
Diffstat (limited to 'chapter07/symlinks.xml')
-rw-r--r-- | chapter07/symlinks.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter07/symlinks.xml b/chapter07/symlinks.xml index 4775403ae..d19ce4155 100644 --- a/chapter07/symlinks.xml +++ b/chapter07/symlinks.xml @@ -32,7 +32,7 @@ location of the device on the bus. If you are going to use the first approach, create a file similar to the following:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/82-cdrom.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/82-cdrom.rules << EOF <literal> # Custom CD-ROM symlinks SUBSYSTEM=="block", ENV{ID_MODEL}=="SAMSUNG_CD-ROM_SC-148F", \ @@ -64,7 +64,7 @@ EOF</userinput></screen> <para>The second approach yields:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/82-cdrom.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/82-cdrom.rules << EOF <literal> # Custom CD-ROM symlinks SUBSYSTEM=="block", ENV{ID_TYPE}=="cd", \ @@ -116,7 +116,7 @@ EOF</userinput></screen> <para>Then write rules that create the symlinks, e.g.:</para> -<screen role="nodump"><userinput>cat >/etc/udev/rules.d/83-duplicate_devs.rules << EOF +<screen role="nodump"><userinput>cat > /etc/udev/rules.d/83-duplicate_devs.rules << EOF <literal> # Persistent symlinks for webcam and tuner KERNEL=="video*", SYSFS{idProduct}=="1910", SYSFS{idVendor}=="0d81", \ |