Questions tagged [mount]
Mounting is the concept of attaching a file system to a computer for access.
86 questions
45
votes
4
answers
132k
views
What's the best way to get info about currently unmounted drives?
First, the situation: I've got a Linux computer with two eSATA drive bays that accept removable SSD drives. I'm trying to write a little GUI application that makes it easier for the user to mount/...
16
votes
2
answers
3k
views
Unable to mount an XFS filesystem from Linux RAID6 array ("Log inconsistent")
First time poster - my apologies if I don't get the etiquette correct.
I have a ~200TB RAID6 array with 30 disks and I'm unable to mount it - I just get the message:
mount /dev/md125 /export/models
...
54
votes
2
answers
25k
views
Prevent the possiblity of writing data to an unmounted mount point directory [duplicate]
I have an Ubuntu server where I'm automounting an external hard drive each boot.
To do this, I've created an empty folder on the root partition, and the drive gets mounted "inside" this folder.
...
13
votes
6
answers
42k
views
Quick way to restore or reload /etc/fstab settings?
I'm working with a complex /etc/fstab on a RHEL 6.x-based server. The system has a variety of mount options in use across eight partitions, including several bind mounts. I'm testing options and their ...
57
votes
9
answers
233k
views
Determine if filesystem or partition is mounted RO or RW via Bash Script?
Is there an easy way to determine if a mounted filesystem is mounted as Read-Only or Read-Write? I was thinking just to pipe mount but I thought there might be an easier way.
20
votes
1
answer
11k
views
Creating a grow-on-demand encrypted volume with LUKS
I am trying to create an encrypted, growing-as-needed file system in with Linux. I am familiar with LUKS and cryptsetup.
I can create an empty file:
fallocate -l 512M /root/image
I can create a LUKS ...
4
votes
1
answer
6k
views
Mounting windows shares with Active Directory permissions
I've managed to get my Ubuntu (server 10.04 beta 2) box to accept logins from users with Active Directory credentials, now I'd like those users to access their permissible windows shares on a W2003 R2 ...
1
vote
3
answers
22k
views
Google Cloud Storage mount on windows
I use Google Cloud Storage successfully in Linux for backups. I first mount the storage and then easily copy the files.
Now I want to do the same in windows, but I can't find a way to mount Google ...
241
votes
8
answers
278k
views
How do you validate fstab without rebooting?
I modified /etc/fstab.
I verified the new devices and I can mount them with the mount command.
How may I validate the modifications made to /etc/fstab ?
22
votes
4
answers
32k
views
How to use "Instance Store Volumes" storage in Amazon EC2?
According to AWS I got 850 GB storage with the Medium EC2 server. But when i create an Amazon Linux AMI, I am unable to use the 850 GB provided.
While creating it does show in Storage Device ...
18
votes
4
answers
126k
views
"Stale NFS file handle" after reboot
On the server node, it is possible to access an exported folder. However, after reboots (both server and client), the folder is no longer accessible from the clients.
On server
# ls /data
Folder1
...
15
votes
2
answers
84k
views
How do I mount sub-directory to a hard drive in Linux?
Let us assume that I have two hard drives (A,B) and have the following directories:
/var/www
/var/www/upload
Currently if I upload a file to /var/www OR /var/www/upload ; it will be saved in drive A.
...
9
votes
3
answers
695
views
Mounting location of non-standard file systems
I've always found it confusing on where to mount permanent non-standard filesystems in Linux. Such as a filesystem that contains company files which is shared out via Samba or NFS.
It's not ...
8
votes
3
answers
12k
views
Access files located on the underlying filesystem of an NFS mountpoint
Perhaps this is an odd request, but it's the opposite of the question detailed at:
Is it possible to view the contents of an underlying NFS mount without unmounting the NFS content?
I have an ...
4
votes
3
answers
6k
views
Grant Samba share permission to AD computer accounts
I'm running Samba 3.4.7 with Likewise Open 6.0.0.8388 on Ubuntu 10.04 Server x64. This server is joined to a domain (functional level 2003) run by 2008R2 domain controllers. In a Windows server, I can ...