All of lore.kernel.org
 help / color / mirror / Atom feed
From: Luca Berra <bluca@comedia.it>
To: Don Williams <dwilliams@garfield.storage.com>
Cc: linux-lvm@sistina.com
Subject: Re: [linux-lvm] Problem copying device files to an LVM volume
Date: Wed Jan 16 15:40:02 2002	[thread overview]
Message-ID: <20020116223907.A31167@colombina.comedia.it> (raw)
In-Reply-To: <00a001c19eca$aca6cec0$38c8a8c0@caladanxp>; from dwilliams@garfield.storage.com on Wed, Jan 16, 2002 at 03:16:25PM -0500

On Wed, Jan 16, 2002 at 03:16:25PM -0500, Don Williams wrote:
>     When I copy device driver files files via NFS to a LVM volume they
>    are "interpreted" instead of copied.  The
>    
>    result is that when the copy hits the sda driver it starts copying the
>    entire contents of /dev/sda drive!  Instead

1) you should not post in html to mailing lists, fix you MUA
2) this is not an LVM related question but an UNIX related one
3) never use cp to copy special files, use cpio or tar instead as in
	cd /source/dir
	find . -xdev -print0 | cpio -0padumv /destination/dir
4) nfsv2 does not support mknod syscal (AFAIR), so you should either be sure
you are using nfsv3 or you better use cpio on a rsh pipe
	sourcehost# cd /source/dir
	sourcehost# find . -xdev -print0 | cpio -0oadumv | rsh desthost "cd /destination/dir && cpio -iadumv"

L.
-- 
Luca Berra -- bluca@comedia.it
        Communication Media & Services S.r.l.
 /"\
 \ /     ASCII RIBBON CAMPAIGN
  X        AGAINST HTML MAIL
 / \

      reply	other threads:[~2002-01-16 15:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-01-16 14:17 [linux-lvm] Problem copying device files to an LVM volume Don Williams
2002-01-16 15:40 ` Luca Berra [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020116223907.A31167@colombina.comedia.it \
    --to=bluca@comedia.it \
    --cc=dwilliams@garfield.storage.com \
    --cc=linux-lvm@sistina.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.