Questions tagged [automount]

For questions regarding the auto-mounting of filesystems, for example, automatic reading of usb storage, enabled in many operating systems.

For questions regarding the auto-mounting of filesystems, for example, automatic reading of usb storage, which is enabled in many operating systems.

66 questions
1
vote
0 answers

autofs not working on Ubuntu 14.04

Hi I am trying to automount remote file system using autofs. For this I installed autofs % sudo apt-get install cifs-utils autofs Then I edited /etc/auto.master to have the following line: /ufs /etc/auto.ufs Then I created a file /etc/auto.ufs…
1
vote
0 answers

Mac OS X Yosemite: autofsd/automountd slows down command line programs

I noticed that some common commands(ls, cat, touch, etc.) run very slow on my Mac. I couldn't find out why. So I use top to monitor cpu usage after I run some program in a terminal. I found that no matter what program I am running, a process called…
kai
  • 227
  • 1
  • 8
1
vote
1 answer

How to make usbmount use /etc/fstab configuration

I'm using a Debian wheezy stable and I'm trying to automatically mount a specific usb device in a designated directory when it's plugged (not at boot time or with the mount command). I know how to mount my device in the directory I want with…
statox
  • 2,447
  • 1
  • 17
  • 35
1
vote
3 answers

Automounting riofs in ubuntu

I have several buckets mounted using the awesome riofs and they work great, however I'm at a loss trying to get them to mount after a reboot. I have tried entering in the following to my /etc/fstab with no luck: riofs#bucket-name /mnt/bucket-name…
6nines-Dan
  • 19
  • 2
1
vote
1 answer

Scripted truecrypt mount, without using /dev/ or UUID

I have 5 truecrypt encrypted drives. Running ubuntu 13.04. I'm trying to run the following command in a script to mount my drives. truecrypt -t /dev/disk/by-uuid/25f8c629-d0c8-4c39-b4c2-aacba38b5882 /media/P --password="$password" -k ""…
7hr08ik
  • 109
  • 2
  • 9
1
vote
1 answer

Disable GNOME's automount with Python

I need to stop GNOME/Nautilus from automagically mounting new devices and partitions as they appear to the system. How can I accomplish this in python?
lfaraone
  • 44,680
  • 16
  • 48
  • 70
0
votes
1 answer

Android: Automount mass storage issue when plugging USB cable

I'm developing an app that makes file downloads, handles lists, contains a map, and so on. My problem appears when I use a device that has the automount mass storage option activated. If, at some moment, while running my app, I plug in the USB cable…
AVirvara
  • 565
  • 5
  • 7
0
votes
1 answer

(auto-)mount (usb-)drives through udisk2 dbus api from python

I've got a python daemon that controls an audio player. Now I want this daemon to monitor USB disks inserted and add their content to the mpd media library. One part of this is a udisk client that waits for disks inserted and then immediately mounts…
JPT
  • 313
  • 4
  • 12
0
votes
0 answers

Ubunt 20.04 LTS Server-HDD Mount CMD

**Dear Friends I have Lenovo RS160 Server I have installed 480 SSD and installed Ubuntu 20.04 LTs Server secondary SATA Harddisk 6 TB Connected, Now My Question How to Mount without Formatting SATA 6TB HDD, please suggest your cmds in ubuntu Server…
0
votes
0 answers

Autofs : How to set a ban time

I use Automount to mount hard drives that I put in a USB dock. Thanks to this post, here is the corresponding line in /etc/fstab: UUID=ed5ac6e5-9fc3-4d28-b0b5-0c4833249c71 /mnt/home-black ext4 …
Creasixtine
  • 690
  • 3
  • 10
  • 31
0
votes
2 answers

Is it possible to automount drive using wsl --mount after restart?

I am able to mount my ext4 partition in wsl-2 using the following command in powershell: wsl --mount \\.\PHYSICALDRIVE4 --partition 1 However when I either restart my computer or run wsl --restart the partition is unmounted and I have to run the…
Jscore
  • 283
  • 3
  • 12
0
votes
1 answer

rbind usage on local volume mounting

I have a directory that is configured to be managed by an automounter (as described here). I need to use this directory (and all directories that are mounted inside) in multiple pods as a Local Persistent Volume. I am able to trigger the automounter…
0
votes
0 answers

Mounting NAS volumes with autofs under Catalina (10.5.2)

I want to follow-up on the problem described here https://discussions.apple.com/thread/250856731 I tried the suggested solutions but mounting with smb does not work whatever I try (fiddling with smb settings on my Synology NAS, removing/adding mount…
0
votes
2 answers

RHEL7, pam_mount trouble for AD accounts

I've been at this for hours and would really appreciate some troubleshooting help at this point if anyone has experience getting pam_mount working on RHEL. Attempting to pam-mount a network share to a shared RHEL7 box, automatically upon ssh login,…
mb158127
  • 302
  • 2
  • 12
0
votes
1 answer

How can I mount network drive on azure vm by using run command?

I use this PowerShell script on Run Command in azure VM page. Image1 Test-NetConnection -ComputerName [name] -Port 445 Invoke-Expression -Command "cmdkey /add:[path] /user:[username] /pass:[password] net use Y: \[path] /u:[username] Return…