From owner-freebsd-questions@FreeBSD.ORG Mon Sep 12 05:15:54 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B74D16A41F for ; Mon, 12 Sep 2005 05:15:54 +0000 (GMT) (envelope-from cdelsey@qwest.net) Received: from mpls-qmqp-05.inet.qwest.net (mpls-qmqp-05.inet.qwest.net [63.231.195.116]) by mx1.FreeBSD.org (Postfix) with SMTP id 0A23D43D4C for ; Mon, 12 Sep 2005 05:15:53 +0000 (GMT) (envelope-from cdelsey@qwest.net) Received: (qmail 53308 invoked by uid 0); 12 Sep 2005 05:08:44 -0000 Received: from unknown (63.231.195.10) by mpls-qmqp-05.inet.qwest.net with QMQP; 12 Sep 2005 05:08:44 -0000 Received: from vdsl-130-13-176-218.phnx.qwest.net (HELO ?192.168.2.2?) (130.13.176.218) by mpls-pop-10.inet.qwest.net with SMTP; 12 Sep 2005 05:15:52 -0000 Received: by localhost.local (Postfix, from userid 1001) id 2D31642C0; Sun, 11 Sep 2005 22:15:52 -0700 (MST) Date: Sun, 11 Sep 2005 22:15:52 -0700 Message-ID: <20050912051552.GA15874@localhost.local> From: "Carl Delsey" To: freebsd-questions@freebsd.org Mail-Followup-To: freebsd-questions@freebsd.org References: <4324D5C9.2070003@charter.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4324D5C9.2070003@charter.net> User-Agent: Mutt/1.4.2.1i Subject: Re: can't install /sysutils/dvd+rw-tools 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: Mon, 12 Sep 2005 05:15:54 -0000 On Sun, Sep 11, 2005 at 09:11:37PM -0400, bob self wrote: > FreeBSD-6.0 beta 4 > > I'm trying to get DVD burning going according to the handbook. So, it > says to install "dvd+rw-tools". > But I get this error: > > root@xxxxxx~# pkg_add -r dvd+rw-tools > Fetching > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6-current/Latest/ > dvd+rw-tools.tbz... Done. > Fetching > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-6-current/All/cdr > tools-2.01_1.tbz... Done. > pkg_add: package 'cdrtools-2.01_1' conflicts with > cjk-cdrtools-2.01.20041227_1 > pkg_add: please use pkg_delete first to remove conflicting package(s) or > -f to f > orce installation > pkg_add: pkg_add of dependency 'cdrtools-2.01_1' failed! Presumably the cjk-cdrtools is compatible with and a suitable replacement for cdrtools. I would try just forcing the installation of dvd+rw-tools like this: pkg_add -r -f dvd+rw-tools This should proceed with the installation regardless of possible conflicts. Carl