From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: <200401082225.i08MPmp29862@ecstasy.winternet.com> From: Ken Fuchs In-reply-to: (kanikanema@hotmail.com) Subject: Re: [linux-lvm] restoring filesystem state using snapshot References: Sender: linux-lvm-admin@sistina.com Errors-To: linux-lvm-admin@sistina.com Reply-To: linux-lvm@sistina.com List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: Date: Thu Jan 8 17:22:02 2004 List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-lvm@sistina.com Kanika Nema wrote: >i want to restore the filesystem state using only the snapshot taken by LVM >ie without taking a full backup. >is this possible to do? i read all the lvm commands, but there is no command >to actually restore the entire filesystem back to the state it was in, when >the snapshot was taken. >though the old files' state can be viewed using the snapshot volume, i want >to take the filesystem back to the prev state. >Please tell me if this can be done. its urgent. Will copying the contents of the snapshot over the original logical volume do what you want? If so, this can be done as follows: # mount /dev/vg/snapshot /snap # mount /dev/vg/original /orig # (cd /snap; tar cf - .) | (cd /orig; tar xvf -) Of course the v option on the second tar invocation can be omitted to avoid seeing all the filenames of the files being copied. Sincerely, Ken Fuchs