Questions tagged [mount-point]

A mount point is a location (a directory) in a directory structure to which a resource (a directory structure) from another file system (like a data carrier, for example a CD-ROM) is attached (integrated).

170 questions
0
votes
1 answer

Assigning mountpoints per USB port

I'm using a Raspberry Pi Zero W running Raspbian Jessie Lite. I have a Zero4U 4 port USB hub (it's permanently attached) I'm looking to assign a mountpoint to each USB port, so that any drive plugged into port 1 will always use the mountpoint…
Airgiraffe
  • 55
  • 1
  • 7
0
votes
1 answer

How to install mhddfs on Synology

I want to have the HDDs in the NAS as separate volumes (to not loose all data when a single HDD fails; I don't need any protection like RAID; on the other hand, with JBOD or SHR I would loose data from all HDDs when only one fails). It means that…
Martin Grůber
  • 763
  • 1
  • 7
  • 17
0
votes
1 answer

Linux file with 0 size but has data

There is an existing linux server which has a mount,when I ls on that mount location its a file with 0 size. But the original location has files under it. >df /dev/mapper/Data2-INT_Internal 140493728 123468868 9888196 93%…
user204069
  • 1,215
  • 3
  • 19
  • 25
0
votes
0 answers

Powershell: Initialise and mount VHD disks

Powershell: Initialise and mount VHD disks Using Powershell and VBoxManage (VirtualBox), I can create and mount a VHD disk, as follows: $vhdpath="c:\myvhd.vhd" vboxmanage createmedium disk --filename $vhdpath --sizebyte 200 --format VHD --variant…
antonio
  • 10,629
  • 13
  • 68
  • 136
0
votes
1 answer

Empty alert message TYPO3 Backend when edit filemount (sys_filemounts)

Today, I've made a Core-Update from TYPO3 7.6.9to TYPO3 7.6.14(latest 12/2016) on a Windows Server IIS. There were some database changes, mainly sys_file_metadata?! Now it's impossible to add a new file mount. I've already 20 different file mounts…
user2310852
  • 1,654
  • 1
  • 25
  • 52
0
votes
0 answers

Detect File system change in the path

Suppose I mount a file system (wrapfs) at path /mnt/xyz ---> wrapfs and my root file system is mounted at "/" and is ext3 So if I do open on a file with path "/mnt/xyz/file1" how does the mount point change be detected by VFS.
Haswell
  • 1,573
  • 1
  • 18
  • 45
0
votes
1 answer

mount external volumes in docker container

I have CentOS host and CentOS docker container. I have mounted an external volume in CentOs host. I want to mount this external volume inside of CentOS docker container. I have tried the following command: mount -t ext4 /dev/sdf…
Rhenatasr
  • 1
  • 1
0
votes
1 answer

Mounted Volumes for IBM Bluemix CF Apps

IBM Containers on Bluemix has the support for mounting volumes and use across containers. Is there any way we can have a similar shared volumes kind w.r.t Bluemix CF Apps?
krckumar
  • 544
  • 4
  • 21
0
votes
1 answer

How to create hard-links on Linux to Windows shares

I have a Ruby script written by someone else that creates hard links for files located in the main folder, placing them into the subfolder using: File.link('/mnt/server10/file1.lzo', '/mnt/server10/subfolder10/file2.lzo') I have 10 identical…
browser30
  • 61
  • 2
  • 7
0
votes
1 answer

mount and remount as read-only a file in linux

I want to mount a file as read-only and anybody cant write to this file. I research in internet and find some commands: mount -o remount,ro /dev/sda6 /srv/html and mount -o remount,rw /dev/sda6 /srv/html but this for file system and partitons.…
Easy Dns Name
  • 19
  • 2
  • 3
0
votes
3 answers

Perl: Split up variable from system output (df -lh)

I've managed to use back-ticks to store my df -lh command as a variable, $var, but I would like to split it up so that each part of the variable can be assigned to another variable. Here is my output when I print $var: Filesystem Size Used …
dplatt
  • 79
  • 1
  • 10
0
votes
1 answer

Objective C - Write png file to remote file share

I want to move a png file from user's Mac desktop to a mounted Windows file share. I can't seem to be able to make the remote path work with the code I'm using. NSFileManager *filemgr; filemgr = [NSFileManager defaultManager]; if ([filemgr…
FlameCoder
  • 49
  • 1
  • 8
0
votes
1 answer

mount synology NAS

I am on Ubuntu 14.04 and I am trying to mount a synology NAS. I have followed all indications on https://www.synology.com/en-us/knowledgebase/DSM/tutorial/File_Sharing/How_to_access_files_on_Synology_NAS_within_the_local_network_NFS However I still…
RockScience
  • 17,932
  • 26
  • 89
  • 125
0
votes
0 answers

AIX - creating and mounting a FS

I create a FS on AIX6 easily with 3 commands. The procedure that i follow is: 1- mklv .......... 2- crfs (with -m mountpoint) ........ 3- mount ....... But when i have tried the same procedure on AIX7, i got the following error: mount: 0506-324…
Jai
  • 167
  • 1
  • 10
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