Hi! I'm a new GhostBSD user. I installed it a couple of weeks ago, after a long period on GNU/Linux and a little experience with FreeBSD as OPNSense on my job's firewalls. I'm still learning many things and differences from what I used to. I'm liking very much how the system is clean, well sorted out and easy to understand. GhostBSD also is a huge help by itself, allowing me to have an excellent desktop installation with FreeBSD, very quickly and with sane defaults.
There are, however, a couple of thing where I need help to find the proper way to do them. One is this.
I'm trying to mount data CDs and DVDs from the desktop, but I can't find a way to do it.
USB Drives with UFS and FAT32 are mounted fine, but I can't make it mount my data DVD.
The only way that I found is to mount them with a sudo mount_cd9660 /dev/cd0 /cdrom/
, but I'd like to be able to mount them from mate desktop.
I see that gvfs and udisks are loaded, so I expect them to detect and auto mount the discs.
ps -ax|grep gvfs
1440 - I 0:00,03 /usr/local/libexec/gvfsd
1459 - S 0:00,05 /usr/local/libexec/gvfs-udisks2-volume-monitor (gvfs-udisks2-volume)
1467 - I 0:00,01 /usr/local/libexec/gvfs-mtp-volume-monitor (gvfs-mtp-volume-mon)
1472 - I 0:00,01 /usr/local/libexec/gvfs-gphoto2-volume-monitor (gvfs-gphoto2-volume)
1539 - S 0:00,06 /usr/local/libexec/gvfsd-trash --spawner :1.1 /org/gtk/gvfs/exec_spaw/0
1551 - I 0:00,00 /usr/local/libexec/gvfsd-metadata
1563 - I 0:00,01 /usr/local/libexec/gvfsd-network --spawner :1.1 /org/gtk/gvfs/exec_spaw/1
1564 - I 0:00,01 /usr/local/libexec/gvfsd-dnssd --spawner :1.1 /org/gtk/gvfs/exec_spaw/2
2707 0 S+ 0:00,00 grep --color=auto gvfs
My installation is quite default. I just disabled some services that I don't need, such as cups and moused.
cat /etc/rc.conf
zfs_enable="YES"
kld_list="linux linux64 cuse fusefs hgame /boot/modules/i915kms.ko"
linux_enable="YES"
ntpd_enable="YES"
ntpd_sync_on_start="YES"
devfs_enable="YES"
devfs_system_ruleset="devfsrules_common"
dbus_enable="YES"
lightdm_enable="YES"
webcamd_enable="NO"
cupsd_enable="NO"
avahi_daemon_enable="YES"
avahi_dnsconfd_enable="YES"
moused_enable="NO"
firewall_enable="YES"
firewall_type="workstation"
ifconfig_em0="DHCP"
keymap="us.kbd"
hostname="beastie"
Thanks in advance for your help!