From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-user+bounces-144231-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BFC5F138303 for <garchives@archives.gentoo.org>; Sun, 6 Jan 2013 11:21:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5F8421C045; Sun, 6 Jan 2013 11:21:38 +0000 (UTC) Received: from mail-we0-f169.google.com (mail-we0-f169.google.com [74.125.82.169]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4255C21C025 for <gentoo-user@lists.gentoo.org>; Sun, 6 Jan 2013 11:20:13 +0000 (UTC) Received: by mail-we0-f169.google.com with SMTP id t49so9384119wey.28 for <gentoo-user@lists.gentoo.org>; Sun, 06 Jan 2013 03:20:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:reply-to:to:subject:date:user-agent:references :in-reply-to:mime-version:content-type:content-transfer-encoding :message-id; bh=8yFfHWZDJiKMZ13AJPjAen54PGE64rJpUVL/YCf3La4=; b=IAX6nPJXmHl89W3dyLYvkcLX9MBhWkSDF9KzJaitsd89tvIwcnAeJsH6/FRdSfqbhU A7v/WlIhYCBgViSeTJZGmpy+vGAqBBI8PmJj5oIN/LsG1tZ60ftQIeBKKdPZ/pmgKnFm M/oRZKKwWGQkAaN7NaKQyjL/sXIWTBhUXd9DO7qjgyVWvmHRQMdWVzq2MJwVWUf6hZgG sYkTwRKN5TeW7O97eQ020MMfCOmkzxy2afT55caKnH9wHgP1iYheq2KBcdPihJICDA4Z EzbD8Qj0nlE1EXXOHr15BlUjbZgQMPgKrFQmLnJs3HRKmKNgorPggRq61jGr8hwt+YqC nJ1A== X-Received: by 10.194.19.170 with SMTP id g10mr91338792wje.56.1357471212928; Sun, 06 Jan 2013 03:20:12 -0800 (PST) Received: from dell_xps.localnet (230.3.169.217.in-addr.arpa. [217.169.3.230]) by mx.google.com with ESMTPS id eo10sm7862987wib.9.2013.01.06.03.20.11 (version=SSLv3 cipher=OTHER); Sun, 06 Jan 2013 03:20:12 -0800 (PST) From: Mick <michaelkintzios@gmail.com> To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Re: 4 machines - no /dev/cdrom or /dev/dvd anymore Date: Sun, 6 Jan 2013 11:19:45 +0000 User-Agent: KMail/1.13.7 (Linux/3.6.11-gentoo; KDE/4.9.3; x86_64; ; ) References: <CAK2H+eeuq1PdsX6YiALPDR3otE-O-y+mZC0wUzM8NrbwSqdb6w@mail.gmail.com> <CAK2H+ec+5wA0D2vLYMnmnDY29qP+JYFvVCSVfmo0b7Fhnvm74Q@mail.gmail.com> In-Reply-To: <CAK2H+ec+5wA0D2vLYMnmnDY29qP+JYFvVCSVfmo0b7Fhnvm74Q@mail.gmail.com> Precedence: bulk List-Post: <mailto:gentoo-user@lists.gentoo.org> List-Help: <mailto:gentoo-user+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-user+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-user+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-user.gentoo.org> X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1485850.qJIsAMa8NX"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <201301061119.56710.michaelkintzios@gmail.com> X-Archives-Salt: 9a995b17-caad-4f89-bdb8-3a4f9190a5aa X-Archives-Hash: 6484174dbda554e0030c8a65ec0e10cd --nextPart1485850.qJIsAMa8NX Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Saturday 05 Jan 2013 20:44:07 Mark Knecht wrote: > On Sat, Jan 5, 2013 at 11:53 AM, Mark Knecht <markknecht@gmail.com> wrote: > > I think I touched on this a couple of weeks ago but never had time to > > dig in. At that time I thought this problem was only on one machine > > but now I see it's on every machine I've looked at this morning. Not a > > single machine has /dev/cdrom anymore, nor /dev/dvd or any of the > > other incantations that have existed forever. >=20 > <SNIP> >=20 > OK, this is solved using udevadm and changing the > 70-persistent-cd.rules file to key off a different identifier. >=20 > Old way: > #SUBSYSTEM=3D=3D"block", ENV{ID_CDROM}=3D=3D"?*", > ENV{ID_PATH}=3D=3D"pci-0000:00:1f.2-scsi-0:0:0:0", SYMLINK+=3D"cdrom", > ENV{GENERATED}=3D"1" >=20 > New way: > SUBSYSTEM=3D=3D"block", ENV{ID_CDROM}=3D=3D"?*", > ENV{ID_MODEL}=3D=3D"Optiarc_DVD_RW_AD-7241S", SYMLINK+=3D"cdrom", > ENV{GENERATED}=3D"1" >=20 > c2stable ~ # udevadm info --query=3Dall --name=3D/dev/sr0 > P: > /devices/pci0000:00/0000:00:1f.2/ata11/host10/target10:0:0/10:0:0:0/block/ > sr0 N: sr0 > S: scd0 > S: disk/by-id/ata-Optiarc_DVD_RW_AD-7241S > S: cdrom > S: cdrw > S: dvd > S: dvdrw > E: UDEV_LOG=3D3 > E: > DEVPATH=3D/devices/pci0000:00/0000:00:1f.2/ata11/host10/target10:0:0/10:0= :0: > 0/block/sr0 E: MAJOR=3D11 > E: MINOR=3D0 > E: DEVNAME=3D/dev/sr0 > E: DEVTYPE=3Ddisk > E: SUBSYSTEM=3Dblock > E: ID_CDROM=3D1 > E: ID_CDROM_CD=3D1 > E: ID_CDROM_CD_R=3D1 > E: ID_CDROM_CD_RW=3D1 > E: ID_CDROM_DVD=3D1 > E: ID_CDROM_DVD_R=3D1 > E: ID_CDROM_DVD_RW=3D1 > E: ID_CDROM_DVD_RAM=3D1 > E: ID_CDROM_DVD_PLUS_R=3D1 > E: ID_CDROM_DVD_PLUS_RW=3D1 > E: ID_CDROM_DVD_PLUS_R_DL=3D1 > E: ID_CDROM_MRW=3D1 > E: ID_CDROM_MRW_W=3D1 > E: ID_ATA=3D1 > E: ID_TYPE=3Dcd > E: ID_BUS=3Data > E: ID_MODEL=3DOptiarc_DVD_RW_AD-7241S > E: > ID_MODEL_ENC=3DOptiarc\x20DVD\x20RW\x20AD-7241S\x20\x20\x20\x20\x20\x20\x= 20\ > x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 E: ID_REVISION=3D1.03 > E: ID_SERIAL=3DOptiarc_DVD_RW_AD-7241S > E: ID_ATA_FEATURE_SET_PM=3D1 > E: ID_ATA_FEATURE_SET_PM_ENABLED=3D1 > E: ID_ATA_SATA=3D1 > E: ID_ATA_SATA_SIGNAL_RATE_GEN1=3D1 > E: GENERATED=3D1 > E: UDISKS_PRESENTATION_NOPOLICY=3D0 > E: DEVLINKS=3D/dev/scd0 /dev/disk/by-id/ata-Optiarc_DVD_RW_AD-7241S > /dev/cdrom /dev/cdrw /dev/dvd /dev/dvdrw > E: TAGS=3D:udev-acl: >=20 > c2stable ~ # >=20 > Maybe this post will save someone else some time. Thanks Mark, but why do we have to make this file changes ourselves? Isn't= it=20 a bug? PS. I also have cd & dvd /dev links missing. =2D-=20 Regards, Mick --nextPart1485850.qJIsAMa8NX Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) iEYEABECAAYFAlDpXdwACgkQVTDTR3kpaLa7EQCfajrfrQAZYu3fmyS5n40Cicib 48UAn2isRTdkfpp1PDSPCmy+DhmKyqxD =6YRD -----END PGP SIGNATURE----- --nextPart1485850.qJIsAMa8NX--