Search results for query: automount

  1. R

    Issue with NFS share auto-remount after NFS server restart

    .../mnt/nfs /etc/auto.nfs --timeout=60 In /etc/auto.nfs: share -fstype=nfs,soft,intr,timeo=30 10.0.0.3:/share Then: service automount start service automountd start The key difference with autofs is that the mount happens lazily when you first access /mnt/nfs/share, and it unmounts...
  2. OpenFreeNet

    ZFS ZFS questions

    ...import the pool using the GUID, and reassigning a different name. zpool import 1234567890000000 my_new_pool Often it is also necessary to mount the automount directories using a different root, for avoiding conflicts. Or not mount them at all. There are options for this, listed in the manpage.
  3. A

    mount complaining no device file

    I think I have solved the problem. In the working desktop, I had installed automount and in the problem desktop, I had installed automounter . Though I don't know what is the reason, after I uninstalled automounter and installed automount , the pendrive is getting detected. It would be nice if...
  4. S

    Issue with NFS share auto-remount after NFS server restart

    ...to that share again. Also, I tried to add the following mount options: intr,nolockd,bgnow - didn't help. Second, I tried to use autofs automounter: - removed that NFS mount from the /etc/fstab - added autofs_enable="YES" into /etc/rc.conf - added /mnt/nfs /etc/auto.nfs into /etc/auto_master...
  5. johnjohn

    Other Is `desktop-installer` broken on fbsd 15?

    ...# sysrc dbus_enable="YES" # sysrc vboxguest_enable="YES" # sysrc vboxservice_enable="YES" # sysrc vboxnet_enable="YES" i also like to add automount (doas pkg install -y automount) my /boot/loader.conf file: fusefs_load="YES" snd_ich_load="YES" snd_driver_load="YES" vboxdrv_load="YES"...
  6. W

    Other Some confusion about automounting

    FreeBSD 15.0. ZFS. MATE DE. Bash Shell. I installed the automount package. Do I still follow the instructions in: 20.4.2. Automounting Removable Media? Should I have installed this package? Reading the documentation makes me wonder if it is needed. Should I uninstall the automount package...
  7. B

    Other Non-system disk

    Can anyone tell me why I am unable to boot from this USB stick which is not partitioned? file -s /dev/da0 Automount mounts the device and shows me what is on it.
  8. ajcoli3

    Still Broken: "After lid-close reopening; wifi hangs; fixed by netif restart" in 15-CURRENT

    Hi sgharms- in my rc.suspend, I have one additional line added by desktop-installer above your lines 67/68 /usr/sbin/automount -fu and I don't have a line 67 of making a log entry In my resume script, I have the start in the same exact place, but again, no logger entry. Hope that helps!
  9. B

    lklfuse does not work

    It is used in filesystems/automount. I have amended the relevant code on my system but pkg upgrade pulls in a new version which continues to use lklfuse. https://github.com/vermaden/automount/blob/master/README line 41
  10. L

    Other What's the go-to scripting language to learn for general purpose-scripting on freebsd?

    I've written scripts in sh and bash, sure. But I compare sh, bash to C. They're full of pitfalls. sh and bash have so many rules to follow that it's very unproductive for me. There's where Tcl shines. Only has twelve rules. "Everything is a string", so no issues dealing with strings like sh...
  11. vermaden

    Other What's the go-to scripting language to learn for general purpose-scripting on freebsd?

    ...its POSIX sh(1) with or eventually sed(1) or awk(1) scripts where it fits better. I wrote all my tools with POSIX sh(1) like: - beadm(8) - automount(8) - lsblk(8) - sensors(8) - ufsbe(8) - jmore(8) ... and about learning that POSIX sh(1) I wrote here: -...
  12. J

    Why is lsblk not included in base install?

    I'm certainly no expert but I believe you're supposed to put that text in a chat text box.
  13. vermaden

    Why is lsblk not included in base install?

    Two of my other projects https://github.com/vermaden/jmore and https://github.com/vermaden/automount does not have man pages :p
  14. F

    Solved Enlightenment

    Has anyone been able to get the file manager for Enlightenment to automount thumb drives?
  15. T

    Xfce How can I disable gvfs daemon?

    ...@@ -85,5 +85,9 @@ NFS_LIB_DEPENDS= libnfs.so:net/libnfs NFS_MESON_TRUE= nfs + +post-patch: + ${REINPLACE_CMD} -e 's|AutoMount=true|AutoMount=false|' \ + ${WRKSRC}/daemon/trash.mount.in .include <bsd.port.mk> Unfortunately, tabs seems to be improperly converted to...
  16. shepper

    Xfce How can I disable gvfs daemon?

    In OpenBSD there is an automount daemon that has to be manually enabled. In Debian/Devuan, gvfs is an optional dependency and uninstalling it will remove automounting on all mount points. Not sure if FreeBSD has a separate automount daemon or if automounting is managed by dbus/gvfs. You can...
  17. H

    Xfce How can I disable gvfs daemon?

    I disable the AutoMount options in one file located in /usr/share/local/gvfs/mounts root@jupiter ~# cat /usr/local/share/gvfs/mounts/trash.mount [Mount] Type=trash Exec=/usr/local/libexec/gvfsd-trash AutoMount=false Maybe some other files are also concerned. I would also be interested in...
  18. itdm5j21

    Solved Unmount not permitted (user) root ok

    Handbook code: # mkdir /mnt/username # chown username:usergroup /mnt/username This doesn't seem to work, for me! However$ mkdir /home/username/media did. I can now use... $ mount -t msdosfs -o -m=644,-M=755 /dev/da0s1 /home/username/media as a user in the operator group. Many thanks to all...
  19. T

    Migrating from Linux - looking to see if it's possible in my case

    ...are users in this forums, including myself, who will be happy to help you, just ask for help. FreeBSD provides the necessary logic to automount encrypted devices. In both of the following options, it is assumed that the key files are located in the encrypted root file system. Option 1...
  20. A

    Migrating from Linux - looking to see if it's possible in my case

    .../dev/mapper/4TBvg-4TBlv - mount /dev/mapper/4TBvg-4TBlv /mnt/4TB Then I just edit /etc/fstab and /etc/crypttab to have those devices automount on boot. Final step is to rebuild the initramfs image. What do you guys recommend for such setup? USE CASE #2 - I absolutely need a GUI and the...
Back
Top