01/17/2018
I managed to mess up my USB installation medium tonight… managed to turn it into a NTFS, read-only USB, so I couldn’t delete anything.
Since I just wanted to delete everything, I just wiped the drive using parted
, downloaded the iso, and copied it using dd
.
parted \dev\sdb
(parted) mklabel gpt
(parted) mkpart 0% 100%
Then format:
mkfs.ext4 /dev/sdb1
Then download an iso from one of the online repositories. Suppose we place it in ~/archlinux.iso
. The command to copy the image onto the USB is:
sudo dd bs=4M if=~/archlinux.iso of=/dev/sdb status=progress oflag=sync
That’s it!
08/22/2018
Toward the Light: Behind the Scenes
07/01/2018
Arch Linux: Chromebook C720 Webcam Microphone Disappeared
06/21/2018
SSH: How to Set Up a Simple Local Media Server
02/28/2018
Pacman: File Conflicts
01/17/2018
Making an Arch Linux USB Flash Install Medium
01/17/2018
Arch Linux: Post-Install Notes
01/15/2018
Binary Classification Metrics
01/14/2018
Probabilitistic Classification
01/09/2018
Classification and Perceptron
01/08/2018
Linear Regression: Bayesian Approach, Normal Conjugacy
01/08/2018
Nonlinearity: Basis Functions
01/04/2018
Linear Regression: A Probabilistic Approach
12/30/2017
Linear Regression: A Mathematical Approach
12/20/2017
2017 Reflections: A Year of Curating
12/19/2017
Introduction to Regression: K-Nearest Neighbors
12/18/2017
Welcome to my Miscellaneous Blog!
12/18/2017
A Definitive Arch Linux Install Guide for the Chromebook C720
10/01/2017
C4D: Volume Effector
09/18/2017
Algorithms: Maximum Sliding Window
09/10/2017
Introduction to Inference: Coins and Discrete Probability
09/05/2017
C4D: Unreliable Booles
08/30/2017
Welcome to my Tech Blog!
08/30/2017
Welcome to my Problem Solving Blog!
Previous: Arch Linux: Post-Install Notes | Next: Pacman: File Conflicts