mirror of
https://onedev.site.tesses.net/crosslang/crosslang-website
synced 2026-02-08 09:05:47 +00:00
Add arch
This commit is contained in:
@@ -4,7 +4,8 @@ date = 2025-09-24T20:19:48-05:00
|
|||||||
+++
|
+++
|
||||||
|
|
||||||
# Package Managers
|
# Package Managers
|
||||||
- [Ubuntu](ubuntu.md)
|
- [Ubuntu/Debian (uses apt)](ubuntu.md)
|
||||||
|
- [Arch (uses pacman)](arch.md)
|
||||||
|
|
||||||
# Tarballs
|
# Tarballs
|
||||||
- [x86_64](https://files.site.tesses.net/CrossLang/latest/crosslang-linux-x86_64.tar.gz)
|
- [x86_64](https://files.site.tesses.net/CrossLang/latest/crosslang-linux-x86_64.tar.gz)
|
||||||
|
|||||||
34
content/downloads/linux/arch.md
Normal file
34
content/downloads/linux/arch.md
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
+++
|
||||||
|
title = 'Arch'
|
||||||
|
date = 2025-11-11T06:44:24-06:00
|
||||||
|
+++
|
||||||
|
|
||||||
|
We only support these architectures for the time being
|
||||||
|
|
||||||
|
- x86_64 (something Intel or AMD that is 64 bit, so Omarchy would work)
|
||||||
|
- powerpc (such as the Nintendo Wii running Wii-Linux Continuation Project or archpower for powerpc 32 bit big endian)
|
||||||
|
|
||||||
|
## Installing the repo
|
||||||
|
|
||||||
|
You need to add our repository key
|
||||||
|
```bash
|
||||||
|
wget -O repository.key wget https://git.tesseslanguage.com/api/packages/tesses50/arch/repository.key
|
||||||
|
sudo pacman-key --add repository.key
|
||||||
|
```
|
||||||
|
|
||||||
|
Add this to your /etc/pacman.conf
|
||||||
|
```
|
||||||
|
[tesses50.git.tesseslanguage.com]
|
||||||
|
SigLevel = Optional TrustAll
|
||||||
|
Server = https://git.tesseslanguage.com/api/packages/tesses50/arch/core/$arch
|
||||||
|
```
|
||||||
|
|
||||||
|
or run this command which will do the same thing
|
||||||
|
```bash
|
||||||
|
printf "[tesses50.git.tesseslanguage.com]\nSigLevel = Optional TrustAll\nServer = https://git.tesseslanguage.com/api/packages/tesses50/arch/core/\$arch\n" | sudo tee /etc/pacman.conf
|
||||||
|
```
|
||||||
|
|
||||||
|
## Install crosslang
|
||||||
|
```bash
|
||||||
|
sudo pacman -Sy crosslang
|
||||||
|
```
|
||||||
@@ -5,7 +5,7 @@ date = 2025-09-24T20:29:28-05:00
|
|||||||
|
|
||||||
This requires Ubuntu 22:04 or later.
|
This requires Ubuntu 22:04 or later.
|
||||||
|
|
||||||
## Install the repository (For Ubuntu jammy - oracular)
|
## Install the repository (For Ubuntu jammy - oracular) (or if distro uses mbedtls 2)
|
||||||
````bash
|
````bash
|
||||||
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
|
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
|
||||||
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian jammy main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
|
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian jammy main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
|
||||||
@@ -13,7 +13,8 @@ sudo apt update
|
|||||||
````
|
````
|
||||||
|
|
||||||
|
|
||||||
## Install the repository (For Ubuntu plucky or later)
|
## Install the repository (For Ubuntu plucky/Debian trixie or later) (or if distro uses mbedtls 3)
|
||||||
|
|
||||||
````bash
|
````bash
|
||||||
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
|
sudo curl https://git.tesseslanguage.com/api/packages/tesses50/debian/repository.key -o /etc/apt/keyrings/gitea-tesses50.asc
|
||||||
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian plucky main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
|
echo "deb [signed-by=/etc/apt/keyrings/gitea-tesses50.asc] https://git.tesseslanguage.com/api/packages/tesses50/debian plucky main" | sudo tee -a /etc/apt/sources.list.d/gitea.list
|
||||||
|
|||||||
Reference in New Issue
Block a user