< Notes...

“there really are no uninteresting things...”

Found 5 notes tagged as “unix”, as shown below. All notes in chronological order.

See all available tags...

ageing1 amazon4 apple54 appletv3 best12 birthdays8 claudine14 cryptography5 css4 design1 elders1 family5 finances1 fonts8 food12 friends31 games32 github2 google15 health10 help6 horsie31 html3 hugo20 hulu4 humans17 humour24 interesting6 japan29 kdramas8 lawn7 life2 llm30 manga9 martin3 me78 memes1 movies35 mum14 music3 netflix23 nyc8 paramount1 philosophy9 politics63 prime3 quotes1 random35 rants53 re5 science1 selfhost8 series43 social15 staticgen3 tech122 tesla5 themet4 thoughts43 travels3 tubes62 unix5 via34 videos7 weather15 woodblock4 work21 wwdc3 youtube6

03 Oct 2025 @ 14:44:20

Well, well, well. It is possible, after all, to create a /boot partition on software RAID10, and been able to boot from it just fine—something I tried many times, and couldn’t do. It turns out you need to flag each drive as a bootable disk, before carving out partitions, and creating the RAID10.

tech unix
14 Aug 2025 @ 07:53:27

This section from the NetBSD man page for the sleep command cannot be funnier, yet completely valid. I mean, quite useful if you have the time, right?

BUGS

     This sleep command cannot handle requests for durations much longer than
     about 250 billion years.  Any such attempt will result in an error, and
     immediate termination.  It is suggested that when there is a need for
     sleeps exceeding this period, the sleep command be executed in a loop,
     with each individual sleep invocation limited to 200 billion years
     approximately.
tech unix
17 Jul 2025 @ 15:29:23

Hashing known_hosts is a good idea, as it reduces the amount of information an attacker will collect, if/when (ha!) your machine gets compromised. Usually, a line on the known_hosts file looks like this:

less ~/.ssh/known_hosts
...
tilde.team ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID1zw6+VOW8L4Rr3swbUVju3GGcknaV/fyhSJwH7NLfu
...

After running ssh-keygen -H it will look like this:

less ~/.ssh/known_hosts
...
|1|c6NiIH06AidrkPUman0oPEx6+6Y=|rPhYjXlkLgYaNR8jwaNMy7mur4I= ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJsJP1XDyRhEPdtgBeXYm2hf4GKG9aLlqA1+ZPgBadbl
...

That’s it! Oh, and don’t forget to add to your ~/.ssh/config the following, so that future entries are hashed as well:

Host *
	HashKnownHosts yes
tech unix
09 Jul 2025 @ 17:42:28
grep -i passwd *.log | awk {'print $7'}
...
/etc/passwd
/..%5c..%5c..%5c..%5c..%5cetc%5cpasswd
/....//....//....//etc/passwd
/..%2f..%2f..%2fetc%2fpasswd
/.htpasswd
/config/.htpasswd
/.env.passwd
/backup/.htpasswd
...

With almost 2,000 different tries—of which the above is a small sample—it seems someone is hell-bent on finding a passwd of some sorts. I don’t have one, OK?!

tech unix
27 May 2025 @ 17:21:17

I miss terminal based applications. Old database driven applications that were usually accessed via VT100 terminals, and later on via IBM 3270, or emulated software, like TN3270, to access IBM mainframes. I wonder if they will ever make a return (no mainframes needed this time, of course).

Hmm, is this a sign of crossing—or having crossed—a certain age threshold?

tech unix