- Make an install directory somewhere convenient and switch to it
mkdir -p ~/.local/share/authy
cd ~/.local/share/authy
- Fetch the current Authy snap
/** | |
* A utility type around `string` that allows for autocomplete on the string on a specific set of values, yet accepting any string. | |
* | |
* @see https://twitter.com/diegohaz/status/1524257274012876801 | |
*/ | |
export type StringWithAutocomplete<S extends string> = | |
| S | |
| (string & Record<never, never>); |
From 0ec02378bcc0d35d713fd93ba42c3848bc8b1077 Mon Sep 17 00:00:00 2001 | |
From: Joan Bruguera <[email protected]> | |
Date: Sat, 12 Mar 2022 08:37:32 +0100 | |
Subject: [PATCH 1/2] Buildfix NVIDIA 470.103.01 for Linux 5.18-rc1 (part 1) | |
--- | |
common/inc/nv-linux.h | 7 +++++++ | |
nvidia-drm/nvidia-drm-drv.c | 4 ++++ | |
nvidia-drm/nvidia-drm-gem.c | 6 ++++++ | |
3 files changed, 17 insertions(+) |
mkdir -p ~/.local/share/authy
cd ~/.local/share/authy
#!/bin/bash | |
# Bash script to install SiS Mirage 3+ graphics drivers on Linux | |
# Supports 671/672MX graphics cards | |
# | |
# Created in March 2019 | |
# | |
# Tested on: | |
# - Lubuntu 18.04 (32-bit) with X.Org v1.19 | |
# - Xubuntu 18.04 (64-bit) with X.Org v1.20 |
If your running a x64 bit Ubuntu or other Linux and find USB transfers hang at the end apply this fix:
echo $((16*1024*1024)) > /proc/sys/vm/dirty_background_bytes
echo $((48*1024*1024)) > /proc/sys/vm/dirty_bytes
I suggest you edit your /etc/rc.local
file to make this change persistant across reboots.
sudo nano /etc/rc.local