Subject: Re: problems after install
To: Gunther Nikl <gni@gecko.de>
From: David Brownlee <abs@netbsd.org>
List: port-amiga
Date: 09/29/2000 09:59:05
On Fri, 29 Sep 2000, Gunther Nikl wrote:
> - mount your /usr partition to eg. /mnt
> - cd /usr ; tar -cf - . | (cd /mnt && tar -xf -)
> (be _very_ careful with the above commandline!)
> - edit /etc/fstab and add the correct /usr mount data
Please do not try the above - you will lose the setuid bits on
programs and su and various other tools will beak for non root
use.
Use either:
cd /usr ; pax -rw -pe . /mnt
or
cd /usr ; tar -cf - . | (cd /mnt && tar -xpf -)