steelcowboy@my-hostname:~> mount | grep nvme
/dev/nvme0n1p2 on / type btrfs (ro,relatime,ssd,space_cache,subvolid=358,subvol=/@/.snapshots/58/snapshot)
/dev/nvme0n1p2 on /root type btrfs (rw,noatime,ssd,space_cache,subvolid=260,subvol=/@/root)
/dev/nvme0n1p3 on /var type btrfs (rw,noatime,compress=zstd:1,ssd,discard=async,space_cache=v2,subvolid=5,subvol=/)
/dev/nvme0n1p2 on /.snapshots type btrfs (rw,noatime,ssd,space_cache,subvolid=266,subvol=/@/.snapshots)
/dev/nvme0n1p2 on /boot/grub2/i386-pc type btrfs (rw,noatime,ssd,space_cache,subvolid=265,subvol=/@/boot/grub2/i386-pc)
/dev/nvme0n1p2 on /boot/grub2/x86_64-efi type btrfs (rw,noatime,ssd,space_cache,subvolid=264,subvol=/@/boot/grub2/x86_64-efi)
/dev/nvme0n1p2 on /boot/writable type btrfs (rw,noatime,ssd,space_cache,subvolid=263,subvol=/@/boot/writable)
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
Mar 24 16:59:44 steelcowboy-fedora systemd[7842]: [email protected]: systemd-oomd killed 7 process(es) in this unit. | |
Mar 24 16:59:44 steelcowboy-fedora systemd-oomd[1294]: Memory pressure for /user.slice/user-1000.slice/[email protected] is greater than 10 for more than 10 seconds and there was reclaim activity | |
Mar 24 16:59:37 steelcowboy-fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=realmd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? re> | |
Mar 24 16:59:37 steelcowboy-fedora systemd[1]: realmd.service: Deactivated successfully. | |
Mar 24 16:59:37 steelcowboy-fedora realmd[7735]: stopping service | |
Mar 24 16:59:37 steelcowboy-fedora realmd[7735]: quitting realmd service after timeout | |
Mar 24 16:59:33 steelcowboy-fedora systemd[7842]: run-r36475b20a67c46a79451f67d7045e302.scope: Consumed 1min 49.772s CPU time. | |
Mar 24 16:59:33 steelcowboy-fedora systemd[7842]: run-r36475b20a67c46a79451f67d7045e302.scope: Dea |
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
# System setup | |
cmdline | |
keyboard --vckeymap=us --xlayouts='us' | |
lang en_US.UTF-8 | |
timezone America/Los_Angeles --utc --ntpservers 0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org | |
network --activate | |
# Disk setup | |
bootloader --location=mbr | |
zerombr |
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
[ 23.621043] localhost ignition[723]: INFO : Ignition 2.6.0 | |
[ 23.621043] localhost ignition[723]: INFO : Stage: umount | |
[ 23.621043] localhost ignition[723]: INFO : reading system config file "/usr/lib/ignition/base.ign" | |
[ 23.621043] localhost ignition[723]: INFO : no config at "/usr/lib/ignition/base.ign" | |
[ 23.621627] localhost ignition[723]: INFO : umount: op(1): [started] umounting "/sysroot/home" | |
[ 23.621663] localhost ignition[723]: CRITICAL : umount: op(1): [failed] umounting "/sysroot/home": invalid argument | |
[ 23.621763] localhost ignition[723]: umount failedFull config: | |
[ 23.621763] localhost ignition[723]: { | |
[ 23.621763] localhost ignition[723]: "ignition": { | |
[ 23.621763] localhost ignition[723]: "config": { |
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
{ | |
"ignition": { "version": "3.1.0" }, | |
"storage": { | |
"filesystems": [ | |
{ | |
"path": "/home", | |
"device": "/dev/disk/by-label/ROOT", | |
"format": "btrfs", | |
"wipeFilesystem": false, | |
"mountOptions": [ |
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
+ cat /lib/dracut/dracut-050+suse.75.g266a76d9-1.1 | |
dracut-050+suse.75.g266a76d9-1.1 | |
+ cat /proc/cmdline | |
+ sed -e 's/\(ftp:\/\/.*\):.*@/\1:*******@/g;s/\(cifs:\/\/.*\):.*@/\1:*******@/g;s/cifspass=[^ ]*/cifspass=*******/g;s/iscsi:.*@/iscsi:******@/g;s/rd.iscsi.password=[^ ]*/rd.iscsi.password=******/g;s/rd.iscsi.in.password=[^ ]*/rd.iscsi.in.password=******/g' | |
BOOT_IMAGE=/boot/Image-5.8.4-1-default root=UUID=928fe5dd-3410-4f2a-95fe-079f682bb677 rw rd.timeout=60 console=ttyS0,115200n8 console=tty0 quiet net.ifnames=0 ignition.firstboot rd.neednet=1 ip=dhcp ignition.platform.id=metal rd.neednet=0 | |
+ '[' -f /etc/cmdline ']' | |
+ for _i in /etc/cmdline.d/*.conf | |
+ '[' -f /etc/cmdline.d/20-force_drivers.conf ']' | |
+ echo /etc/cmdline.d/20-force_drivers.conf | |
/etc/cmdline.d/20-force_drivers.conf |
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
~ [2]$ echo $SHELL | |
/bin/sh | |
~ [3]$ ls -a | |
. .. .bash_logout .bashrc .kshrc .profile .sh_history install.sh | |
~ [4]$ ./install.sh | |
=> Downloading nvm from git to '/home/testuser/.nvm' | |
=> Cloning into '/home/testuser/.nvm'... | |
remote: Enumerating objects: 290, done. | |
remote: Counting objects: 100% (290/290), done. | |
remote: Compressing objects: 100% (257/257), done. |
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
testuser@fbd5d5ceabfa:~ $ echo $SHELL | |
/usr/bin/mksh | |
testuser@fbd5d5ceabfa:~ $ ls -a | |
. .. .bash_logout .bashrc .mkshrc .profile install.sh | |
testuser@fbd5d5ceabfa:~ $ ./install.sh | |
=> Downloading nvm from git to '/home/testuser/.nvm' | |
=> Cloning into '/home/testuser/.nvm'... | |
remote: Enumerating objects: 290, done. | |
remote: Counting objects: 100% (290/290), done. | |
remote: Compressing objects: 100% (257/257), done. |
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
$ echo $SHELL | |
$ ls -a | |
. .. .bash_logout .bashrc .mkshrc .profile install.sh | |
$ ./install.sh | |
=> Downloading nvm from git to '/home/testuser/.nvm' | |
=> Cloning into '/home/testuser/.nvm'... | |
remote: Enumerating objects: 290, done. | |
remote: Counting objects: 100% (290/290), done. | |
remote: Compressing objects: 100% (257/257), done. |
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
8d8ded2e30b4% echo $SHELL | |
8d8ded2e30b4% ls -a | |
. .. .bash_logout .bashrc .mkshrc .profile .zcompdump .zshrc install.sh | |
8d8ded2e30b4% ./install.sh | |
=> Downloading nvm from git to '/home/testuser/.nvm' | |
=> Cloning into '/home/testuser/.nvm'... | |
remote: Enumerating objects: 290, done. | |
remote: Counting objects: 100% (290/290), done. | |
remote: Compressing objects: 100% (257/257), done. |
NewerOlder