История изменений
Исправление beastie, (текущая версия) :
mount_mfs exits and the contents of the file system are lost when the file system is unmounted.
– http://man.openbsd.org/mount_mfs
Скорее всего ты хочешь другое:
dd if=/dev/zero of=test.img bs=1m count=100
vnconfig vnd0 test.img
newfs vnd0c
mount /dev/vnd0c /mnt
touch /mnt/hello_alexbalkan.txt
umount /mnt
mount /dev/vnd0c /mnt
ls /mnt
# …
umount /mnt
vnconfig -u vnd0
Исходная версия beastie, :
mount_mfs exits and the contents of the file system are lost when the file system is unmounted.
– http://man.openbsd.org/mount_mfs
Скорее всего ты хочешь другое:
dd if=/dev/zero of=test.img bs=1m count=100
vnconfig vnd0 test.img
newfs vnd0c
mount /dev/vnd0c /mnt
touch /mnt/hello_alexbalkan.txt
umount /mnt
mount /dev/vnd0c /mnt
ls /mnt
# …
umount /mnt
vnconfig -u vnd0