Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiss-community/grepo
GKISS - A fork of KISS Linux that uses the GNU C library, mirror of https://codeberg.org/kiss-community/grepo
https://github.com/kiss-community/grepo
kiss-repo linux linux-distribution linux-distro nvidia repository wayland
Last synced: 29 days ago
JSON representation
GKISS - A fork of KISS Linux that uses the GNU C library, mirror of https://codeberg.org/kiss-community/grepo
- Host: GitHub
- URL: https://github.com/kiss-community/grepo
- Owner: kiss-community
- License: mit
- Created: 2020-07-10T20:02:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T17:36:35.000Z (7 months ago)
- Last Synced: 2024-04-14T08:03:46.135Z (7 months ago)
- Topics: kiss-repo, linux, linux-distribution, linux-distro, nvidia, repository, wayland
- Language: Roff
- Homepage:
- Size: 2.53 MB
- Stars: 52
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-kiss - GKISS - A KISS fork which uses the GNU C library. (Spins)
README
# GKISS Linux 🐂
![Downloads](https://img.shields.io/github/downloads/gkisslinux/grepo/total.svg)
## Installation
Follow the steps mentioned on the [KISS Linux](https://kisslinux.org/install) website, making a few changes:
* Download the latest GKISS tarball from https://github.com/gkisslinux/grepo/releases instead of the KISS tarball.
* The `KISS_PATH` should be set as follows - with `grepo` instead of `repo`:
```sh
REPODIR="$HOME/Repos" # Example, set this accordinglyexport KISS_PATH=""
KISS_PATH="$KISS_PATH:$REPODIR/grepo/core"
KISS_PATH="$KISS_PATH:$REPODIR/grepo/extra"
KISS_PATH="$KISS_PATH:$REPODIR/grepo/wayland"
KISS_PATH="$KISS_PATH:$REPODIR/community/community"
```* In order to rebuild `glibc`, the KISS [Community repository](https://github.com/kiss-community/repo-community) needs to be enabled.
* Generate locales by running `locale-gen` as root after modifying the `/etc/locale.gen` file with the appropriate locales separated by newlines (`en_US.UTF-8 UTF-8` for most users) and add `export LANG=en_US.UTF-8` to `/etc/profile`.
## NVIDIA
**TIP:** `mesa` can be built without `llvm` on NVIDIA systems, look [here](https://codeberg.org/git-bruh/kiss-repo/src/branch/master/overrides/mesa/build) for an example.
* Install the nvidia drivers by building the `nvidia` package.
* For kernel configuration, refer to the [Gentoo Wiki](https://wiki.gentoo.org/wiki/NVIDIA/nvidia-drivers#Kernel_compatibility). The `nouveau` kernel module must either be blacklisted from being loaded or disabled in the kernel configuration.
* The kernel modules can also be built for a specific kernel by exporting the `KERNEL_UNAME` variable:
```sh
export KERNEL_UNAME=5.10.2 # Example
kiss b nvidia
# Environment variables can't be used in `post-install`.
depmod "$KERNEL_UNAME"
```* For Wayland compositors to work properly, the NVIDIA kernel module _MUST_ be loaded with the GSP firmware (To avoid flickering) and the `modeset` parameter enabled:
```sh
# tee /etc/rc.d/nvidia.boot <