mount is a command used to attach the file data structure of a device as a branch of the root tree.
Questions tagged [mount]
1753 questions
0
votes
0 answers
QNX - two partitions mounted to same mounting point, change mountpoints order, or select the targeted partition?
I have two partitions mounted to the same mounting point in the filesystem.
The partitions have explicitly set a precedence, to resolve filename in a desired order.
Assuming Partition A is mounted before any other partition and partition B is…

user1770426
- 173
- 1
- 2
- 12
0
votes
1 answer
google cloud error "mount: you must specify the filesystem type"
I have created a standard persistent disk on google cloud but I am not able to mount it, if fails with
mount: you must specify the filesystem type
I have check that the disk was created correctly with "gcloud compute disks describe mydisk":
kind:…

user1364735
- 23
- 5
0
votes
1 answer
which one among none/nodev/debugfs shosuld I use to mount debugfs?
I am trying to enable debug in ath9k kernel driver module.
As debug uses debugfs, I need to mount debugfs. But people and internet are suggesting a little bit differnt mount commnad:
# (Note) mount usage: mount -t type dev dir
mount -t debugfs…

Jeon
- 4,000
- 4
- 28
- 73
0
votes
2 answers
Mount Volume on EC2
I have a local volume with a number of files I require for provisioning my EC2 instance. I was wondering if anyone had any suggestions for how I am should go about mounting this volume on my EC2/transferring these files so they are accessible by my…

Dave Lee
- 205
- 5
- 14
0
votes
1 answer
Mount multiple folders linked together
I have three folders, /ftp/A, /ftp/B, /ftp/C but logically C is a subdirectory of B and B is a subdirectory of A.
I try to resolv this using a script at system startup that binds the folders.
I have a text file in /ftp/dirFolder where there are the…

dvoran
- 31
- 6
0
votes
1 answer
How to repack a customized firmware with Firmware Mod Kit?
I have been trying to mod a default firmware of a Digital Video Recorder just because of its splash screen logo, which is incredibly bright and almost blinds me everytime I turn it on at night.
I have tried to use the Firmware Mod Kit to extract the…

Pedro
- 31
- 1
- 4
0
votes
1 answer
Raspberry Pi USB mount error (sd* letter always changes)
I wanted to set up a torrent server with my Raspberry Pi 2 and with a 16 GB USB.
My fstab:
proc /proc proc defaults 0 0
/dev/mmcblk0p1 /boot vfat defaults 0 2
/dev/mmcblk0p2 / …

betontalpfa
- 63
- 6
0
votes
2 answers
Mounting Drive with Specific Name in Mac with hdiutil
I am installing some apps with shell module in ansible. i want to write scripts which is generic for different versions.
- name: Installing Sublime Text
shell: "{{ item }}"
with_items:
- hdiutil mount "{{download_location}}/sublime.dmg"
- cp…

Dineshkumar
- 4,165
- 5
- 29
- 43
0
votes
3 answers
Unable to mount USB_SAMSUNG in Ubuntu 14.04
I really appreciate Ubuntu 14.04 and my Samsung Galaxy S3 mini (8200N).
However, I had strange issues when plugging in the phone and Ubuntu wasn't able to mount properly.
I want to share my experience with you, as it was a struggle for quite some…

Sebastian Schlicht
- 347
- 2
- 15
0
votes
1 answer
Auto mount Google cloud computing disk in Centos (using /etc/fstab)
I'm currently setting up a server @ Google Cloud computing, everything works fine except I'm having problems automatically mount the secondary disk to the system.
I'm running centos 6 / cloudlinux 6. I can mount to secondary disk without problems…
user5128984
0
votes
1 answer
Multidocker environment, amazon beanstalk, mounting volumes
What I'm trying to achieve: I have a docker container which contains a CMS, that CMS has a folder named 'assets'. I need the asset folder to be available to other containers, and also for the data to be safe from deletion when containers/images are…

Chris
- 3,437
- 6
- 40
- 73
0
votes
1 answer
Enumerate mounted volumes on iOS
Following code works fine on MacOS, but return empty list on iOS with SanDisk «SanDisk iXpand» flash drive:
NSArray *keys = [NSArray arrayWithObjects:NSURLVolumeNameKey, NSURLVolumeIsRemovableKey, nil];
NSArray *urls = [[NSFileManager…

Ernest Poletaev
- 558
- 5
- 15
0
votes
1 answer
mount: you must specify the filesystem type
I was trying to execute qemu while following the qemu/linaro tutorial,
https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Virtual_ARM_Linux_environment
I was executing the command,
sudo mount -o loop,offset=106496 -t auto vexpress.img…

junaids
- 177
- 1
- 4
- 17
0
votes
1 answer
How to get mount point information from an API on Mac?
When I issue the mount command, I get entries like the following:
//abc@host/b1 on /Volumes/b1 (smbfs, nodev, nosuid, mounted by abc)
//abc@host/b2 on /Volumes/b2 (smbfs, nodev, nosuid, mounted by abc)
These indicate that I have two samba shares…
user1002430
0
votes
2 answers
How to access external Storage in Tizen Smart TVs
I need yout help to find out how to write and read files from external usb storage from Tizen Smart TVs. Problem starts when detecting it
`
/**
* Hello World Sample Project
*/
// import Label component
var Label =…

André Claudino
- 558
- 4
- 18