From owner-freebsd-questions@FreeBSD.ORG Tue Nov 30 01:21:04 2010 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF800106566B for ; Tue, 30 Nov 2010 01:21:04 +0000 (UTC) (envelope-from nikolaiw@embarqmail.com) Received: from mailrelay.embarq.synacor.com (mailrelay.embarq.synacor.com [208.47.184.3]) by mx1.freebsd.org (Postfix) with ESMTP id 75A5A8FC0C for ; Tue, 30 Nov 2010 01:21:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; d=embarqmail.com; s=s012408; c=relaxed/simple; q=dns/txt; i=@embarqmail.com; t=1291078862; h=From:Subject:Date:To:MIME-Version:Content-Type; bh=6C0g14WgtGAn9s2U+2S9ygIFbSU=; b=o4emHtCx6sPQrSLVScSPryJ63tUAHyrPW3fd+REZm0t7OBy3UBZAqAuBp67E70Ge tc3VV0YKHPsbnHWKq9/C57lUysandS2gCbnYDNiLOh/2+/Dp1jMwd8JXm+5N7Kpj; X-BINDING: X-Spam-Rating: None X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.1 cv=FqH+40RfSLtAcSobiNKava/YdBIhi/jpTtN5tLpAIDM= c=1 sm=0 a=yl_-HBv_Sf8A:10 a=8nJEP1OIZ-IA:10 a=hMfcJUQc7LyOlU/nS9PWCQ==:17 a=fJ-_xL2aQg0CWnxEnusA:9 a=q-ecznzo3atvO6Ue23gA:7 a=nOnjHRUutXbk2d7n0lMx7ULgtIwA:4 a=wPNLvfGTeEIA:10 a=hMfcJUQc7LyOlU/nS9PWCQ==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp01.embarq.synacor.com smtp.user=nikolaiw@embarqmail.com; auth=pass (LOGIN) Received: from [76.4.108.154] ([76.4.108.154:25868] helo=[172.27.2.50]) by mailrelay.embarq.synacor.com (envelope-from ) (ecelerity 2.2.2.40 r(29895/29896)) with ESMTPA id 6C/15-21955-ECC44FC4; Mon, 29 Nov 2010 20:01:02 -0500 Message-ID: <4CF44CCE.8030005@embarqmail.com> Date: Mon, 29 Nov 2010 20:01:02 -0500 From: Nikolai Wendorf User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.12) Gecko/20101027 Lightning/1.0b2 Thunderbird/3.1.6 MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Tue, 30 Nov 2010 03:31:00 +0000 Cc: carmel_ny@hotmail.com Subject: Re: Unable to access CDROM device to play music X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Nov 2010 01:21:04 -0000 All, I was getting exactly this same error following a fresh 8.1 load Sep 25 07:51:22 cyborg kernel: acd0: FAILURE - READ_BIG ILLEGAL REQUEST asc=0x64 ascq=0x00 Sep 25 07:51:22 cyborg kernel: (cd0:ata1:0:0:0): READ(10). CDB: 28 0 0 0 0 0 0 0 40 0 Sep 25 07:51:22 cyborg kernel: (cd0:ata1:0:0:0): CAM status: SCSI Status Error Sep 25 07:51:22 cyborg kernel: (cd0:ata1:0:0:0): SCSI status: Check Condition Sep 25 07:51:22 cyborg kernel: (cd0:ata1:0:0:0): SCSI sense: ILLEGAL REQUEST asc:64,0 (Illegal mode for this track) Sep 25 07:51:22 cyborg kernel: (cd0:ata1:0:0:0): cddone: got error 0x6 back the solution was explained in the gnome install FAQ - here is a clip - the devfs.conf changes fixed the problem. To figure out which CD/DVD drive you will be using, run the following command as root: # camcontrol devlist Your output will look similar to the following: at scbus1 target 0 lun 0 (cd0,pass0) The devices in parentheses at the end are important. You must make sure the /dev entries for those devices are writable by the users that will be using brasero, totem, rhythmbox, or sound-juicer. In addition to those devices, /dev/xpt* must also be writable to your brasero, totem, rhythmbox, and sound-juicer users. The following /etc/devfs.conf configuration will achieve the desired results given the above devlist: perm cd0 0666 perm xpt0 0666 perm pass0 0666 Nick