0
votes
0answers
19 views
mounting minix filesystem on ubuntu [closed]
How can I mount a Minix filesystem in Ubuntu?
I'm trying to do
sudo mount -o loop,offset=1024 -t minix B30M biggy/
and I get
mount: wrong fs type, bad option, bad superblock on /dev/loop0,
…
3
votes
2answers
73 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?
0
votes
1answer
112 views
How can I mount an ISO file on Windows 7 to install software that reboots during install?
I have Windows 7.
I downloaded the Visual Studio Express 2010 beta ISO file.
In installed Virtual Clone Drive and mounted the above ISO file as a drive.
I installed from that drive, but upon the …
1
vote
1answer
102 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 …
2
votes
6answers
394 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 …
1
vote
1answer
106 views
loopback mounting individual partitions from within a file that contains a partition table on linux
Is there any new/better way of loopback mounting individual partitions from within a file that contains a partition table on linux? I see the following but they are somewhat dated.
…
1
vote
2answers
200 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 …
0
votes
0answers
79 views
How do I mount sub-directory to a hard drive in Linux? [closed]
Hello,
Let us assume that I have two hard drives (A,B) and have the following directories:
/var/www
/var/www/upload
Currently if I upload a file to /var/www OR /var/www/upload ; it will be saved …
0
votes
1answer
47 views
Ruby code on NFS mount, using another file on same mount causes problems.
I'm working on an embedded system whoose details are explained at the end of this post. Tools are ruby on linux.
I put my ruby code on a remote NAS device on network and mount it to the embedded …
0
votes
2answers
562 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 != …
0
votes
2answers
281 views
Using a bash script on a Mac to connect to network shares?
I'm using a Mac at work and would like some network shares mounting when i start the computer. Can i use a bash script (or similar) to connect and mount these shares? The shares are from both Windows …
0
votes
5answers
252 views
Mounting and untar’ing a file in Java
Hello all,
I'm currently working on a web application that involves mounting a drive and extracting a tar.gz file, all in Java. Since the application runs in a linux environment, I figured I'd try …
0
votes
1answer
315 views
mount not working properly on Cygwin
I have WinXP box and Cygwin installed on it. There are many network drive mapped on windows. when I execute mount command on windows (which uses the same mount executable as Cygwin) a get list of …
7
votes
13answers
11k views
What is the best free iso mounting software?
I download alot of images from MSDN and they have a iso mounting tool available for use but it's not very slick. I've heard of Daemon Tools but haven't tried it. Anyone have anything they particularly …
0
votes
0answers
294 views
automount android as usb mass storage [closed]
when connecting the android device to pc, it prompts to mount it as usb mass
storage. is there a way to force it to auto mount it?
