From owner-freebsd-questions@FreeBSD.ORG Fri Mar 25 14:01:03 2005 Return-Path: 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 E7C7116A4CE for ; Fri, 25 Mar 2005 14:01:03 +0000 (GMT) Received: from raptor.cigb.edu.cu (ns.cigb.edu.cu [200.55.134.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 416C843D48 for ; Fri, 25 Mar 2005 14:00:58 +0000 (GMT) (envelope-from osmany.guirola@cigb.edu.cu) Received: from atlas.cigb.edu.cu ([172.16.1.12]) by raptor.cigb.edu.cu with Microsoft SMTPSVC(5.0.2195.6713); Fri, 25 Mar 2005 10:00:43 -0400 Received: from Unknown [172.16.1.4] by atlas.cigb.edu.cu - SurfControl E-mail Filter (4.6); Friday, 25 March 2005, 09:04:17 Received: from [172.16.11.106] ([172.16.11.106]) by mercurio.cigb.edu.cu with Microsoft SMTPSVC(5.0.2195.6713); Fri, 25 Mar 2005 09:04:17 -0400 Message-ID: <4243D4BA.6000702@cigb.edu.cu> From: Osmany Guirola Cruz To: Giorgos Keramidas Date: Fri, 25 Mar 2005 09:07:06 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Accept-Language: en-us, en X-OriginalArrivalTime: 25 Mar 2005 13:04:17.0124 (UTC) FILETIME=[26A70A40:01C5313B] References: <42430C4A.3080200@gmail.com> <42432463.7090403@daleco.biz> <4242F221.4080902@cigb.edu.cu> <20050324233816.GA21885@gothmog.gr> In-Reply-To: <20050324233816.GA21885@gothmog.gr> User-Agent: Mozilla Thunderbird 1.0 (X11/20050125) cc: freebsd-questions@freebsd.org Subject: Re: cvs question? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Mar 2005 14:01:04 -0000 Hi again The option -R does not work :-( i do this #setenv CVSROOT freebsdanoncvs@anoncvs.FreeBSD.org:/home/ncvs #cvs -R co -rRELENG_5 src and get this cvs [checkout aborted]: cannot write /home/ncvs/CVSROOT/val-tags: Permission denied and if i do #socksify cvs -R co src WORKS PERFECTLY What can i do? Osmany Giorgos Keramidas wrote: >On 2005-03-24 17:00, Osmany Guirola Cruz wrote: > > >>Hi people >> >>I am learning in the use of cvs for sync my src and ports i use this >>command line and works perfectly >> >># cvs -d freebsdanoncvs@anoncvs.FreeBSD.org:/home/ncvs co src >> >>but this line update my source tree with the current version 6.0 >> >> > >True. > > > >>but i don't want this version then i do this >> >># cvs -d freebsdanoncvs@anoncvs.FreeBSD.org:/home/ncvs co -rRELENG_5 src >> >>and get this error >>cvs [checkout aborted]: cannot write /home/ncvs/CVSROOT/val-tags: >>Permission denied >> >> > >Use the -R option of cvs (read-only repository): > > # CVSROOT='freebsdanoncvs@anoncvs.FreeBSD.org:/home/ncvs' > # export CVSROOT > # cvs -R co -rRELENG_5 src > > > >