|
You are here |
javier.io | ||
| | | | |
sathyasays.com
|
|
| | | | | Opinions, thoughts and tutorials on Cloud, DevOps, Linux and Technology by Sathyajith Bhat. | |
| | | | |
myadventuresincoding.wordpress.com
|
|
| | | | | I work in Linux every day, however it is not often that I have to setup a new data drive. As a result I always need to look up the commands. So I decided to create this post just as a quick reference. Note: For this example I was using Rocky9 Linux. View the Existing... | |
| | | | |
willhaley.com
|
|
| | | | | Start with one drive. Create a spanned volume, volume group, and logical volume. pvcreate /dev/sdb vgcreate STORAGE1 /dev/sdb lvcreate -l +100%FREE STORAGE1 -n storage1 Add an additional disk (you could have done this in one step, but I want to illustrate adding a disk). pvcreate /dev/sdc vgextend STORAGE1 /dev/sdc lvextend -l +100%FREE /dev/STORAGE1/storage1 You can view the status of the physical and logical volumes. pvdisplay vgdisplay lvdisplay | |
| | | | |
neovintage.org
|
|
| | | Crystal isn't yet ready to run on a Mac M1. Sad, I know. In the meantime, I found these instructions from Max Fierke to be helpful. His post tries taking you through the whole process of cross-compiling Crystal to arm64 but I didn't want to have to manage a hand-rolled version. These are the commands that I used to get Crystal running using Rosetta: # installs the version of Homebrew that works with ARM $ /bin/bash -c "$(curl -fsSL https://raw. | ||