DEV.MD / Developer Network
Search:     Advanced search
Browse by category:
Glossary | Contact Us

Mount ISO image in FreeBSD

Add comment
Views: 1986
Votes: 2
Comments: 0
Posted: 01 Nov, 2007
by: Admin K.
Updated: 06 Nov, 2007
by: Admin K.
FreeBSD 5.x Mount
 
    # mdconfig -a -t vnode -f image.iso -u 0
    # mount -t cd9660 /dev/md0 /mnt/whatever
 
FreeBSD 5.x Unmount

    # umount /mnt/whatever
    # mdconfig -d -u 0
 
FreeBSD 4.x Mount
 
    # vnconfig -c vn0c image.iso
    # mount -t cd9660 /dev/vn0c /mnt/whatever
 
FreeBSD 4.x Unmount

    # umount /mnt/whatever
    # vnconfig -u vn0c
Also read
document Mount ISO image in Linux
document Mount ISO image in Solaris 10

Others in this Category
document Updating the Ports Collection on FreeBSD
document CVsup sources
document IPFW - Configuring Firewalls
document Operating with aliases on Ethernet interfaces
document FreeBSD Apache HTTP Accept Filter Error
document Identify PCI Devices in FreeBSD
document How to change a MAC address in FreeBSD
document Remove all installed packages and ports on FreeBSD
document Installation and Configuration of Nginx FastCGI PHP
document How can I tell how much RAM is installed on a FreeBSD box?



RSS