From owner-freebsd-questions@FreeBSD.ORG Sun May 25 14:35:38 2008 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 B33341065670 for ; Sun, 25 May 2008 14:35:38 +0000 (UTC) (envelope-from thenudnik@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by mx1.freebsd.org (Postfix) with ESMTP id 6AC238FC1B for ; Sun, 25 May 2008 14:35:38 +0000 (UTC) (envelope-from thenudnik@gmail.com) Received: by wx-out-0506.google.com with SMTP id h27so1179574wxd.7 for ; Sun, 25 May 2008 07:35:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; bh=Csc8NNxLGGHUhKimlQvIqBGmliq4Bg5zmmZeABhx+Ik=; b=DkKIQNBvpHqD93ho1S/URib5UgKRtALsKqj/pTI67z8U5G+H6T+QRrLGNq5yUQbT/K251t2L/jpM25CRRay92svkI4Hngw7ZbXOIPLHD1p+rx6tyCDcivcInxPoaYJ1qSHVF3A05CKnhDhxDjNgRz36XgDiAuv2zdta5dao2+qs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=CmC3dhAh2/T8QsVaEO1f3H2ehbuf6lgalzPjJ5VFmFmZWz9hgF7b+ZT+fQ4UyZ7fILDup5I+P/8p8+sZkTxKgLh+i3Jqu4VCSVzWOvKS0THE2So1p+aOuGaEwJw8ldmBV3jLEKIKRWvPGuAx5AZiwhxdsAqVIOC3L+UrGosgWcI= Received: by 10.70.75.20 with SMTP id x20mr3559467wxa.29.1211726137252; Sun, 25 May 2008 07:35:37 -0700 (PDT) Received: from ?192.168.2.2? ( [67.235.232.128]) by mx.google.com with ESMTPS id h38sm16225871wxd.39.2008.05.25.07.35.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 25 May 2008 07:35:36 -0700 (PDT) Message-ID: <4839792C.5090809@gmail.com> Date: Sun, 25 May 2008 10:35:24 -0400 From: "David M. Patronis" User-Agent: Thunderbird 2.0.0.14 (X11/20080505) MIME-Version: 1.0 To: Desmond Chapman References: In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: mounting and using cd-rw media from a non root account 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: Sun, 25 May 2008 14:35:38 -0000 Desmond Chapman wrote: > I'm still stuck on the command line for this one. How do I give the user permissions and allow an application such as k3b to access the device? Any and all links to howtos or your own method is welcome. > Thank you in advance. > > _________________________________________________________________ > E-mail for the greater good. Join the i’m Initiative from Microsoft. > http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ GreaterGood_______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > My own configuration notes. Your mileage may vary : ) #How to install and configure K3b on FreeBSD 7.0 #To install the pre-compiled package (usually satisfactory) use the code below pkg_add -r k3b # If the pre-compiled package is ill-suited for your system, you can try compiling from source using the code below. cd /usr/ports/sysutils/k3b && make install clean # Next, we edit configuration files in order to establish the proper settings and permissions # Edit /boot/loader.conf to add the following: atapicam_enable="YES" hw.ata.atapi_dma="1" # Modify devfs.conf with the following lines: own cdrom root:operator perm cdrom 0666 link cd0 cdwriter own cderiter root:operator perm cdwriter 0666 own pass0 root:operator perm pass0 0666 own xpt0 root:operator perm xpt0 0666 # Edit /etc/rc.conf to add the following: devd_enable="YES" #I am told the commands below are necessary on occasion. My system seems to work fine without them, however. chmod 4711 /usr/local/bin/cdrecord chmod 4711 /usr/local/bin/cdrdao