https://github.com/sthysel/archlinux-arm-cockpit
Installing cockpit on a Raspberry Pi running Arch
https://github.com/sthysel/archlinux-arm-cockpit
arch arm aur cockpit pcp raspberry-pi
Last synced: 9 months ago
JSON representation
Installing cockpit on a Raspberry Pi running Arch
- Host: GitHub
- URL: https://github.com/sthysel/archlinux-arm-cockpit
- Owner: sthysel
- Created: 2018-02-26T10:08:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-24T02:34:00.000Z (over 6 years ago)
- Last Synced: 2025-09-22T09:58:18.477Z (9 months ago)
- Topics: arch, arm, aur, cockpit, pcp, raspberry-pi
- Size: 118 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installing and running cockpit on Arch linux for arm on a raspberry Pi

In short:
* Get and install pcp from aur.
* Get and install cockpit from aur.
## Prep
Both pcp and cockpit will be built from source so install the necessary tools
``` bash
$ sudo pacman -S base-devel git neovim
```
## pcp
``` bash
$ git clone https://aur.archlinux.org/pcp.git
```
Trim out failed dependencies from PKGBUILD that does not seem to matter:
``` bash
makedepends=(git intltool gtk-doc gobject-introspection networkmanager libgsystem xmlto npm tar)
```
``` bash
# makepkg -sir
```
This takes a afternoon to compile on an old raspberry pi
## cockpit
clone cockpit from aur and build. It builds without issue.
``` bash
# systemctl enable cockpit.socket
# systemctl start cockpit.socket
```