From owner-freebsd-questions@FreeBSD.ORG Sat May 13 08:28:37 2006 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 3DA5916A42C for ; Sat, 13 May 2006 08:28:37 +0000 (UTC) (envelope-from nivo+sender+6075ff@yuckfou.org) Received: from ssdd.xs4all.nl (ssdd.xs4all.nl [195.64.89.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86F3B43D6B for ; Sat, 13 May 2006 08:28:25 +0000 (GMT) (envelope-from nivo+sender+6075ff@yuckfou.org) Received: from localhost (localhost [127.0.0.1]) by imhotep.yuckfou.org (Postfix) with ESMTP id D5932D2 for ; Sat, 13 May 2006 10:29:55 +0200 (CEST) Received: from ssdd.xs4all.nl ([127.0.0.1]) by localhost (imhotep.is-root.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-09 for ; Sat, 13 May 2006 10:29:50 +0200 (CEST) Received: by imhotep.yuckfou.org (Postfix, from userid 1000) id 1BD7D79; Sat, 13 May 2006 10:29:50 +0200 (CEST) Received: from [192.168.2.239] (turbata-xp.is-root.com [192.168.2.239]) by localhost.yuckfou.org (tmda-ofmipd) with ESMTP; Sat, 13 May 2006 10:29:47 +0200 (CEST) Message-ID: <446598E4.3030303@yuckfou.org> Date: Sat, 13 May 2006 10:29:24 +0200 User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20060513082657.GS31586@saturn.pcs.ms> In-Reply-To: <20060513082657.GS31586@saturn.pcs.ms> X-Enigmail-Version: 0.94.0.0 OpenPGP: id=AD3A5AAD; url=http://www.is-root.com/nv.pgp Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit From: Nils Vogels X-Delivery-Agent: TMDA/1.0.3 (Seattle Slew) X-TMDA-Fingerprint: 4wiRDVVFl+WWhewNs19cB1BeTnk X-Virus-Scanned: amavisd-new at is-root.com X-Spam-Status: No, score=-4.834 tagged_above=-999 required=6.31 tests=[ALL_TRUSTED=-1.8, AWL=-0.435, BAYES_00=-2.599] X-Spam-Score: -4.834 X-Spam-Level: Subject: Re: Move /var/imap X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Nils Vogels List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 May 2006 08:28:37 -0000 Martin Schweizer wrote on 13-05-2006 10:26: > Hello > > I want move /var/imap to another place because not enough space (I did move > /var/spool/imap successfully). When I cp /var/imap cp says: "cp: > imap/socket/idle: Operation not supported" and "cp: imap/socket/lmtp: > Operation not supported". I now there is a problem with unix sockets from > cyrus imap but I did not found a solution until yet. What can I do? > Use tar or cpio to copy over the directory, including special files, timestamps and permissions: tar cf - /source/dir ; ( cd /target/dir ; tar xf -) HTH & HAND! Nils.