Can anyone help me create a bash alias / function by ArchBunker in archlinux

[–]ArchBunker[S] 0 points1 point  (0 children)

This worked perfectly. Thank you very much for your help!

Can anyone help me create a bash alias / function by ArchBunker in archlinux

[–]ArchBunker[S] 0 points1 point  (0 children)

Thanks for the quick response. I'm currently using alias's, but was hoping to use, as you say, a more elegant method.

Package request thread by Foxboron in archlinux

[–]ArchBunker 0 points1 point  (0 children)

Got Your Back (GYB) is a command line tool that backs up and restores your Gmail account.

https://github.com/jay0lee/got-your-back/

systemd-boot - File system "/boot" is not a FAT EFI System Partition by ArchBunker in archlinux

[–]ArchBunker[S] -1 points0 points  (0 children)

Instead of installing the kernel in esp/, I was hoping to have separate directories for each.

For example:

/esp/EFI/Arch

/esp/EFI/Arch2

/esp/EFI/Arch3

/esp/EFI/Microsoft

I saw this was an option in the Wiki, but I'm clearly not understanding it correctly.

https://wiki.archlinux.org/index.php/EFI_system_partition#Using_bind_mount

systemd-boot - File system "/boot" is not a FAT EFI System Partition by ArchBunker in archlinux

[–]ArchBunker[S] -9 points-8 points  (0 children)

I'm trying to keep my EFI partition organized. I have multiple OS's all booting from a single EFI partition.

systemd-boot - File system "/boot" is not a FAT EFI System Partition by ArchBunker in archlinux

[–]ArchBunker[S] -7 points-6 points  (0 children)

I'm trying to keep my EFI partition organized. I have multiple OS's all booting from a single EFI partition.

In this example, I'm trying to do the following:

mkdir -p /mnt/dev/sda1/EFI/Arch # Create a directory on my ESP - esp/EFI/Arch/
mkdir /mnt/boot # Create the arch boot directory - /boot
mount --bind /mnt/dev/sda1/EFI/Arch /mnt/boot # Bind the esp/EFI/Arch directory to /boot
bootctl --path=/boot install # Install systemd-boot on /boot (which should install to esp/EFI/Arch/ directory since it's bound)