> I'd like to create a directory /home and then bind it to /usr.
> (This is because I want some paths from linux that start with /home
> were valid paths in my plan 9, too.)

i just created my home directory in /usr on linux to solve this problem.

> However, I can't create a directory in my / --- when writing 'mkdir
> /home' I get the message
> 
> mkdir: can't create /home: '/home' mounted directory forbids creation

option a: remount with -c option.  requires permission to
scribble on /.
        mount -c /srv/boot /n/boot
        mkdir /n/boot/home

option b: use fossil / ken fs console
        filsys main
        create home uid gid 755d
        create home uid gid 755 d       # kenfs

- erik

Reply via email to