<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Konki</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Konki"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Konki"/>
	<updated>2026-05-06T15:04:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25366</id>
		<title>Talk:Dualbooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25366"/>
		<updated>2023-10-08T17:00:05Z</updated>

		<summary type="html">&lt;p&gt;Konki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;1.&lt;br /&gt;
&lt;br /&gt;
   alp:/# updqate-grub2&lt;br /&gt;
   /bin/ash: updqate-grub2: not found&lt;br /&gt;
&lt;br /&gt;
And package absent&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
&lt;br /&gt;
alp:/# grub-mkconfig -o /boot/grub/grub.cfg&lt;br /&gt;
Generating grub configuration file ...&lt;br /&gt;
Found linux image: /boot/vmlinuz-lts&lt;br /&gt;
Found initrd image: /boot/initramfs-lts&lt;br /&gt;
Warning: os-prober will be executed to detect other bootable partitions.&lt;br /&gt;
Its output will be used to detect bootable binaries on them and create new boot entries.&lt;br /&gt;
error: syntax error.&lt;br /&gt;
error: Incorrect command.&lt;br /&gt;
error: syntax error.&lt;br /&gt;
Syntax error at line 126&lt;br /&gt;
Syntax errors are detected in generated GRUB config file.&lt;br /&gt;
Ensure that there are no errors in /etc/default/grub&lt;br /&gt;
and /etc/grub.d/* files or please file a bug report with&lt;br /&gt;
/boot/grub/grub.cfg.new file attached.&lt;br /&gt;
&lt;br /&gt;
— Preceding unsigned comment added by Vul (talk • contribs) 04:43, 7 November 2022‎&lt;br /&gt;
&lt;br /&gt;
    The command in your 1st section is most certainly misspelled at a minimum.&lt;br /&gt;
    zcrayfish (talk) 03:01, 14 August 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
3. Installing Alpine on an HDD partition with dualbooting windows 10/11&lt;br /&gt;
&lt;br /&gt;
I&#039;m not a computer scientist, but this should be added to the &amp;quot;Installing Alpine on an HDD partition&amp;quot; section to avoid putting off those who wish to upgrade. &lt;br /&gt;
&lt;br /&gt;
to be done after basic setup-alpine&lt;br /&gt;
if we assume that the partition is the following:&lt;br /&gt;
/dev/nvme0n1p5 for the root&lt;br /&gt;
/dev/nvme0n1p2 /mnt/boot/efi for the efi partition created by windows 10/11&lt;br /&gt;
/dev/sda4 for /home&lt;br /&gt;
&lt;br /&gt;
in the following example:&lt;br /&gt;
&lt;br /&gt;
apk update  &lt;br /&gt;
apk upgrade  &lt;br /&gt;
apk add dosfstools for vfat support  &lt;br /&gt;
apk add util-linux for lsblk  &lt;br /&gt;
apk add e2fsprogs for mkfs  &lt;br /&gt;
apk add efibootmgr&lt;br /&gt;
&lt;br /&gt;
lslbk  &lt;br /&gt;
or  &lt;br /&gt;
fdisk -l&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Format partition /  &lt;br /&gt;
mkfs.ext4 /dev/nvme0n1p5  &lt;br /&gt;
Format /home partition  &lt;br /&gt;
mkfs.ext4 /dev/sda4&lt;br /&gt;
&lt;br /&gt;
Mount the Root partition  &lt;br /&gt;
mount -t ext4 /dev/nvme0n1p5 /mnt&lt;br /&gt;
&lt;br /&gt;
Mount the EFI partition created by windows  &lt;br /&gt;
mkdir -p /mnt/boot/efi  &lt;br /&gt;
mount -t vfat /dev/nvme0n1p2 /mnt/boot/efi&lt;br /&gt;
&lt;br /&gt;
and create the necessary directories in EFI  &lt;br /&gt;
cd /mnt/boot/efi/EFI  &lt;br /&gt;
mkdir -p boot # attention must be lowercase not Boot #&lt;br /&gt;
mkdir -p alpine&lt;br /&gt;
&lt;br /&gt;
Mount /home partition  &lt;br /&gt;
mkdir -p /mnt/home  &lt;br /&gt;
mount -t ext4 /dev/sda4 /mnt/home&lt;br /&gt;
&lt;br /&gt;
Install in /mnt partition  &lt;br /&gt;
setup-disk -m sys /mnt&lt;br /&gt;
&lt;br /&gt;
reboot&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25365</id>
		<title>Talk:Dualbooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25365"/>
		<updated>2023-10-08T16:59:00Z</updated>

		<summary type="html">&lt;p&gt;Konki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;1.&lt;br /&gt;
&lt;br /&gt;
   alp:/# updqate-grub2&lt;br /&gt;
   /bin/ash: updqate-grub2: not found&lt;br /&gt;
&lt;br /&gt;
And package absent&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
&lt;br /&gt;
alp:/# grub-mkconfig -o /boot/grub/grub.cfg&lt;br /&gt;
Generating grub configuration file ...&lt;br /&gt;
Found linux image: /boot/vmlinuz-lts&lt;br /&gt;
Found initrd image: /boot/initramfs-lts&lt;br /&gt;
Warning: os-prober will be executed to detect other bootable partitions.&lt;br /&gt;
Its output will be used to detect bootable binaries on them and create new boot entries.&lt;br /&gt;
error: syntax error.&lt;br /&gt;
error: Incorrect command.&lt;br /&gt;
error: syntax error.&lt;br /&gt;
Syntax error at line 126&lt;br /&gt;
Syntax errors are detected in generated GRUB config file.&lt;br /&gt;
Ensure that there are no errors in /etc/default/grub&lt;br /&gt;
and /etc/grub.d/* files or please file a bug report with&lt;br /&gt;
/boot/grub/grub.cfg.new file attached.&lt;br /&gt;
&lt;br /&gt;
— Preceding unsigned comment added by Vul (talk • contribs) 04:43, 7 November 2022‎&lt;br /&gt;
&lt;br /&gt;
    The command in your 1st section is most certainly misspelled at a minimum.&lt;br /&gt;
    zcrayfish (talk) 03:01, 14 August 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
&lt;br /&gt;
I&#039;m not a computer scientist, but this should be added to the &amp;quot;Installing Alpine on an HDD partition&amp;quot; section to avoid putting off those who wish to upgrade. &lt;br /&gt;
&lt;br /&gt;
to be done after basic setup-alpine&lt;br /&gt;
if we assume that the partition is the following:&lt;br /&gt;
/dev/nvme0n1p5 for the root&lt;br /&gt;
/dev/nvme0n1p2 /mnt/boot/efi for the efi partition created by windows 10/11&lt;br /&gt;
/dev/sda4 for /home&lt;br /&gt;
&lt;br /&gt;
in the following example:&lt;br /&gt;
&lt;br /&gt;
apk update  &lt;br /&gt;
apk upgrade  &lt;br /&gt;
apk add dosfstools for vfat support  &lt;br /&gt;
apk add util-linux for lsblk  &lt;br /&gt;
apk add e2fsprogs for mkfs  &lt;br /&gt;
apk add efibootmgr&lt;br /&gt;
&lt;br /&gt;
lslbk  &lt;br /&gt;
or  &lt;br /&gt;
fdisk -l&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Format partition /  &lt;br /&gt;
mkfs.ext4 /dev/nvme0n1p5  &lt;br /&gt;
Format /home partition  &lt;br /&gt;
mkfs.ext4 /dev/sda4&lt;br /&gt;
&lt;br /&gt;
Mount the Root partition  &lt;br /&gt;
mount -t ext4 /dev/nvme0n1p5 /mnt&lt;br /&gt;
&lt;br /&gt;
Mount the EFI partition created by windows  &lt;br /&gt;
mkdir -p /mnt/boot/efi  &lt;br /&gt;
mount -t vfat /dev/nvme0n1p2 /mnt/boot/efi&lt;br /&gt;
&lt;br /&gt;
and create the necessary directories in EFI  &lt;br /&gt;
cd /mnt/boot/efi/EFI  &lt;br /&gt;
mkdir -p boot # attention must be lowercase not Boot #&lt;br /&gt;
mkdir -p alpine&lt;br /&gt;
&lt;br /&gt;
Mount /home partition  &lt;br /&gt;
mkdir -p /mnt/home  &lt;br /&gt;
mount -t ext4 /dev/sda4 /mnt/home&lt;br /&gt;
&lt;br /&gt;
Install in /mnt partition  &lt;br /&gt;
setup-disk -m sys /mnt&lt;br /&gt;
&lt;br /&gt;
reboot&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25364</id>
		<title>Talk:Dualbooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25364"/>
		<updated>2023-10-08T16:56:30Z</updated>

		<summary type="html">&lt;p&gt;Konki: Installing Alpine on an HDD partition with dual boot (MS windows 10/11)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m not a computer scientist, but this should be added to the &amp;quot;Installing Alpine on an HDD partition&amp;quot; section to avoid putting off those who wish to upgrade. &lt;br /&gt;
&lt;br /&gt;
to be done after basic setup-alpine&lt;br /&gt;
if we assume that the partition is the following:&lt;br /&gt;
/dev/nvme0n1p5 for the root&lt;br /&gt;
/dev/nvme0n1p2 /mnt/boot/efi for the efi partition created by windows 10/11&lt;br /&gt;
/dev/sda4 for /home&lt;br /&gt;
&lt;br /&gt;
in the following example:&lt;br /&gt;
&lt;br /&gt;
apk update  &lt;br /&gt;
apk upgrade  &lt;br /&gt;
apk add dosfstools for vfat support  &lt;br /&gt;
apk add util-linux for lsblk  &lt;br /&gt;
apk add e2fsprogs for mkfs  &lt;br /&gt;
apk add efibootmgr&lt;br /&gt;
&lt;br /&gt;
lslbk  &lt;br /&gt;
or  &lt;br /&gt;
fdisk -l&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Format partition /  &lt;br /&gt;
mkfs.ext4 /dev/nvme0n1p5  &lt;br /&gt;
Format /home partition  &lt;br /&gt;
mkfs.ext4 /dev/sda4&lt;br /&gt;
&lt;br /&gt;
Mount the Root partition  &lt;br /&gt;
mount -t ext4 /dev/nvme0n1p5 /mnt&lt;br /&gt;
&lt;br /&gt;
Mount the EFI partition created by windows  &lt;br /&gt;
mkdir -p /mnt/boot/efi  &lt;br /&gt;
mount -t vfat /dev/nvme0n1p2 /mnt/boot/efi&lt;br /&gt;
&lt;br /&gt;
and create the necessary directories in EFI  &lt;br /&gt;
cd /mnt/boot/efi/EFI  &lt;br /&gt;
mkdir -p boot # attention must be lowercase not Boot #&lt;br /&gt;
mkdir -p alpine&lt;br /&gt;
&lt;br /&gt;
Mount /home partition  &lt;br /&gt;
mkdir -p /mnt/home  &lt;br /&gt;
mount -t ext4 /dev/sda4 /mnt/home&lt;br /&gt;
&lt;br /&gt;
Install in /mnt partition  &lt;br /&gt;
setup-disk -m sys /mnt&lt;br /&gt;
&lt;br /&gt;
reboot&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25363</id>
		<title>Talk:Dualbooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25363"/>
		<updated>2023-10-08T16:54:03Z</updated>

		<summary type="html">&lt;p&gt;Konki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m not a computer scientist, but this should be added to the &amp;quot;Installing Alpine on an HDD partition&amp;quot; section to avoid putting off those who wish to upgrade. &lt;br /&gt;
&lt;br /&gt;
to be done after basic setup-alpine&lt;br /&gt;
if we assume that the partition is the following:&lt;br /&gt;
/dev/nvme0n1p5 for the root&lt;br /&gt;
/dev/nvme0n1p2 /mnt/boot/efi for the efi partition created by windows 10/11&lt;br /&gt;
/dev/sda4 for /home&lt;br /&gt;
&lt;br /&gt;
in the following example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;apk update  &lt;br /&gt;
apk upgrade  &lt;br /&gt;
apk add dosfstools for vfat support  &lt;br /&gt;
apk add util-linux for lsblk  &lt;br /&gt;
apk add e2fsprogs for mkfs  &lt;br /&gt;
apk add efibootmgr&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
lslbk  &lt;br /&gt;
or  &lt;br /&gt;
fdisk -l&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Format partition /  &lt;br /&gt;
mkfs.ext4 /dev/nvme0n1p5  &lt;br /&gt;
Format /home partition  &lt;br /&gt;
mkfs.ext4 /dev/sda4&lt;br /&gt;
&lt;br /&gt;
Mount the Root partition  &lt;br /&gt;
mount -t ext4 /dev/nvme0n1p5 /mnt&lt;br /&gt;
&lt;br /&gt;
Mount the EFI partition created by windows  &lt;br /&gt;
mkdir -p /mnt/boot/efi  &lt;br /&gt;
mount -t vfat /dev/nvme0n1p2 /mnt/boot/efi&lt;br /&gt;
&lt;br /&gt;
and create the necessary directories in EFI  &lt;br /&gt;
cd /mnt/boot/efi/EFI  &lt;br /&gt;
mkdir -p boot # attention must be lowercase not Boot #&lt;br /&gt;
mkdir -p alpine&lt;br /&gt;
&lt;br /&gt;
Mount /home partition  &lt;br /&gt;
mkdir -p /mnt/home  &lt;br /&gt;
mount -t ext4 /dev/sda4 /mnt/home&lt;br /&gt;
&lt;br /&gt;
Install in /mnt partition  &lt;br /&gt;
setup-disk -m sys /mnt&lt;br /&gt;
&lt;br /&gt;
reboot&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25362</id>
		<title>Talk:Dualbooting</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Dualbooting&amp;diff=25362"/>
		<updated>2023-10-08T16:52:06Z</updated>

		<summary type="html">&lt;p&gt;Konki: Installing Alpine on an HDD partition with dual boot (MS windows 10/11)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m not a computer scientist, but this should be added to the &amp;quot;Installing Alpine on an HDD partition&amp;quot; section to avoid putting off those who wish to upgrade. &lt;br /&gt;
&lt;br /&gt;
to be done after basic setup-alpine&lt;br /&gt;
if we assume that the partition is the following:&lt;br /&gt;
/dev/nvme0n1p5 for the root&lt;br /&gt;
/dev/nvme0n1p2 /mnt/boot/efi for the efi partition created by windows 10/11&lt;br /&gt;
/dev/sda4 for /home&lt;br /&gt;
&lt;br /&gt;
in the following example:&lt;br /&gt;
&lt;br /&gt;
apk update  &lt;br /&gt;
apk upgrade  &lt;br /&gt;
apk add dosfstools for vfat support  &lt;br /&gt;
apk add util-linux for lsblk  &lt;br /&gt;
apk add e2fsprogs for mkfs  &lt;br /&gt;
apk add efibootmgr&lt;br /&gt;
&lt;br /&gt;
lslbk  &lt;br /&gt;
or  &lt;br /&gt;
fdisk -l&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Format partition /  &lt;br /&gt;
mkfs.ext4 /dev/nvme0n1p5  &lt;br /&gt;
Format /home partition  &lt;br /&gt;
mkfs.ext4 /dev/sda4&lt;br /&gt;
&lt;br /&gt;
Mount the Root partition  &lt;br /&gt;
mount -t ext4 /dev/nvme0n1p5 /mnt&lt;br /&gt;
&lt;br /&gt;
Mount the EFI partition created by windows  &lt;br /&gt;
mkdir -p /mnt/boot/efi  &lt;br /&gt;
mount -t vfat /dev/nvme0n1p2 /mnt/boot/efi&lt;br /&gt;
&lt;br /&gt;
and create the necessary directories in EFI  &lt;br /&gt;
cd /mnt/boot/efi/EFI  &lt;br /&gt;
mkdir -p boot # attention must be lowercase not Boot #&lt;br /&gt;
mkdir -p alpine&lt;br /&gt;
&lt;br /&gt;
Mount /home partition  &lt;br /&gt;
mkdir -p /mnt/home  &lt;br /&gt;
mount -t ext4 /dev/sda4 /mnt/home&lt;br /&gt;
&lt;br /&gt;
Install in /mnt partition  &lt;br /&gt;
setup-disk -m sys /mnt&lt;br /&gt;
&lt;br /&gt;
reboot&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21960</id>
		<title>Talk:Configure a Wireguard interface (wg)</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21960"/>
		<updated>2022-06-11T10:47:22Z</updated>

		<summary type="html">&lt;p&gt;Konki: /* Bringing up an interface using ifupdown-ng */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bringing up an interface using wg-tools ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Then load the module&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 modprobe wireguard&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Add it to &amp;lt;code&amp;gt;/etc/modules&amp;lt;/code&amp;gt; to automatically load it on boot.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This does not seem to be necessary (any more)?&lt;br /&gt;
&lt;br /&gt;
[[User:Anianz|Anianz]] ([[User talk:Anianz|talk]])&lt;br /&gt;
&lt;br /&gt;
== Bringing up an interface using ifupdown-ng ==&lt;br /&gt;
&lt;br /&gt;
The netifrc package is perfect for mounting the wg0 interface at boot in the specific case of using the plain wg command ( https://wiki.gentoo.org/wiki/Wireguard#netifrc ), but only available for the edge branch.&lt;br /&gt;
&lt;br /&gt;
What is the right approach for loading the configuration file and mount the wg0 network interface, at startup in the stable branch?&lt;br /&gt;
&lt;br /&gt;
Konki&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21959</id>
		<title>Talk:Configure a Wireguard interface (wg)</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21959"/>
		<updated>2022-06-11T10:41:46Z</updated>

		<summary type="html">&lt;p&gt;Konki: /* Bringing up an interface using ifupdown-ng */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bringing up an interface using wg-tools ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Then load the module&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 modprobe wireguard&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Add it to &amp;lt;code&amp;gt;/etc/modules&amp;lt;/code&amp;gt; to automatically load it on boot.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This does not seem to be necessary (any more)?&lt;br /&gt;
&lt;br /&gt;
[[User:Anianz|Anianz]] ([[User talk:Anianz|talk]])&lt;br /&gt;
&lt;br /&gt;
== Bringing up an interface using ifupdown-ng ==&lt;br /&gt;
&lt;br /&gt;
The netifrc package is perfect for mounting the wg0 interface at boot in the specific case of using the plain wg command ( https://wiki.gentoo.org/wiki/Wireguard#netifrc ), but only available for the edge branch.&lt;br /&gt;
&lt;br /&gt;
What is the right approach for loading the configuration and mount the wg0 network interface, at startup in the stable branch?&lt;br /&gt;
&lt;br /&gt;
Konki&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21958</id>
		<title>Talk:Configure a Wireguard interface (wg)</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21958"/>
		<updated>2022-06-11T10:40:44Z</updated>

		<summary type="html">&lt;p&gt;Konki: /* Bringing up an interface using ifupdown-ng */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bringing up an interface using wg-tools ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Then load the module&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 modprobe wireguard&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Add it to &amp;lt;code&amp;gt;/etc/modules&amp;lt;/code&amp;gt; to automatically load it on boot.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This does not seem to be necessary (any more)?&lt;br /&gt;
&lt;br /&gt;
[[User:Anianz|Anianz]] ([[User talk:Anianz|talk]])&lt;br /&gt;
&lt;br /&gt;
== Bringing up an interface using ifupdown-ng ==&lt;br /&gt;
&lt;br /&gt;
The netifrc package is perfect for mounting the wg0 interface at boot in the specific case of using the plain wg command ( https://wiki.gentoo.org/wiki/Wireguard#netifrc ), but only available for the edge branch.&lt;br /&gt;
&lt;br /&gt;
What is the right approach for loading the configuration and mount the wg0 network interface, at startup in the stable branch?&lt;br /&gt;
&lt;br /&gt;
[[User:Konki|Konki]] ([[User talk:Konki|talk]])&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21957</id>
		<title>Talk:Configure a Wireguard interface (wg)</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=Talk:Configure_a_Wireguard_interface_(wg)&amp;diff=21957"/>
		<updated>2022-06-11T10:39:31Z</updated>

		<summary type="html">&lt;p&gt;Konki: /* Bringing up an interface using ifupdown-ng */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bringing up an interface using wg-tools ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Then load the module&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 modprobe wireguard&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Add it to &amp;lt;code&amp;gt;/etc/modules&amp;lt;/code&amp;gt; to automatically load it on boot.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
This does not seem to be necessary (any more)?&lt;br /&gt;
&lt;br /&gt;
[[User:Anianz|Anianz]] ([[User talk:Anianz|talk]])&lt;br /&gt;
&lt;br /&gt;
== Bringing up an interface using ifupdown-ng ==&lt;br /&gt;
&lt;br /&gt;
The netifrc package is perfect for mounting the wg0 interface at boot in the specific case of using the plain wg command ( https://wiki.gentoo.org/wiki/Wireguard#netifrc ), but only available for the edge branch.&lt;br /&gt;
&lt;br /&gt;
What is the right approach for loading the configuration and mount the wg0 network interface, at startup in the stable branch?&lt;/div&gt;</summary>
		<author><name>Konki</name></author>
	</entry>
</feed>