On Sat, Nov 26, 2005 at 12:57:06AM +0100, Alexander Hall wrote:
> $ dd if=/dev/zero of=msdos_fs bs=1024 count=1024
> $ sudo vnconfig vnd0 msdos_fs
> $ sudo newfs_msdos /dev/rvnd0c
> $ sudo mount_msdos -m 777 -l /dev/vnd0c /mnt/test/
> $ cd /mnt/test
> $ mkdir a aa ab

> $ find .
> .
> ./a
> ./aa
> ./ab

Interesting. If you don't do this preliminary 'find', then all is fine.

> $ mv aa ab a
> $ find .
> .
> ./a
> ./a/aa
> $ ll a
> total 16
> drwxrwxrwx  1 root  wheel  4096 Nov 26 00:52 aa/
> drwxrwxrwx  1 root  wheel  4096 Nov 26 00:52 ab/
> $ find -L .
> .
> ./a
> ./a/aa
> ./a/ab

And if you try 'rm -rf a' now, you're likely to get:

rm: fts_read: No such file or directory

-p.

Reply via email to