<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://kb.unixservertech.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://kb.unixservertech.com/feed.php">
        <title>Unix Server Tech Knowledge Base - quickreference</title>
        <description></description>
        <link>https://kb.unixservertech.com/</link>
        <image rdf:resource="https://kb.unixservertech.com/_media/wiki/dokuwiki.svg" />
       <dc:date>2026-05-05T08:12:14+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/disk_images?rev=1601947157&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/lvm2?rev=1733600163&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/mdadm?rev=1776131434&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/nfs?rev=1741500068&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/ssh?rev=1736063106&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/ssl?rev=1709589816&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/start?rev=1523234213&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/unix?rev=1738735952&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/windows?rev=1569377764&amp;do=diff"/>
                <rdf:li rdf:resource="https://kb.unixservertech.com/quickreference/zfs?rev=1742618352&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://kb.unixservertech.com/_media/wiki/dokuwiki.svg">
        <title>Unix Server Tech Knowledge Base</title>
        <link>https://kb.unixservertech.com/</link>
        <url>https://kb.unixservertech.com/_media/wiki/dokuwiki.svg</url>
    </image>
    <item rdf:about="https://kb.unixservertech.com/quickreference/disk_images?rev=1601947157&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-10-06T01:19:17+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Disk Image Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/disk_images?rev=1601947157&amp;do=diff</link>
        <description>Disk Image Quick Reference

&lt;https://askubuntu.com/questions/69363/mount-single-partition-from-image-of-entire-disk-device#69447&gt;

	*  get partition offset
fdisk -lu image.file

	*  Calculate offset to partition as sector_size*Start


losetup -o size_from_above /dev/loop0 image.file
e2fsck -f /dev/loop0
mount /dev/loop0 /mnt
dd if=/dev/zero of=/mnt/deleteme
rm /mnt/deleteme
umount /mnt
losetup -d /dev/loop0
xz -v image.file</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/lvm2?rev=1733600163&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-12-07T19:36:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LVM2 Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/lvm2?rev=1733600163&amp;do=diff</link>
        <description>LVM2 Quick Reference

Overview

LVM (Logical Volume Manager) allows you to take a portion of a block level device and use it as a repository for other block level devices. The most common example of a “block level device” is a hard drive, but it can also include a RAID array, a file, anything that you would normally access as you access the standard hard drive in your home computer. USB thumb drives, etc</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/mdadm?rev=1776131434&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-14T01:50:34+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>mdadm Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/mdadm?rev=1776131434&amp;do=diff</link>
        <description>mdadm Quick Reference

Common mdadm commands I found a really great, if somewhat dated, article at . This is mainly a copy of that article, updated for what I do under Debian.

Query Array or Member


mdadm --examine /dev/sda # get RAID information on sda if it is an array member
mdadm --query /dev/md0 # get information on a RAID array, or member if this is a disk
mdadm --detail /dev/md0 # gives more information about array, including information about each individual member</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/nfs?rev=1741500068&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-03-09T06:01:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>NFS Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/nfs?rev=1741500068&amp;do=diff</link>
        <description>NFS Quick Reference

Some useful commands

Finding mounts we can use

If you put the server's IP address (or DNS name) below, it will show all NFS mounts available to your machine


showmount -e serverip


restart nfsd

nfs on FreeBSD is very particular in which order you restart the services. In particular, rpcbind</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/ssh?rev=1736063106&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-01-05T07:45:06+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>ssh Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/ssh?rev=1736063106&amp;do=diff</link>
        <description>ssh Quick Reference

This is just some common tricks to use for ssh

Passwordless Logins

Sometimes, you need to be able to have an automated process log in to a Target machine from a Source machine. In most cases, this is done as the root user. This decreases security somewhat since if your</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/ssl?rev=1709589816&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-03-04T22:03:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>SSL Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/ssl?rev=1709589816&amp;do=diff</link>
        <description>SSL Quick Reference

Get Certificate from remote host

Ever wondered when your SMTP SSL Certificates are up for renewal? What DNS entries your certificates have? A quick and dirty way of doing it from the command line was shown at

	*  &lt;https://serverfault.com/questions/131627/how-to-inspect-remote-smtp-servers-tls-certificate#131628&gt;
	*  &lt;https://stackoverflow.com/questions/13127352/how-to-check-subject-alternative-names-for-a-ssl-tls-certificate&gt;

Note: the discussions covered other things, an…</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/start?rev=1523234213&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2018-04-09T00:36:53+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Quick Reference Guides</title>
        <link>https://kb.unixservertech.com/quickreference/start?rev=1523234213&amp;do=diff</link>
        <description>Quick Reference Guides

This is a list of Quick Reference Guides I've created.</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/unix?rev=1738735952&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-05T06:12:32+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Unix Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/unix?rev=1738735952&amp;do=diff</link>
        <description>Unix Quick Reference

This is just a location where I store various commands I found handy for Unix.

Systems Administration

Partitioning large drives

Drives greater than 2 Terabytes are not handled well by the standard fdisk application, so instead we use parted. Fun Fact!!! gparted is a nice little</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/windows?rev=1569377764&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2019-09-25T02:16:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Windows Quick Reference</title>
        <link>https://kb.unixservertech.com/quickreference/windows?rev=1569377764&amp;do=diff</link>
        <description>Windows Quick Reference

Read Windows Key from eprom

Many manufacturers are shipping systems with no Microsoft key on the case. Instead, the key is stored in ROM. To read the key (from Linux)

hexedit /sys/firmware/acpi/tables/MSDM

use ^C to exit hexedit.</description>
    </item>
    <item rdf:about="https://kb.unixservertech.com/quickreference/zfs?rev=1742618352&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-03-22T04:39:12+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>ZFS Quick Guide</title>
        <link>https://kb.unixservertech.com/quickreference/zfs?rev=1742618352&amp;do=diff</link>
        <description>ZFS Quick Guide

The ZFS file system is used widely on BSD, and is coming into more use on Linux. Following are some of my notes on it.

Initial Setup (FreeBSD)

Start ZFS service

FreeBSD comes with the ZFS service installed, but not active. We need to start the service, and also tell the system to start it when the system reboots.</description>
    </item>
</rdf:RDF>
