Skip to content

Instantly share code, notes, and snippets.

@SirToffski
SirToffski / ssh_keys.adoc
Last active January 13, 2023 15:54
Creating SSH Keys and Disabling Password Auth

Creating the keys

Generate the SSH Key

This will generate two keys:

  1. <key_name>_ed25519 - this is the private key and should be kept safe. Never put this key on the server itself.

  2. <key_name>_ed25519.pub - this is the public key, it will need to be added to the ~/.ssh/authorized_keys on the server.

Disclaimer
Mesa is a 3-D graphics library with an API which is very similar to
that of OpenGL*
To the extent that Mesa utilizes the OpenGL command syntax or state
machine, it is being used with authorization from Silicon Graphics,
Inc.(SGI). However, the author does not possess an OpenGL license
from SGI, and makes no claim that Mesa is in any way a compatible
replacement for OpenGL or associated with SGI. Those who want a
licensed implementation of OpenGL should contact a licensed
@SirToffski
SirToffski / slippi-arch-linux.md
Last active July 14, 2022 16:37
slippi-arch-linux.md
@SirToffski
SirToffski / fix_rtbth.md
Last active October 5, 2019 21:11
Fix rtbth Arch Linux
  1. blacklist the module to Prevent it from load on boot:
#echo "blacklist rtbth" > /etc/modprobe.d/ralink-bt.conf
  1. Local script, / usr / local / sbin / rtbth, to load and start rtbt tool:
#!/bin/bash
sleep 5
/sbin/modprobe --ignore-install rtbth; /usr/bin/mknod /dev/rtbth c 192 0; /usr/bin/rtbt &
@SirToffski
SirToffski / custom_archlinux_live_USB.md
Created October 2, 2019 19:00 — forked from satreix/custom_archlinux_live_USB.md
Custom Arch Linux live USB

Custom Arch Linux live USB

Setup

Install the dependencies for the archiso package:

(root): pacman -S make squashfs-tools libisoburn dosfstools patch lynx devtools git

I recommend archiso getting them from git, there is a package in the repositories, however, at this time of writing, it will not work with the instructions below. So, grab the most recent version from git and install it:

(user): git clone git://projects.archlinux.org/archiso.git && cd archiso