Questions tagged [fstab]

The configuration file /etc/fstab contains the necessary information to automate the process of mounting partitions.

The configuration file /etc/fstab contains the necessary information to automate the process of mounting partitions. In a nutshell, mounting is the process where a raw (physical) partition is prepared for access and assigned a location on the file system tree (or mount point).

* In general fstab is used for internal devices, CD/DVD devices, and network shares (samba/nfs/sshfs). Removable devices such as flash drives *can* be added to fstab, but are typically mounted by gnome-volume-manager and are beyond the scope of this document.
* Options for mount and fstab are similar.
* Partitions listed in fstab can be configured to automatically mount during the boot process.
* If a device/partition is not listed in fstab ONLY ROOT may mount the device/partition.
* Users may mount a device/partition if the device is in fstab with the proper option

SOURCE: https://help.ubuntu.com/community/Fstab

241 questions
2
votes
1 answer

New LVM VDO logical volume inactive at startup, even with "--activate y" parameter

I'm trying to make LVM VDO work on my Debian 11.3 (test VM installed from scratch). I've shared my installation procedure here if someone wants to reproduce the problem. Now I'm stuck with a "basic" problem which is : the logical volume is inactive…
tigerblue77
  • 31
  • 1
  • 3
2
votes
2 answers

Slow svn up, ci, etc

I have a server (LAN) and a few projects subverion. They (developers) tell me that is running very slow (update, checkout, etc) They use svn+ssh:// server:/# svnserve --version svnserve, version 1.5.1 (r32289) compiled Aug 6 2009,…
melocoton
2
votes
0 answers

NFS4 and bind mount issues

Ok guys I have a weird issue. After recently adding a bind mount 2 folders deep inside an existing NFS4 export, when I mount that NFS export on my client, it leads directly to the bind mount. No matter what I try it doesnt change. I have my Servers…
1
vote
2 answers

ssh connection refused after editing fstab in Google cloud vm

I'm getting ssh: connect to host xx.xx.xx.xx port 22: Connection refused after updating fstab for mounting Google bucket. fstab entry that I have added is as follows, bucket mount_point fuse…
1
vote
0 answers

After a Debian 9.9 upgrade my server doesn't boot because of the disks in fstab

After a Debian 9.9 upgrade I restarted the server to load the new kernel image, Debian 4.9.168-1+deb9u5 (2019-08-11) x86_64 GNU/Linux, and it didn't boot anymore. The server has 4 ssd disks, the main one loads the operating system and mounts…
skeptic
  • 21
  • 5
1
vote
1 answer

Mount merged partition at boot, fuse module missing

I have a merged partition from 3 different hard drives with mergerfs. I set it up following this tutorial. To automate the mounting I added instructions in the fstab : UUID=b3c8301c-5d12-4ab1-ab8c-9249e81978df / ext4 rw,relatime,data=ordered…
Opsse
  • 131
  • 1
  • 6
1
vote
0 answers

Cryptodevice on top of DRBD with CentOS7

I have created a replicated drbd device. On top, I have create an encrypted volume with cryptsetup and finally formatted with ext4. Additionally, I am using a keyfile to be able to automount the crypted device. (Please do insist this being unsecure.…
Christian
  • 11
  • 1
1
vote
1 answer

cygwin: chroot jail - cannot run any command

I have installed Cygwin with Apache, PHP, Mercurial, MYSQL, OpenSSH, PYTHON I have updated sshd_config to chroot jail to access user-defined folders example: Match group sftp_users ChrootDirectory /home/%u SSH / SFTP works fine as I wanted. After…
1
vote
0 answers

nfs mount failing to reconnect after reboot

Ok, this one is odd. I just rebooted my entire home network for the first time. Took a bit but got everything to come back up. I have a media vault nas, sharing a handful of drives on NFS/SMB, and an old beater Ubuntu machine. Now my nas came up…
scphantm
  • 203
  • 1
  • 10
1
vote
3 answers

Two external hard drive on same mounting point in fstab, but only one should be mounted

I have two external hard drives in the fstab file. They are pointing to the same mounting point. During the startup only one of this two drives should be mounted at the mounting point and only one of them is attached to the pc. The second one is not…
Kaffi
  • 27
  • 1
  • 5
1
vote
1 answer

Cannot mount a drive as read-write Fedora 26

I just switched from a fedora 25 machine to a fedora 26, and for some reason, I cannot mount the same drives as read/write. This "d_drive" is a physical SSD connected via SATA. I'm able to mount USB connected SSD drives as read/write, but for some…
swv
  • 123
  • 6
1
vote
1 answer

'Could not find filesystem /dev/root' after Clonezilla clone of redhat install to newer hardware'

I am cloning what appears to be a redhat 4 (possibly 5?)server to fairly newer hardware, as the original has a failing board. DBA would rather not reconfigure a new installation so they want me to clone if possible. I used Clonezilla stable…
1
vote
0 answers

Filesystem doesn't reliably mount upon EC2 boot

I've got a mail server (Ubuntu 16.04) running on AWS. Sometimes, when rebooting, the EBS volume that contains all the mail doesn't always mount. This just happened, and I ran df -H, noticing the volume was not mounted: Filesystem Size Used…
ffxsam
  • 383
  • 2
  • 3
  • 9
1
vote
1 answer

How to prevent tmpfs /tmp causing machine to run out of memory?

I have a virtual server (Debian 8.5, OpenVZ) that seems to run out of memory* when tmpfs-based /tmp is about 60% full. (* while the system reports 2GB of memory still free, processes start to behave erratically, /tmp writes fail with ENOSPC, forking…
Kornel
  • 1,075
  • 1
  • 11
  • 16
1
vote
3 answers

Mounting multipath devices by UUID in fstab

I have several multipath iSCSI LUN's formatted as ocfs2 filesystems. They are part of an Ubuntu 14.04 cluster using local heartbeat. This all appears to be working fine if I mount them manually after rebooting. If I try to automatically mount them…