-
-
Notifications
You must be signed in to change notification settings - Fork 344
Installing CKAN on Arch
HebaruSan edited this page May 24, 2021
·
28 revisions
CKAN is available in the AUR: https://aur.archlinux.org/packages/ckan/
- Make sure your system is up to date:
sudo pacman -Syu
- Install Mono:
sudo pacman -S mono
- Arch's msbuild is currently broken (May 2021), so you should download and run the prebuilt ckan.exe file from the CKAN release page. However, if you really want to build CKAN the Arch way, keep reading for tips on how to repair your msbuild.
- Install msbuild and copy
System.Reflection.Metadata.dll
from an OS that works, like Ubuntu (Arch's copy is too old for msbuild):sudo pacman -S msbuild cd /usr/lib/mono/4.5 sudo mv System.Reflection.Metadata.dll System.Reflection.Metadata.dll_OUTDATED_ARCH sudo cp /path/to/up/to/date/System.Reflection.Metadata.dll .
- If you haven't already, install
base-devel
andgit
so you can access packages in the Arch User Repository:sudo pacman -S --needed base-devel git
- Get the CKAN AUR package and build it:
mkdir -p ~/builds cd ~/builds git clone https://aur.archlinux.org/ckan.git cd ckan makepkg
- Install the package you built:
sudo pacman -U ckan*.zst
This will add CKAN to your system application menus, so you can run it from there.
If you download the ckan.exe
file from our release page, run it with:
mono ckan.exe
Accompanied by Mono.Unix.UnixIOException: Resource temporarily unavailable
(visible when running ckan in terminal).
This is due to safe limits of open file desriptors (default 1024) per user being too low for ckan to download concurently. Can be temporary fixed by:
ulimit -s 32768
ulimit -n 10240
And then running ckan in the same terminal session.
You can also permanently change the limits according to https://wiki.archlinux.org/index.php/Limits.conf
Contact us on the KSP forum or on our Discord server