-
show your IP Address, Linux CLI (RIP ifconfig 😢) (ref)
ip address
(kinda embarassing how simple this is.. hopefully just writing this will help me remember)
-
rotate the Linux CLI, if you have a monitor in portrait orientation (ref)
echo 1 | sudo tee /sys/class/graphics/fbcon/rotate
- 0 = normal, 1 = clockwise, 2 = upside down, 3 = counter-clockwise
- make it permanent
- in /etc/default/grub:
GRUB_CMDLINE_LINUX="fbcon=rotate:1"
sudo update-grub
- in /etc/default/grub:
-
executing vs sourcing shell scripts (ref)
source
command runs the script in your current shell instance,. <script>
is equivalent to source- when you execute a script, it runs in its own shell instance with its own vars etc
exec
command kills the current shell and replaces it with whatever script or command you supply
-
Check which shell you're using (ref)
- echo $0
- Note that $SHELL needs to be manually updated (at least on Mac) so
echo $SHELL
isn't reliable
-
Key based SSH auth for Mac etc (ref)
- From the Mac / client side
ssh-keygen
ssh-copy-id
- to skip the passphrase each time,
ssh-add
(see ref link above)
- From the Mac / client side
-
Boot from USB:
- Mac: press & hold Option key when you see the Apple
- Dell: F12 at logo (YMMV / WFM)
-
Get Debian, Ubuntu etc to install all the packages:
sudo apt-get --with-new-pkgs upgrade
(ref)- NOTE: no need to worry about updates that aren't installed due to phasing
-
Use multipass as non-root: (ref)
- (as root)
multipass set local.passphrase
- (as user)
multipass authenticate
- (as root)
-
Use /home for multipass storage instead of /root
- NOTE it has to be /home or a removable device b/c of snap confinement
- this guide works, follow the instructions exactly
- OR, instead of the cp commands at the end, you can also just reinsatll multipass, it will populate the storage dir
- ? might be easier to just symlink
data
andcache
dirs, something to try next time
-
Use git with GitHub: (ref)
ssh-keygen -t rsa -b 4096 -C "[email protected]"
- copy the correct line from
~/.ssh/id_rsa.pub
to https://github.com/settings/keys git remote set-url origin [email protected]:username/your-repository.git
- or if your repo is in an org:
git remote set-url origin [email protected]:organization/your-repo.git
- or if your repo is in an org:
ssh-add ~/.ssh/id_rsa
-
Encrypted volumes, the systemd way (ref)
- NOTE you don't need to be root to use the
udisksctl
command - mount
- NOTE you don't need to be root to use the
udisksctl unlock -b /dev/sdb5
udisksctl mount -b /dev/mapper/ubuntu--vg-root
- unmount
- If this is a volume group, you'll need to deactivate before locking it:
sudo lvchange -an ubuntu-vg
- If this is a volume group, you'll need to deactivate before locking it:
udisksctl unmount -b /dev/mapper/ubuntu--vg-root
udisksctl lock -b /dev/sdb5