mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
63 lines
1.6 KiB
Plaintext
63 lines
1.6 KiB
Plaintext
---
|
|
title: Linux Releases
|
|
description: Where to download Linux releases of LunaSea
|
|
---
|
|
|
|
# Linux Releases
|
|
|
|
> If you want a stable experience, stick with stable releases. Want to test new builds of LunaSea? Read about the [build channels](/getting-started/build-channels) to make the right choice!
|
|
|
|
LunaSea is available on all graphical Linux distributions that have `snap` installed and configured.
|
|
|
|
## Snapcraft
|
|
|
|
_Channel(s): `Stable`, `Candidate`, `Beta`, `Edge`_
|
|
|
|
The easiest way for most users on graphic Linux distributions would be to download releases of LunaSea directly from [Snapcraft](https://www.lunasea.app/snapcraft)!
|
|
|
|
<Tabs
|
|
groupId="channel"
|
|
defaultValue="stable"
|
|
values={[
|
|
{ label: "Stable", value: "stable" },
|
|
{ label: "Candidate", value: "candidate" },
|
|
{ label: "Beta", value: "beta" },
|
|
{ label: "Edge", value: "edge" },
|
|
]}
|
|
>
|
|
<TabItem value="stable">
|
|
```bash
|
|
sudo snap install lunasea
|
|
```
|
|
</TabItem>
|
|
<TabItem value="candidate">
|
|
```bash
|
|
sudo snap install lunasea --candidate
|
|
```
|
|
</TabItem>
|
|
<TabItem value="beta">
|
|
```bash
|
|
sudo snap install lunasea --beta
|
|
```
|
|
</TabItem>
|
|
<TabItem value="edge">
|
|
```bash
|
|
sudo snap install lunasea --edge
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
## Build Bucket
|
|
|
|
_Channel(s): `Stable`, `Candidate`, `Beta`, `Edge`_<br/>
|
|
_Format(s): `.snap`_
|
|
|
|
All Linux releases are available in the [Build Bucket](https://builds.lunasea.app/#latest/)!
|
|
|
|
## GitHub Releases
|
|
|
|
_Channel(s): `Stable`_<br/>
|
|
_Format(s): `.snap`_
|
|
|
|
All stable releases are available on GitHub via the [Releases](https://github.com/JagandeepBrar/LunaSea/releases) page!
|