Skip to content

Instantly share code, notes, and snippets.

View carlosal1015's full-sized avatar
πŸ‡΅πŸ‡ͺ
Studying mathematics

Oromion carlosal1015

πŸ‡΅πŸ‡ͺ
Studying mathematics
View GitHub Profile

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

@carlosal1015
carlosal1015 / fix-intel_wifi_aer-avell_g1513_fire_v3
Created September 15, 2019 03:50 — forked from flisboac/ fix-intel_wifi_aer-avell_g1513_fire_v3
Temporary fix for AER's excessive `severity=Corrected` logging for Intel Wireless (Avell G1513 Fire V3) (Arch Linux)
silly gist hack, why do we need you? :(

Problem

In Arch Linux mkinitcpio -p linux

shows

Possibly missing firmware for module: aic94xx
 Possibly missing firmware for module: wd719x
#!/usr/bin/env bash
curl -so ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
chmod +x ~/miniconda.sh
sudo ~/miniconda.sh -b -p /opt/conda
sudo rm -rf ~/miniconda.sh
sudo chown -R $(whoami):users /opt/conda
sudo chmod -R 775 /opt/conda
sudo ln -sf /opt/conda/bin/conda /usr/local/bin
sudo ln -sf /opt/conda/bin/activate /usr/local/bin
sudo ln -sf /opt/conda/bin/deactivate /usr/local/bin