Initially based on https://github.com/residentsummer/watoi
Migrate Whatsapp chats history from Android to iOS.
Media files and shared locations are not imported (got placeholders instead)
Messages from contacts that changed ids (phone numbers) are not linked
- Download the latest ISO from https://www.archlinux.org/download
sudo dd if=archlinux-2019.11.01-x86_64.iso of=/dev/sda bs=4M status=progress oflag=sync
- Boot the ISO
- IF and ONLY IF you have a 4k or some HiDPI screen and fonts are super super small
ls /usr/share/kbd/consolefonts
setfont latarcyrheb-sun32
ls /sys/firmware/efi/efivars
verifies we booted in UEFI
#!/bin/bash | |
# README You probablyl don't need this script anymore. Please read the comments below to catch up. | |
## Description | |
# Lenovo Carbon X1 Gen 7 - Audio and microphone fix - kernel 5.3+ required. | |
# The script has only been tested for Arch and OpenSuse, | |
# Original thread: https://forums.lenovo.com/t5/Ubuntu/Guide-X1-Carbon-7th-Generation-Ubuntu-compatability/td-p/4489823 | |
# Prereq: Install Linux 5.3 or newer |
# See: https://setuptools.readthedocs.io/en/latest/setuptools.html#metadata | |
[metadata] | |
name = example | |
provides = example | |
description = example package | |
url = https://github.com/example/example | |
download_url = https://github.com/example/example | |
author = Deborah Melltrozzo | |
author_email = [email protected] | |
maintainer = Deborah Melltrozzo |
# https://gist.github.com/althonos/6914b896789d3f2078d1e6237642c35c | |
[metadata] | |
name = {name} | |
version = file: {name}/_version.txt | |
author = Martin Larralde | |
author_email = [email protected] | |
url = https://github.com/althonos/{name} | |
description = {description} | |
long_description = file: README.md |
set imap_user="[email protected]" | |
set imap_pass=`/usr/bin/security find-generic-password -w -a '[email protected]' -s 'Gmail'` | |
set folder=imaps://imap.gmail.com/ | |
set spoolfile=+INBOX | |
set record="+[Gmail]/Sent Mail" | |
set postponed="+[Gmail]/Drafts" | |
# https://www.neomutt.org/guide/reference search sleep_time for additional info | |
set sleep_time=0 # be faster |
Tuning Intel Skylake and beyond for optimal performance and feature level support on Linux:
Note that on Skylake, Kabylake (and the now cancelled "Broxton") SKUs, functionality such as power saving, GPU scheduling and HDMI audio have been moved onto binary-only firmware, and as such, the GuC and the HuC blobs must be loaded at run-time to access this functionality.
Enabling GuC and HuC on Skylake and above requires a few extra parameters be passed to the kernel before boot.
Instructions provided for both Fedora and Ubuntu (including Debian):
Note that the firmware for these GPUs is often packaged by your distributor, and as such, you can confirm the firmware blob's availability by running:
#!/usr/bin/osascript | |
-- License: https://justinpawela.github.io/default-gist-license/ | |
(* | |
1) Disables signing in as Guest from the login screen. | |
2) Disables Guest access to file shares over AFP. | |
3) Disables Guest access to file shares over SMB. | |
Commands are chained together so that the user only needs to authorize once. | |
*) |