This didn’t tell me anything I didn’t know, but I was pleased to read it: Unix command line conventions over time.
On the other end of the spectrum: UX patterns for CLI tools.
This didn’t tell me anything I didn’t know, but I was pleased to read it: Unix command line conventions over time.
On the other end of the spectrum: UX patterns for CLI tools.
$ watch 'grep MHz /proc/cpuinfo | awk "{ print \$4 }" | sort -n'
If you want to get a simple report on your linux system’s specifications, try these:
This via r/programming today: Distributed Systems Shibboleths.
I have a degraded ZFS array due to too many write errors on one of my disks. When my replacement disk arrives I will follow these instructions to resolve the issue: Replace a faulty disk on a Mirrored or RAIDZ virtual device.
The ZFS verification process is called a ‘scrub’ and it is done periodically (usually every few weeks). To report on the status of a scrub in progress use the `zfs scrub` command.
Today I found myself referring to: File types In Linux/Unix explained in detail. Basically:
Also apparently there is a thing called a Door File on Solaris, but, alas, we’re not caring about that.
Note to self: I’ve disabled my second NIC enp7s0 for now, I can enable it when its cable arrives.
-------------------
Mon Mar 28 16:34:31 [bash:5.0.17 jobs:0 error:0 time:1505]
root@trick:/home/jj5
# cat /etc/netplan/00-installer-config.yaml
# This is the network config written by 'subiquity'
network:
ethernets:
enp10s0:
addresses:
- 10.3.2.5/16
gateway4: 10.3.1.1
nameservers:
addresses:
- 10.1.1.113
search: []
#enp7s0:
# addresses:
# - 10.1.2.5/16
# nameservers:
# addresses: []
# search: []
version: 2
-------------------
Today I learned you can get the size of a block device with e.g.: sudo blockdev --getsize64 /dev/sda
Note to self:
------------------- Thu Mar 24 23:58:51 [bash:5.0.17 jobs:0 error:0 time:0] jj5@charm:/home/jj5 $ aplay -l **** List of PLAYBACK Hardware Devices **** card 1: Audio [USB Audio], device 0: USB Audio [USB Audio] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: Audio [USB Audio], device 1: USB Audio [USB Audio #1] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: Audio [USB Audio], device 2: USB Audio [USB Audio #2] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: Audio [USB Audio], device 3: USB Audio [USB Audio #3] Subdevices: 1/1 Subdevice #0: subdevice #0 card 2: HDMI [HDA ATI HDMI], device 3: HDMI 0 [HDMI 0] Subdevices: 1/1 Subdevice #0: subdevice #0 card 2: HDMI [HDA ATI HDMI], device 7: HDMI 1 [HDMI 1] Subdevices: 1/1 Subdevice #0: subdevice #0 card 2: HDMI [HDA ATI HDMI], device 8: HDMI 2 [HDMI 2] Subdevices: 1/1 Subdevice #0: subdevice #0 card 2: HDMI [HDA ATI HDMI], device 9: HDMI 3 [HDMI 3] Subdevices: 1/1 Subdevice #0: subdevice #0 card 2: HDMI [HDA ATI HDMI], device 10: HDMI 4 [HDMI 4] Subdevices: 1/1 Subdevice #0: subdevice #0 -------------------