Nikitos230 Im on ghostBSD now, but i want to switch to linux distro, i dont know how to create iso image usb on bsd, someone can help please?
vimanuelt Nikitos230 masc To write an ISO file to a USB thumb drive, do the following steps: Insert the USB thumb drive. Run the following commands: mount sudo umount /dev/da0 sudo gpart destroy -F da0 sudo dd if=Linux-madness-of-choice.iso of=/dev/da0 bs=1m Notes: mount will show something like: /dev/da0 on /media/da0 (cd9660, local, read-only) You must unmount the USB before clearing it. gpart is a solid way to wipe the drive clean. dd is a reliable way to write the image to disk. Happy distro hopping! Enjoy the madness!
brianthehughes The dd command should be all you need. I suspect your Linux flavored installation guide will advise exactly what command is needed to create the install media.