Arch Linux: Difference between revisions

From iFixWiki
(Created page with "Arch linux is a great operating system. Using it grants you the privilege of saying "I use Arch, btw". = Issues = == Wine makepkg FAILED (unknown public key CEFAC8EAAF17519D)...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:


= Issues =
= Issues =
= Signature from "David Runge <dvzrv@archlinux.org>" is marginal trust =
When attempting to update the system, there may be a prompt to add/update a signature. This can fail which results in the following errors:
  error: zsh-completions: signature from "David Runge <dvzrv@archlinux.org>" is marginal trust
  error: failed to commit transaction (invalid or corrupted package (PGP signature))
  Errors occurred, no packages were upgraded.
'''Solution'''
Update the keyring prior to updating the system.<ref>https://bbs.archlinux.org/viewtopic.php?pid=2047590#p2047590</ref>
  $ sudo pacman -Sy archlinux-keyring
== Wine makepkg FAILED (unknown public key CEFAC8EAAF17519D) ==
== Wine makepkg FAILED (unknown public key CEFAC8EAAF17519D) ==
'''Solution'''
'''Solution'''
Line 8: Line 21:


   $ gpg --receive-keys CEFAC8EAAF17519D
   $ gpg --receive-keys CEFAC8EAAF17519D
== VirtualBox modprobe vboxdrv error ==
After installing VirtualBox, trying to start a virtual machine results in an error that requires the kernel module to be loaded. But trying to load it with:
  $ modprobe vboxdrv
Results in the following error:
  modprobe: ERROR: could not insert 'vboxdrv': Operation not permitted
'''Solution'''
Run the command as sudo.
  $ sudo modprobe vboxdrv
= References =
[[Category:Operating Systems]]

Latest revision as of 09:05, 25 January 2023

Arch linux is a great operating system. Using it grants you the privilege of saying "I use Arch, btw".

Issues[edit]

Signature from "David Runge <dvzrv@archlinux.org>" is marginal trust[edit]

When attempting to update the system, there may be a prompt to add/update a signature. This can fail which results in the following errors:

  error: zsh-completions: signature from "David Runge <dvzrv@archlinux.org>" is marginal trust
  error: failed to commit transaction (invalid or corrupted package (PGP signature))
  Errors occurred, no packages were upgraded.

Solution

Update the keyring prior to updating the system.[1]

  $ sudo pacman -Sy archlinux-keyring

Wine makepkg FAILED (unknown public key CEFAC8EAAF17519D)[edit]

Solution

You need to import the public key for it to work.

  $ gpg --receive-keys CEFAC8EAAF17519D

VirtualBox modprobe vboxdrv error[edit]

After installing VirtualBox, trying to start a virtual machine results in an error that requires the kernel module to be loaded. But trying to load it with:

  $ modprobe vboxdrv

Results in the following error:

  modprobe: ERROR: could not insert 'vboxdrv': Operation not permitted

Solution

Run the command as sudo.

  $ sudo modprobe vboxdrv

References[edit]