Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I setup automount on Linux to allow use of the eject button?

automount button eject linux Setup
0
Posted

How do I setup automount on Linux to allow use of the eject button?

0

By default, the eject button will not work on a Linux system when the RDX cartridge removable disk is mounted. This is because the Linux OS prevents media removal whenever a file system is mounted. The automount daemon may be used in Linux to automatically mount and un-mount a volume after periods of inactivity. A good automount tutorial exists at http://freespace.sourceforge.net/guidod/howto/autofs.html A basics automount setup is detailed below: • Make a copy of /etc/auto.misc called /etc/auto.rdx • Add a line to /etc/auto.master similar to the one shown below usbrdx -fstype=auto,rw,sync :/dev/sdb1 Where • usbrdx is the mount point for the RDX device • -fstype is an option to autofs (refer to man autofs) • /dev/sdb1 is the partition handle for your RDX device • Add a line to /etc/auto.rdx similar to the one shown below /mnt /etc/auto.rdx –timeout=3 Where • /mnt is the root mount point for the RDX devices • /etc/auto.rdx is the file created above • –timeout=3 is an option passed to

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123