Questions tagged [mount]
Mounting is the concept of attaching a file system to a computer for access.
1,242 questions
Score of 0
0 answers
45 views
Map uid/gid of mount to specific uid/gid in kubernetes
Kubernetes supports user namespaces, and apparently supports id-mapped mounts. Tools like podman allow for using id-mapped mounts via the idmap option to --mount, but there doesn't appear to be ...
Score of 3
1 answer
244 views
Direct Raw Disk Export over iSCSI without VHDX Backing (Windows)
I am attempting to implement block-level remote disk access between two Windows systems:
System B (Target): Hosts a physical disk (e.g., \.\PhysicalDrive0)
System A (Initiator): Connects over iSCSI ...
Score of 5
1 answer
371 views
NFSv4: What's the point of the refer and replicas export options?
I'm trying to get some simple kind of failover working with an NFS share. There aren't hard requirements on data consistency during writes (even a working multi-server read-only setup would be fine) ...
Score of 0
0 answers
128 views
how to sync already internally mounted directory from host to docker container
I have this (docker) container with a directory (e.g. /work) that I need to sync with its mirror to be on the host (e.g. ~/work). Normally, I would simply bind mount with docker run -v ~/work:/work .....
Score of 1
0 answers
97 views
NFS Error: Request Couldn’t Be Completed in Time (SUSE 12 SP3)
I’m troubleshooting an NFS issue on SUSE Linux Enterprise Server 12 SP3.
Setup
Server: SUSE Linux 12 SP3, exporting via NFSv3 and NFSv4.
Clients: AWS EKS 5 old worker node (This work) , 2 new worker ...
Score of 0
1 answer
122 views
GCE, ubuntu_24, non-boot disk cloned from snapshot will not mount
GCE, ubuntu 20.04 and ubuntu 24.04 systems.
I created a new disk from a snapshot of a non-boot disk attached to a running ubuntu_20 system. I attached the new disk to a running ubuntu 24.04 system. ...
Score of 0
0 answers
183 views
How to mount(/bind) a host folder for the database files for a Docker-ized SQL Server Express instance?
I'm executing the following command line on MS Windows 11:
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=Pass@word" -e "MSSQL_PID=Express"
-p 1433:1433 --...
Score of 0
1 answer
274 views
nfs-ls works but cant mount share
I have strange problem with my nfs share.
I can list files in client from server using nfs-ls command, but I can't mount to created folder.
nfs-ls nfs://10.200.1.99/tmp/mnt/sda
gives me list of files ...
Score of 0
1 answer
397 views
Is it possible to set client-aware quota on mounted NFS shares?
I have a Ubuntu 22.04 "computational" server in our lab that mounts a NFS share from a NAS (Synology DS1522+):
147.xxx.xxx.xxx:volume1/compserver /mnt/nas2 nfs rsize=8192,wsize=8192,timeo=14,...
Score of 0
1 answer
120 views
Mount error on AWS Ec2 instance
I am launching an ec2 instance of type m5a.16xlarge. I am trying to mount an AMI on the ec2 instance.
I ssh to the host and run a script which does the following
I have scp’ed an AMI image to the ...
Score of 0
0 answers
33 views
fstab: ignore if server is not available [duplicate]
I have this fstab entry:
192.168.1.225:/volume1/TuxedoBackup /mnt/TuxedoBackup nfs nouser,rsize=8192,wsize=8192,atime,auto,rw,dev,exec,suid,nofail,x-systemd.automount,x-systemd.requires=network-online....
Score of 0
1 answer
726 views
Network storage sporadically fails to mount CIFS due to missing charset
Ine of our servers sometimes loses connection to our mounted storage device and reconnection fails.
The kernel log states:
CIFS: Attempting to mount //XXXX
No dialect specified on mount. Default has ...
Score of 9
2 answers
718 views
In the XFS file system, does the ls command (syscall getdents) access the disk, or is there a cached directory structure in memory? [closed]
Just for test, I created and mounted the same XFS file system on two hosts based on a shared device (pmem).Host A created a file in its mounted directory and executed the sync command to ensure that ...
Score of 1
1 answer
273 views
overlapping disks after partition extension
The machine I'm working with runs Ubuntu 20.046 LTS and has two HDD plugged. The initial setup was following
I wanted to use sdb to extend ubuntu-vg-ubuntu-lv which would make a total of about 5.3T. ...
Score of 1
1 answer
2117 views
use new hard drive to extend existing partition on Ubuntu
I have inherited this machine with following partition setup:
The machine runs Ubuntu 20.046 LTS and as one can see above there is 3.5T space unallocated in the partition schema. The unallocated ...