Questions tagged [mount]
Mounting is the concept of attaching a file system to a computer for access.
1,241 questions
0
votes
0
answers
19
views
Building a Custom Read-Only iSCSI Target on Windows (Physical Disk Export) [closed]
I want to implement a custom iSCSI target on Windows Server 2019 that exports a physical disk (\.\PhysicalDriveX) in strict read-only mode to a Windows client.
Requirements:
Disk should appear as a ...
5
votes
1
answer
319
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) ...
0
votes
0
answers
107
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 .....
1
vote
0
answers
78
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 ...
0
votes
1
answer
110
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. ...
0
votes
0
answers
139
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 --...
0
votes
1
answer
221
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 ...
0
votes
1
answer
300
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,...
0
votes
1
answer
105
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 ...
0
votes
0
answers
31
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....
0
votes
1
answer
570
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 ...
9
votes
2
answers
704
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 ...
1
vote
1
answer
260
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. ...
1
vote
1
answer
2k
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 ...
3
votes
2
answers
2k
views
Linux umount order at reboot/shutdown
I have a (I think) very particular situation on my embedded Linux which I cannot work out properly...
Due to particular (custom) checks to be performed on filesystems at startup before mounting them, ...