This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
linux:arch:arch_notes [2018/04/01 11:23] dave |
linux:arch:arch_notes [2019/09/01 12:58] (current) dave |
||
---|---|---|---|
Line 1: | Line 1: | ||
===== Arch Notes ===== | ===== Arch Notes ===== | ||
+ | |||
+ | ==== VirtualBox === | ||
+ | |||
+ | After installing the ''virtualbox'' package, you won't be able to run VMs until you: | ||
+ | |||
+ | <code> | ||
+ | sudo modprobe vboxdrv --force-vermagic | ||
+ | </code> | ||
+ | |||
+ | If you don't do this you'll get an error about needing to run ''/sbin/vboxconfig'' as root, but that program doesn't exist. | ||
+ | :/ | ||
+ | |||
+ | This solution was found [[https://forum.manjaro.org/t/vboxdrv-exec-format-error/39335|here]]. | ||
+ | |||
+ | You'll also want to install the ''virtualbox-guest-iso'' package if you're running windows as a guest. | ||
+ | |||
+ | ==== pacman === | ||
+ | |||
+ | * [[https://wiki.archlinux.org/index.php/Pacman/Rosetta|pacman commands and their dnf, apt, etc, quivalents.]] (highly useful!) | ||
==== pkgfile === | ==== pkgfile === | ||
- | Searches the repositories to find which package contains a particular file, use the [[https://wiki.archlinux.org/index.php/pkgfile:pkgfile]] command. This command isn't installed by default. It's in the ``pkgfile`` package. | + | Searches the repositories to find which package contains a particular file, use the [[https://wiki.archlinux.org/index.php/pkgfile:pkgfile]] command. This command isn't installed by default on Manjaro. It's in the ''pkgfile'' package. |
To install: <code> | To install: <code> | ||
Line 10: | Line 29: | ||
To find which package contains a command: <code> | To find which package contains a command: <code> | ||
- | pkgfile -v -b <file> | + | pkgfile -vb <file> |
</code> | </code> | ||
+ | Command line arguments | ||
+ | ^ Argument ^ Description ^ | ||
+ | | -v | Verbose | | ||
+ | | -b | Search for binaries | |