[FreeBSD] Mount disks, iso, usb. - BSD
Users browsing this thread: 1 Guest(s)
|
|||
Mount a CD/DVD
¯¯¯¯¯¯¯¯¯¯¯¯¯¯ Run as root: PHP Code: - > mount_cd9660 /dev/cd0 /media Mount Image disks ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ run, as root: PHP Code: - > mdconfig -a -t vnode -f /path/to/image.iso -u 1 Mount any HDD ¯¯¯¯¯¯¯¯¯¯¯¯¯ run, as root: First check what your device is by looking at the messages when plugging in the USB by running `tail -f /var/log/messages`. PHP Code: - > `gpart show` should show some information There are a few file systems supported: PHP Code: mount mount_msdosfs mount_nullfs mount_portalfs mount_unionfs |
|||