Difference between revisions of "Arch User Repository"
Views
Actions
Namespaces
Variants
Tools
major rewrite to clarify Pamac activation of AUR and using only pamac as AUR helper
imported>Cubanpit m (→Upgrading the packages installed from the AUR: avoid partial updates) |
imported>Fhdk (major rewrite to clarify Pamac activation of AUR and using only pamac as AUR helper) |
||
Line 1: | Line 1: | ||
= Overview = | = Overview = | ||
{{warning|Use the AUR at your own risk! | {{warning|'''Use the AUR at your own risk!''' | ||
'''No support''' will be provided by the Manjaro team for any issues that may arise relating to software installations from the AUR. | |||
With that | With Manjaro updates, AUR packages might stop working. This is not a Manjaro issue.}} | ||
Although Manjaro is very close to Arch Linux and mostly compatible —being based on Arch Linux itself— it is not possible to access their official repositories for use in Manjaro. | |||
Instead, Manjaro uses its own repositories in order to ensure that any software packages that are accessible, such as system updates and applications, have been fully tested to be compatible and stable before release. | |||
It is still possible to access additional software packages from the ''[https://wiki.archlinux.org/index.php/AUR Arch User Repository]'' (AUR). | |||
The AUR is managed by the Arch Linux user community itself. Although this repository is unofficial, software packages first placed here can eventually make their way into Arch Linux's official (community) repository if they become popular enough. | |||
'''AUR, as a community maintained repository, present potential risks and problems.''' | |||
Possible risks using AUR packages: | |||
* Multiple versions of the same packages. | * Multiple versions of the same packages. | ||
Line 11: | Line 23: | ||
* Broken or only partially working packages. | * Broken or only partially working packages. | ||
* Improperly configured packages which download unnecessary dependencies, or do not download necessary dependencies, or both. | * Improperly configured packages which download unnecessary dependencies, or do not download necessary dependencies, or both. | ||
* Malicious packages (although extremely rare) . | * Malicious packages (although extremely rare). | ||
As such, although much of the software packages provided by the AUR should work, do not expect the installation process to always be quite as straight-forward as when you are using the official Manjaro repositories. | |||
On occasion, it may be necessary to manually identify and install dependencies yourself (such as, after an aborted installation attempt). | |||
'''Again, there is no guarantee that any installed software will work properly, if at all.''' | |||
= Accessing the AUR = | |||
''' | 1. Pamac GUI: graphical application '''Add/Remove Software''' application named '''Pamac'''. | ||
2. Pamac CLI: command line tool '''pamac build aur-pkg-name'''. | |||
(<u>Note for Octopi users</u>: Octopi can only use ''trizen'' or ''yaourt'' to access the AUR.) | (<u>Note for Octopi users</u>: Octopi can only use ''trizen'' or ''yaourt'' to access the AUR.) | ||
== Using GUI [[Pamac]] == | |||
Open Pamac - the name in menu is ''Add/Remove Software'' and navigate to the Preferences page. You will be required to enter your password to access it. | |||
At Preferences page → seleetc the AUR tab → and move the slider to enable AUR. | |||
'''To access AUR from [[Octopi]]'': | |||
You need to turn it on in Tools → Options → AUR. Then [[Octopi]] will include the green alien head. Click on it, enter your search term, and hit enter to search the AUR. | |||
== Using commandline [[Pamac]] == | |||
{{tip|It is '''strongly''' recommended to first visit the [http://aur.archlinux.org/ AUR website] and examine the relevant page(s) for any and all software intended to be installed. | |||
These pages contain comments from both existing users and package developers, which may provide valuable information (such as, warnings and/or solutions to problems). | |||
The AUR website can be found '''[http://aur.archlinux.org/ here]'''}} | |||
Yay must be used in the terminal and is itself very similar to pacman to use; furthermore, as with pacman, it is not necessary to specify precise or complete package names in order to search for or download software. To search for and install software packages from the AUR, the syntax is: | Yay must be used in the terminal and is itself very similar to pacman to use; furthermore, as with pacman, it is not necessary to specify precise or complete package names in order to search for or download software. To search for and install software packages from the AUR, the syntax is: | ||
pamac search -a [software package name] | |||
For example, if wishing | For example, if wishing to install ''Visual Studio Code'' AUR version (a popular source code editor) enter ''visual studio'' as the query and a list of potential matches is shown. To build the example with '''pamac''' enter the following and press enter | ||
pamac build visual-studio-code-bin | |||
You will be presented with the outcome of the chosen build with all dependencies and you will be asked a couple of questions. | |||
1. Query to edit build files. This is a precaution to verify that the build scripts does not contain malicious actions. | |||
2. Query to continue download and install dependencies then download the sources, build and install the app. | |||
You will be asked for your password before anything happens. | |||
<br clear="all" /> | <br clear="all" /> | ||
= Installing from the AUR by hand = | = Installing from the AUR by hand = | ||
== | == Manual == | ||
To do that follow the steps given below: | To do that follow the steps given below: | ||
* Be sure you have the necessary files for building applications from source | |||
pamac install base-devel git | |||
* Download the tarball from the AUR preferably to ''~/Downloads'' | * Download the tarball from the AUR preferably to ''~/Downloads'' | ||
(just click on the tarball from your browser and you should get it) | (just click on the tarball from your browser and you should get it) | ||
* Make a sub-directory in downloads called builds: | * Make a sub-directory in downloads called builds: | ||
mkdir ~/Downloads/builds | mkdir ~/Downloads/builds | ||
-- Move the tarball to builds (foo is the name of the package you've downloaded): | -- Move the tarball to builds (Note that foo is a placeholder for the actual name of the package you've downloaded): | ||
mv foo.tar.gz builds | mv foo.tar.gz builds | ||
Line 107: | Line 113: | ||
sudo pacman -U foo.pkg.xz | sudo pacman -U foo.pkg.xz | ||
And you've done it...the safest way to install from the AUR. | And you've done it...the safest way to install from the AUR. | ||
This is essentially what most install scripts do for you. | This is essentially what most install scripts do for you. | ||
Line 114: | Line 119: | ||
makepkg -i | makepkg -i | ||
''Note:'' To combine above steps into one: | |||
makepkg -is | |||
You can ask for support for installing by hand at the following link-[http://forum.manjaro.org/index.php?topic=7076.msg61520#msg61520] | You can ask for support for installing by hand at the following link-[http://forum.manjaro.org/index.php?topic=7076.msg61520#msg61520] | ||
Line 121: | Line 129: | ||
= Upgrading the packages installed from the AUR = | = Upgrading the packages installed from the AUR = | ||
The following command will upgrade '''all''' packages | The following command will upgrade '''all''' packages on the system including AUR builds | ||
pamac upgrade -a | |||
=See Also= | = See Also = | ||