diff --git a/homepage/index.html b/homepage/index.html index 7ba1666..bffa52e 100644 --- a/homepage/index.html +++ b/homepage/index.html @@ -83,12 +83,10 @@ I'm vaccinated against COVID-19. Are you? #privacy, /thegame; knowledge: -cat(1), -cryptography, -linux, -NetBSD, -true(1), -X200T; +cat(1), +software, +true(1), +X200T; shilling: #stickers

diff --git a/homepage/knowledge/netbsd/index.html b/homepage/knowledge/netbsd/index.html deleted file mode 100644 index f4e5b4d..0000000 --- a/homepage/knowledge/netbsd/index.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - -knowledge/NetBSD - - -

~ Return to the rest of the site

- - - -

NetBSD

-

updated 2021-07-23

-
-

-From netbsd.org: NetBSD is a free, fast, secure, and highly portable Unix-like Open Source operating system. -Of course, I run NetBSD, and this page serves as documentation of weird error fixes and miscellaneous tutorials that I think can be helpful. -

-

-Before diving into NetBSD you should really read the bits that look interesting of the NetBSD Guide and (if you intend to use it) all of the pkgsrc guide. -They're well written and detailed guides to NetBSD and the package manager typically used with NetBSD, and for the sake of you and anyone who finds your forum questions you should always consult them first if you have any questions. -

-

-Also, thank you to all the forum posters and chatroom hackers that help with my frequent n00b questions (see sources on each section). -If you like this page please consider donating to the NetBSD Foundation using the hyperlinks on their website. -

-

Fix SSL certificate problem: unable to get local issuer certificate

-

Install security/mozilla-rootcerts-openssl.

-

Sources:

- -

-Do not use SSL workarounds like (in the case of git) GIT_SSL_NO_VERIFY. -These leave your system open to man-in-the-middle attacks. -

-

Related: Depending on security/ca-certificates?

-

Mounting ext4 partitions with FUSE

-

-I don't know that this is documented in either the NetBSD guide or wiki. -If you have edit access to either and see this, please, add this in with any necessary edits! -This page is public domain (as is the rest of my site); don't worry about copyright (I can confirm anything by e-mail if needed). -

-
    -
  1. Install filesystems/fuse and filesystems/fuse-ext2.
  2. -
  3. Connect the drive with the ext4 partition you want to access.
  4. -
  5. Use dmesg(8) to determine the location in /dev/ of the disk.
  6. -
  7. Use disklabel(8) to determine which partition on the disk you want to access (disklabel /dev/disk) -- it will be listed with the partition type "Linux Ext2" even though the partition may be ext4.
  8. -
  9. Use fuse-ext2(1) to mount the partition (fuse-ext2 /dev/disk with partition letter mountpoint -- for example, fuse-ext2 /dev/sd1e /mnt/sd1 to mount partition e of device sd1 to the mountpoint /mnt/sd1).
  10. -
  11. This mountpoint can be unmounted with umount(8) as normal.
  12. -
-

System logging

-

See syslogd(8) and syslog.conf(5), which pertain to system logging.

-

Setting DDB_ONPANIC (see options(4) and sysctl(8)) will save a crash dump at /var/crash on kernel panic (source).

-

TOR Browser

-

-On a ThinkPad X200T (current NetBSD amd64) the start-tor-browser.desktop script in the pre-compiled amd64 Linux tarball errors out with Tor Browser requires a CPU with SSE2 support. Exiting.. -This is on a Core2 Duo SL9600 CPU, which does indeed support SSE2 (grep flags on dd </proc/cpuinfo to check your own CPU). -

-

-TOR Browser is available through pkgsrc at security/tor-browser. -Because TOR is typically used in environments where very strong security is necessary, it's recommended that you audit the pkgsrc Makefile and distinfo before installation. -

- - diff --git a/homepage/knowledge/linux.html b/homepage/knowledge/software.html similarity index 88% rename from homepage/knowledge/linux.html rename to homepage/knowledge/software.html index b72fc8f..7967404 100644 --- a/homepage/knowledge/linux.html +++ b/homepage/knowledge/software.html @@ -15,8 +15,8 @@ -

linux

-

updated 2022-05-17

+

software

+

updated 2022-05-20


ACPI client

@@ -212,6 +212,40 @@ Configuration is in /etc/conf.d/dmcrypt and further configuration s dm-crypt will need the UUID of the physical block device while fstab (if being configured with UUIDs will need the UUID of the decrypted block device in the device mapper.

+

NetBSD

+ +

Mounting ext4 partitions with FUSE

+
    +
  1. Install filesystems/fuse and filesystems/fuse-ext2.
  2. +
  3. Connect the drive with the ext4 partition you want to access.
  4. +
  5. Use dmesg(8) to determine the location in /dev/ of the disk.
  6. +
  7. Use disklabel(8) to determine which partition on the disk you want to access (disklabel /dev/disk) +- it will be listed with the partition type "Linux Ext2" even though the partition may be ext4.
  8. +
  9. Use fuse-ext2(1) to mount the partition (fuse-ext2 /dev/disk with partition letter mountpoint +- for example, fuse-ext2 /dev/sd1e /mnt/sd1 to mount partition e of device sd1 to the mountpoint /mnt/sd1).
  10. +
  11. This mountpoint can be unmounted with umount(8) as normal.
  12. +
+

Fix SSL certificate problem: unable to get local issuer certificate

+ +

Install security/mozilla-rootcerts-openssl.

+

+Do not use SSL workarounds like (in the case of git) GIT_SSL_NO_VERIFY. +These leave your system open to man-in-the-middle attacks. +

+

System logging

+ +

See syslogd(8) and syslog.conf(5), which pertain to system logging.

+

Setting DDB_ONPANIC (see options(4) and sysctl(8)) will save a crash dump at /var/crash on kernel panic.

postmarketOS

@@ -388,7 +422,11 @@ Start pulseaudio(1) when you want audio, ideally in your .xin mpv(1) and vlc(1) are good options.

- - +

Web Browsing

+

TOR Browser

+

+TOR Browser is available through pkgsrc at security/tor-browser. +

+