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

Why don't mounted btrfs subvolumes show up in findmnt?

It appears that Docker creates btrfs subvolumes for its volumes. One example is: ID 266 gen 116089 top level 256 path var/lib/docker/btrfs/subvolumes/166cda8dab21861bcae5e3186d5e21014278d311d68966af9778cecdbdc7a736 These show up when I run btrfs…
Christopher Shroba
  • 7,006
  • 8
  • 40
  • 68
0
votes
0 answers

get latest modified time of a folder in azure data lake using abfss path

>>> os.stat("abfss://path") FileNotFoundError: [Error 2] No such file or directory: 'abfss://path' os package only works with mount points, but I'm not allowed to use mount points in my project, is there any other way to get the latest modified…
0
votes
1 answer

How can i mount cgroup controller by mount()

I want to mount cgroup controller by mount() in c language. code like this and mount_path has already give 777 permissions and run by root(host not container, with full capabilities),but program return "mount failed: Operation not permitted",and i…
FlagT
  • 107
  • 1
  • 8
0
votes
1 answer

Where can I find the entry mount point of Icecast2 in Linux?

I setup my icecast2 server reading this tutorial in my ubuntu server. Icecast2 service and web page only works with full url like http://my-url:8000/sample.mp3. I can't find where is the entry mount point even I tried to find in this docs. (I tried…
0
votes
2 answers

Creating a Virtual Disk Mount Point

I have used the ImDisk library with the .NET wrapper to create a Virtual Disk in my C# application. However, after I create the device, I apparently need to create a Mount Point as well for the device to actually show as a Drive Letter. I don't…
user470760
0
votes
1 answer

Similar to junction points, directory symbolic links, mount points

I wrote a program to detect if a directory is a ReparsePoint and it precisely detects junction points, directory symbolic links and mount drives. I saw a directory which looks and works similar to junction point(I didn't create it, created by…
sparrow
  • 5
  • 2
0
votes
1 answer

WSL bash, create aliases for each available Windows drive

For my WSL setup, in my .bashrc, I have the following: [ -d /mnt/c ] && alias llc='cd /mnt/c && ll' [ -d /mnt/d ] && alias lld='cd /mnt/d && ll' [ -d /mnt/e ] && alias lle='cd /mnt/e && ll' This is fine to quickly jump to each Windows drive, but is…
YorSubs
  • 3,194
  • 7
  • 37
  • 60
0
votes
0 answers

clean mounted docker folder with shutil.rmtree(dir)

When I clean [ shutil.rmtree(dir_name)] mounted folder (docker) on Ubuntu 18 then files are not visible from docker in mount dir [/app] after that, but the same approach works fine for MacOS. Following command used to mount a directory: docker run…
0
votes
3 answers

Getting Mount Points using awk & grep

I am trying to get mount points and their respective paths on linux. So when I run the mount -v command I get this example output //cifst/FSR on /mnt/share/cifst/FSR type cifs ... //sydatsttbsq01/TheBooks statements to be parsed on…
Ishan
  • 3,931
  • 11
  • 37
  • 59
0
votes
0 answers

How to create dir to mount new ext4 volume on AWS Linux instance

we have 500 gb EBS device (/dev/sdb) attached to instance. We would like to create few directories/sub-directories, for e.g. /dir1/test with 200 gb, /dir1/test/logs with 20 gb. Is there any way to do this WITHOUT SUDO access (can't login into linux…
0
votes
1 answer

Host directory indicated as mounted, but empty in the container - what to check?

My Docker container running in a minikube pod has configured a directory mounted from the host's non-empty /home/my_username/useful/dir. kubectl shows what I expect: $ kubectl get --namespace=my_namespace pods/my-pod -o json | jq…
Konstantin Shemyak
  • 2,369
  • 5
  • 21
  • 41
0
votes
1 answer

Run a pod with tar and try to push file into the mount point

Our basic need is to check whether we are able to copy/push a file to a mountpoint or not. For this, I am advised to run a pod with tar and try to push file into the mount point. I have searched through the web and got the following commands: ->…
Muskan Sharma
  • 11
  • 1
  • 3
0
votes
0 answers

How does File permission work on mount point?

An application in my docker container saves data to the directory /var/mydata and mount to the host location directory /var/data. In my container, Only the root has permission to read and write into this directory /var/mydata. So the Host system's…
NecessaryDevil
  • 105
  • 1
  • 10
0
votes
1 answer

macOS SDK11 / ARM64: statfs64 / f_mntonname

I am using the function statfs64 to obtain the mount point from a path on macOS via property f_mntonname. This works fine when building against the SDK 10.x for the architecture x86_64. However, when building for arm64 (and SDK 11), the method is…
dominik
  • 151
  • 1
  • 2
  • 13
0
votes
1 answer

How can I mount an aws linux instance locally?

I work on a windows machine but I ssh into an AWS linux box to do most of my work. I'm trying to figure out a way I can use my local tools (specifically Spyder) to open up files (python files) from the server so I can edit them in the IDE and then…
roundsquare
  • 201
  • 1
  • 7