Tagged Questions
The mount tag has no wiki summary.
25
votes
6answers
31k views
Force unmount of NFS-mounted directory
I have an NFS-mounted directory on a Linux machine that has hung. I've tried to force an unmount, but it doesn't seem to work:
$ umount -f /mnt/data
$ umount2: Device or resource busy
$ umount: ...
17
votes
4answers
22k views
manually put files to android emulator sd card
I'm just having trouble with getting my emulator SD card work...
I created a new AVD device with a new SD card.
So how to put data onto it? I found the "correct" file to be mountet on Deamon tools, ...
14
votes
4answers
658 views
Where is a file mounted?
Given a path to a file or directory, how can I determine the mount point for that file? For example, if /tmp is mounted as a tmpfs filesystem then given the file name /tmp/foo/bar I want to know that ...
9
votes
4answers
5k views
Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents?
I feel a bit blind developing on an emulator for Android and not being able to see the file system on the AVD (.img).
Is there a way to mount it in Windows or Linux, so that I could at least see the ...
7
votes
6answers
6k views
Linux: Which process is causing “device busy” when doing umount?
Linux: Which process is causing "device busy" when doing umount?
6
votes
2answers
201 views
Detect drive mount event in c#
How to catch an event when a new drive is added to My Computer and preferably and when new mount point for some drive is created on a NTFS drive?
I figued out this but it doesn't work on mounted ...
6
votes
5answers
4k views
osx 'mount' local directory
is it possible to mount a local directory into another one. Using perfoce I want to do something equivalent to symlinking a directory, but in a way that fools it into thinking it's really just ...
5
votes
2answers
145 views
Using FUSE library with Java; trying to replicate hello.c example
I am trying to create bindings to the FUSE library using JNA, but I have hit a snag along the road. I have minimized the code as much as possible to make it digestible here.
The FUSE library comes ...
5
votes
2answers
2k views
Can I create or mount a virtual drive
Is this feasible to mount or create a drive using C#. If So , Can we use a redirector with the Virtual Drive?
For example , When I will click on the drive , it should be redirected to my code which ...
5
votes
4answers
207 views
mounting without -o loop
I have written a dummy (ram disk) block device driver for linux kernel.
When the driver is loaded, I can see it as /dev/mybd.
I can successfully transfer data onto it using dd command, compare the ...
5
votes
1answer
554 views
Cross-platform solution for mounting a custom filesystem
I have a need to make my data part of the machine's file system.
In windows it seems I have 3 options:
Eldos' "Callback File System" (http://www.eldos.com/cbfs/)
Dokan (dokan-dev.net)
Pismo File ...
5
votes
4answers
2k views
How to mount a network directory using python?
I need to mount a directory "dir" on a network machine "data" using python on a linux machine
I know that I can send the command via command line:
mkdir ~/mnt/data_dir
mount -t data:/dir/ ...
5
votes
3answers
418 views
How to tell if a directory is remotely mounted using Java
Is there a way to determine programatically if a particular directory is actually remotely mounted? Can this be done with Java, and if not can it be done with native C code over JNI?
Since this is ...
5
votes
2answers
2k views
Difference between statvfs() and statfs() system calls?
Why do the statfs() and statvfs() calls both exist when they're so similar?
Under what circumstances would I prefer one over the other?
5
votes
7answers
3k views
How to mount from command line like the Nautilus does?
On my Ubuntu linux box I can easily mount USB connected drives or CDROM clicking on devices icons that I can found on the Desktop.
For example if I click on a USB connected drive icon the following ...
4
votes
1answer
99 views
How do I list only the valid mounted disk partitions using Get-PSDrive?
I just discovered PowerShell literally yesterday and I love it.
I am trying to list all the valid mounted partitions so I can make them a variable and run chkdsk on them. The problem is that I don't ...
4
votes
3answers
4k views
how to mount a exFAT partition in Ubuntu 11.04
first how can I format a partition with exFAT format in Ubuntu 11.04?
When I mount a exFAT partition using command 'mount /dev/sdb1 /mnt', it is said that I need to specify the file system, and then ...
4
votes
2answers
658 views
How to run a script on device mount in OSX
I want to make a script that automatically backs up my kindle files when I connect it to my macbook pro. Writing the script is well within my ability, but I don't know what's the best way to run a ...
4
votes
2answers
2k views
How to register FUSE filesystem type with mount(8) and fstab?
I've written a small FUSE-based filesystem and now the only part's missing is that I want to register it with fstab(5) to auto-mount it on system startup and/or manually mount it with just mount ...
3
votes
1answer
990 views
Mount Second Partition on Android Device with vold
I want to have access to an ext4 partition, without using Data2SD yet, on the SD card of my HTC Vision running the Virtuous Unity 1.3.0 ROM. I modded my /system/etc/vold.fstab file from this:
...
3
votes
1answer
136 views
Checking for availability of network disk on mac
I'm creating myself a script to automate the backing up of certain directories on my mac to an airdisk (usb disk on my airport extreme).
I was reading up about rsync. It seems that if the airdisk ...
3
votes
2answers
423 views
Mount NoSQL DB as File System
I am looking for the way to easily mount one of the NoSQL DB as File System both in Ubuntu 10.04 LTS or CentOs 5
I know there are there are some fuse projects for mongoDB, CouchDB, riak,
But I can't ...
3
votes
2answers
5k views
(re)mounting the SD card on android emulator
On the emulator, I can unmount the SD card from the Settings.
I can then mount it on my OS, then unmount it normally.
I haven't been able to figure out how to re-mount it then on the emulator ...
3
votes
2answers
697 views
How can I mount network drive in Mac OS X on Java?
I am writing a programme on JBuider 2005 on Windows XP platform for Mac OS X. Programme must launch on Mac OS X and programme turnes(directs) to share folders on other computer(Windows XP) in network. ...
3
votes
2answers
314 views
What is the equivalent of getfsstat() on Linux?
Question says it all. I want C function call that returns the list the mounted filesystems along with associated information such as filesystem type.
3
votes
3answers
4k views
Python: Get Mount Point on Windows or Linux
I need a function to determine if a directory is a mount point for a drive.
I found this code already which works well for linux:
def getmount(path):
path = os.path.abspath(path)
while path != ...
3
votes
4answers
2k views
how to create loop in linux filesystem
how to create a loop in linux filesystem ? I want to break the directed acyclic graph(DAG) property of linux file system.. Is it possible?... I have seen this condition(loop in filesystem) once when I ...
3
votes
3answers
323 views
How do you retrieve the original location of a mounted path?
In C++, how can I retrieve the location of a mounted drive?
for example, if I have mounted drive s: to c:\temp (using subst in the command line)
"subst c:\temp s:"
how can I get "c:\temp" by passing ...
2
votes
1answer
51 views
Can I mount an xml-file using powershell
I am currently exploring powershell. I like the way I can mount everything, for example the registry, so I can use it like a file system (with ls and cd). My question is: Is there a way I can mount an ...
2
votes
0answers
222 views
Named routes in mounted rails engine
I'm making a small rails engine which I mount like this:
mount BasicApp::Engine => "/app"
Using this answer I have verified that all the routes in the engine are as the should be:
However - ...
2
votes
1answer
341 views
Android Phone stopped notifiying about usb connection with PC
I've a Samsung Galaxy S2 device which I had been using for Android development through adb for almost two month. A few days ago it just stoppt detecting the usb connection with my Thinkpad T420. Here ...
2
votes
1answer
81 views
Compiling module that involves 'sys_mount' calls
I'm developing a module for linux and I need to mount a .iso file.
I have read and found that there is a function called sys_mount that calls the linux's mount programm and does all that stuff.
The ...
2
votes
2answers
1k views
Cannot delete device /dev/loop0
I unsafely removed a usb device that was attached to loop0 with losetup and could not delete nor detach loop0 afterwards.
losetup -a shows /dev/loop0: [0005]:145606719 (/dev/sdb1)
When I remount the ...
2
votes
4answers
415 views
Mount and unmount hard drives
How can I mount and unmount hard drives (platform independent, so no using Runtime to execute a hard-coded command) in the Java Programming Language?
2
votes
1answer
358 views
How to register newly mounted drive in git bash?
In my day-to-day work (I'm using MS Windows), I keep my git bash (actually using console2 for this) open for the whole day. It is also very frequent that I mount new drives that I would like to work ...
2
votes
3answers
664 views
Monitoring mount point changes via /proc/mounts
According proc manual, one can monitor for mount point changes in linux system by opening "/proc/mounts", and adding the file descriptor to read fd_set in select() call.
Following piece of code works ...
2
votes
2answers
606 views
How to get volume label based on device name using Python
I am making something like a list of mounted devices for Linux.
On program startup I parse /etc/mtab for existing mounts. To get notified about new mounts added to the system am using DBus and in ...
2
votes
2answers
1k views
Loopback mount in OSX
I am trying to mount an .img file (rootfs.img) so I can modify the features of the firmware for a derivitive of the 4fff N618 (Pandigital Novel).
I have flashed it with the firmware of the bqAvant ...
2
votes
1answer
199 views
How to make my application mount a sparse bundle without showing it in the Finder?
I am creating an application that has a bunch of files saved that are encrypted by using a sparse bundle, just like Time Machine does (my name is just a coincidence). I need to mount the sparse bundle ...
2
votes
1answer
2k views
How to find out mount/partition a directory or file is on? (Linux Server)
Is there a Linux command to easily find out which partition/mount a directory or file is on?
(This is probably a RTFM question, and I feel guilty for asking it, but somehow, I can't find a good ...
2
votes
5answers
127 views
Mounting archives such as *.zips (work in kernel mode without drivers)
I was wondering if there was a way to make a *.dll that mounts archives in Windows without the need for installing drivers. I've tried mounting *.isos (and was successful), but I needed to install ...
2
votes
1answer
1k views
how mount userdata.img or userdata-qemu.img in osx
Disk Utility in OSX easily mounts an SD Card image as a device, but not so the other img files.
I want to get the database I just created in the Android Emulator off the drive and into my osx file ...
2
votes
2answers
206 views
How do I notice when something gets mounted
I want my program always know all of the mountpoints. After a quick google I found that getmntent() and friends can tell me what is mounted. I realize I could do this everytime that I needed to know ...
2
votes
2answers
1k views
Finding the path of a mounted network share on Mac OS X
I'd like to find out where a network share is mounted when the mount command fails like this:
$ mkdir ~/share
$ mount_afp afp://server/share ~/share
mount_afp: the volume is already mounted
This ...
2
votes
2answers
1k views
Bash Script - umount a device, but don't fail if it's not mounted?
I'm writing a bash script and I have errexit set, so that the script will die if any command doesn't return a 0 exit code, i.e. if any command doesn't complete successfully. This is to make sure that ...
2
votes
3answers
2k views
How can I mount a remote directory on my computer?
I have all my code and data on my computer at work. But often I work from home, so I ssh into the work computer, connect to my GNU screen session (which includes a text-based emacs) and start hacking, ...
2
votes
2answers
1k views
How to detect NTFS mounted folders in C#?
Once upon a time I read how you detect programmatically for mounted NTFS folders (can cause cyclic recursion when searching through folders). Now i cannot find the link.. Does anyone know how to do ...
2
votes
3answers
631 views
Non-blocking mount in Linux
I use Linux's mount(2) function in a single-threaded process. But mounting of devices devices like CD-ROM may take a while (worst I've seen is 40 seconds!), as it will ponder a little, spin up the ...
2
votes
4answers
6k views
How to Mount a Linux directory from a different PC to your local Linux PC?
Is there a way to mount a Linux directory from a different PC to your local Linux PC? How?
1
vote
1answer
22 views
Is there a way to test if a directories contents are only there because of a mount?
There are too many keywords in my question to google this :)
I have a bash scripts and wish to test if a directory is only poupulated because of a mountI did in the script. IOW, the following events ...