How to mount an ISO image OpenBSD
How do I mount an ISO image in OpenBSD operating systems using command line options?
- vnconfig – The vnconfig command configures vnode pseudo disk devices.
- mount – Mount file system.
- umount – Unmount file systems
- chroot в openssh на прикладі openbsd
- OpenBSD: все що я ввожу при вході в систему відображається у верхньому регістрі
- Встановлення php модуля до веб-сервера apache на OpenBSD
The syntax is:
vnconfig /dev/vndXy /path/to/file.iso
vnconfig vnd0 /tmp/file.iso
mount /dev/vndXy /mnt/
Examples:
vnconfig vnd0 /downloads/bar.iso
mount -t cd9660 /dev/vnd0c /mnt
df
cd /mnt
ls -l
cp file.txt /tmp/
To unmount the image, enter:
umount /mnt
vnconfig -u vnd0