Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: panic with mount_union in installer



On Mon, Feb 18, 2019 at 11:23:28PM +0100, Piotr Meyer wrote:
[...]

> and then I mounted that dir with mount_union over /dev:
> 
> mkdir /tmp/dev
> cd /tmp/dev
> mknod dk16 b 168 16
> mknod rdk16 c 168 16
> ...
> mount_union /tmp/dev /dev

BTW: a working alternative exists:

cp /dev/MAKEDEV* /tmp/
mount -t tmpfs tmpfs /dev
cp /tmp/MAKEDEV* /dev/
cd /dev
./MAKEDEV all
mknod dk16 b 168 16
mknod rdk16 c 168 16
...

etc

Regards,
-- 
Piotr 'aniou' Meyer


Home | Main Index | Thread Index | Old Index