Skip to content

Instantly share code, notes, and snippets.

@keilmillerjr
keilmillerjr / convert_manjaro_to_arch_linux.md
Last active January 26, 2024 20:12
Convert Manjaro to Arch Linux

Convert Manjaro to Arch Linux

Conversion Script

  1. Download, make, and run script.
$ git clone https://github.com/kskeigrshi/manjaro-to-archlinux.sh
$ cd manjaro-to-archlinux.sh
$ makepkg
$ ./to_arch
@keilmillerjr
keilmillerjr / ruby_on_rails_asdf.md
Last active June 5, 2021 22:03
Ruby on Rails using asdf (linux & mac)

Ruby on Rails using asdf (linux & mac)

asdf

asdf allows you to manage multiple runtime versions with a single CLI tool. It's an alternative to rvm or rbenv, but isn't limited to just ruby.

Install

The following only holds true at the time of writing this. Follow directions located on the asdf wiki.

@keilmillerjr
keilmillerjr / clone_root_disk.md
Last active February 19, 2024 14:34
Cloning a Root Disk (Linux)

Cloning a Root Disk (Linux)

Preface

You need to create a bootable live disk to clone your disk. You can not copy a partition that is mounted. If you do not have internet access, use gparted. Otherwise, it might be better to use your operating systems live installer, such as Manjaro. We can download gparted and still have things like a web browser incase we get stuck. We will be using the Manjaro live disk for this guide.

Create a bootable live disk

  1. Download Manjaro.
  2. Insert USB disk.
@keilmillerjr
keilmillerjr / DSLR_webcam_arch_linux.md
Last active February 19, 2024 07:51
Using DSLR as a webcam on Arch/Manjaro Linux
@keilmillerjr
keilmillerjr / Create_Remote_UniFi_SDN_Controller.md
Last active October 21, 2020 08:20
Create Remote UniFi SDN Controller

Create Remote UniFi SDN Controller

Create A New Linode

Directions are loose. Follow on screen directions appropriately.

  1. https://cloud.linode.com/linodes > Add a Linode
  2. Choose a Distribution > Images > Debian 10
  3. Generate an SSH Key if not present
  4. $ ssh-keygen
@keilmillerjr
keilmillerjr / ssh_keys.md
Created October 20, 2020 20:29
SSH Keys

SSH Keys

SSH Keys

Generate Key

$ ssh-keygen
--------------------
Your identification has been saved in /home/keiljr/.ssh/id_rsa
@keilmillerjr
keilmillerjr / Bash.md
Last active October 10, 2020 07:30
Bash

Bash

Exit Status

$ echo $?
Status Description
@keilmillerjr
keilmillerjr / Automount Disks and Symbolic Links.md
Created September 27, 2020 03:51
Automount Disks and Symbolic Links
@keilmillerjr
keilmillerjr / Linux Versions.md
Last active February 16, 2023 13:20
Linux System Information

Linux System Information

System Information

inxi

inxi is a command line system information tool. Personally identifiable information like serial numbers and MAC addresses will be filtered out by the folowing command. This command is most helpful.

$ inxi --admin --verbosity=7 --filter --no-host
@keilmillerjr
keilmillerjr / Creating an AUR Package.md
Last active April 23, 2024 22:36
How to create and manage an AUR package. #AUR #ARCH #makepkg #PKGBUILD