Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add linux install instructions for smrs #30

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 55 additions & 7 deletions docs/video/smoothie/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,61 @@ icon: material/folder-download

=== "Linux"

todo, cargo should be able to compile it

for arch nerds see the dependencies of <https://aur.archlinux.org/packages/teres>

* you'll also need <https://aur.archlinux.org/packages/vapoursynth-plugin-vsakarin-git> for frame blending
* and <https://aur.archlinux.org/packages/vapoursynth-plugin-rife-ncnn-vulkan-git> for pre-interp

!!! note "NOT UPSTREAM"

This is not the upstream repo at [couleur-tweak-tips/smoothie-rs](https://github.com/couleur-tweak-tips/smoothie-rs), this is a fork of smoothie that is maintained
by hybridkernel at
[hzqki/smoothie-rs](https://github.com/hzqki/smoothie-rs) all bug reports about linux should go to this repo, and not the upstream.

**Archlinux**

You can install smoothie-rs on Archlinux by either adding the [smrs-arch-repo](https://gitlab.com/hzqki/smrs-arch-repo) or installing it via the AUR

Repo (Recommended):

1. Add `smrs-arch-repo` to your `/etc/pacman.conf`

```toml
[smrs-arch-repo]
SigLevel = Optional DatabaseOptional
Server = https://gitlab.com/hzqki/$repo/-/raw/main/$arch
```

2. Install `smoothie-rs-linux-git` through pacman

```bash
pacman -S smoothie-rs-linux-git
```

AUR

1. Install `smoothie-rs-linux-git` from the AUR

```bash
yay -S smoothie-rs-linux-git
```

**Other Distros**

1. Install [Distrobox](https://distrobox.it/)

2. Install Archlinux inside distrobox:

```bash
distrobox-create -i archlinux:latest -n smrs
```
```bash
distrobox-enter smrs
```
Update keyring and packages :D

```bash
sudo pacman-key --init
sudo pacman -Sy archlinux-keyring
sudo pacman -Syu
```
Then just follow the Archlinux installation instructions

<!--
it'd be cool to be able to opt-in to use invidious instance for vids

Expand Down