Last active
August 21, 2024 11:06
-
-
Save tiendungdev/4a5457fff78eee7c33387393f7db014b to your computer and use it in GitHub Desktop.
Fstab AlmaLinux 8.10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@upcode ~]# sudo blkid | |
/dev/vda1: UUID="927497f9-eae9-4a2b-bd8b-162997d80076" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="318ba904-01" | |
/dev/vda2: UUID="9876e00b-695e-4170-b66b-e53928eac854" TYPE="swap" PARTUUID="318ba904-02" | |
[root@upcode ~]# cat /etc/fstab | |
/dev/vda1 / ext4 defaults,usrquota 1 1 | |
/dev/vda2 swap swap defaults 0 0 | |
[root@upcode ~]# cat /etc/default/grub | |
GRUB_TIMEOUT=5 | |
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" | |
GRUB_DEFAULT=saved | |
GRUB_DISABLE_SUBMENU=true | |
GRUB_TERMINAL_OUTPUT="console" | |
GRUB_CMDLINE_LINUX="crashkernel=auto rhgb quiet net.ifnames=0 biosdevname=0" | |
GRUB_DISABLE_RECOVERY="true" | |
GRUB_ENABLE_BLSCFG=true | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment