We have by far the largest RPM repository with NGINX module packages and VMODs for Varnish. If you want to install NGINX, Varnish, and lots of useful performance/security software with smooth
Active subscription is required.
yum
upgrades for production use, this is the repository for you.
Active subscription is required.
Operating System and Software
- Rocky Linux 8
- CentOS 7
Problem
- How to change the default mount option of root filesystem in CentOS 7?
- Why the options set in
/etc/fstab
make no effect?
How to Fix
-
Add [rootflags] variable at the end of the line of
GRUB_CMDLINE_LINUX
in/etc/default/grub
as below:
[example]GRUB_CMDLINE_LINUX="rd.lvm.lv=rhel/swap crashkernel=auto rd.lvm.lv=rhel/root rhgb quiet biosdevname=0 rootflags=pquota"
-
Generate a GRUB configuration file.
# grub2-mkconfig -o /boot/grub2/grub.cfg
-
Reboot the host.
# reboot
-
Check the option we set be effective.
# mount | grep root /dev/mapper/rhel-root on / type xfs (rw,relatime,attr2,inode64,prjquota) //prjquota
Note:
prjquota
is the same withpquota
. Please refer theman
page ofmount
.# man mount