<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>iBSD Post Archive on iBSD | Proving That BSD Is A Great Alternative To Linux</title>
    <link>https://i-bsd.com/posts/</link>
    <description>Recent content in iBSD Post Archive on iBSD | Proving That BSD Is A Great Alternative To Linux</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 09 Jul 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://i-bsd.com/posts/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How I Do Web Development (Astro, NextJS, etc.) On FreeBSD</title>
      <link>https://i-bsd.com/bhyve-web-development/</link>
      <pubDate>Wed, 09 Jul 2025 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/bhyve-web-development/</guid>
      <description>I&amp;rsquo;ve been using FreeBSD as my daily driver for over 10 years.
In fact, I&amp;rsquo;ve been continuously running the same OS on the same drive non-stop. Never once removed FreeBSD or reinstalled it. I just install major and minor updates when they become available.
Even when I did a complete hardware upgrade and replaced the entire system, I kept my FreeBSD drive as is.
Needless to say, I&amp;rsquo;m loyal to FreeBSD.</description>
    </item>
    
    <item>
      <title>How To Enable A Display Manager In FreeBSD (SLiM, LightDM, etc.)</title>
      <link>https://i-bsd.com/freebsd-enable-display-manager/</link>
      <pubDate>Wed, 01 Nov 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-enable-display-manager/</guid>
      <description>Need to enable a display manager in FreeBSD?
Popular display managers in FreeBSD include:
SLiM LightDM GDM(3) XDM SDDM Enabling one of these display managers means that a graphical login screen will open up automatically when you start your computer, instead of running startx in a terminal. Obviously, this assumes that your graphic card drivers are set up correctly.
In FreeBSD, display managers are typically enabled by adding an entry to /etc/rc.</description>
    </item>
    
    <item>
      <title>How To Enable Daemons In FreeBSD</title>
      <link>https://i-bsd.com/freebsd-daemons/</link>
      <pubDate>Sat, 26 Aug 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-daemons/</guid>
      <description>Want to know how to enable a daemon in FreeBSD?
In FreeBSD, daemons (which are background services) are typically managed using the rc.d scripting framework.
To enable a daemon, you usually need to set an appropriate variable in /etc/rc.conf.
Here&amp;rsquo;s a general process:
1. Find the daemon&amp;rsquo;s startup script Daemons have startup scripts located in /usr/local/etc/rc.d/ (for software installed from ports or packages) or in /etc/rc.d/ (for base system software).</description>
    </item>
    
    <item>
      <title>FreeBSD: How To See How Much Disk Space You&#39;re Using</title>
      <link>https://i-bsd.com/freebsd-disk-space/</link>
      <pubDate>Wed, 23 Aug 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-disk-space/</guid>
      <description>Need to know how much free disk space you have?
FreeBSD has several utilities to check disk space and partition usage.
In this guide, I&amp;rsquo;ll run through some of the most commonly used tools to achieve this.
Different methods for checking your free disk space on FreeBSD df - Disk Filesystem df is a Unix command used to display the amount of disk space used and available on filesystems.
Usage:</description>
    </item>
    
    <item>
      <title>How To Fix &#39;write access to repository not granted&#39; (Git)</title>
      <link>https://i-bsd.com/write-access-to-repository-not-granted/</link>
      <pubDate>Thu, 17 Aug 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/write-access-to-repository-not-granted/</guid>
      <description>When working with Git repositories, especially on GitHub, you might come across the error message:
write access to repository not granted.
I&amp;rsquo;ll walk you through the common causes of this error and how to get rid of it using the command line and the GitHub GUI.
The &amp;lsquo;write access to repository&amp;rsquo; error Possible causes: Not having collaborator access: If the repository belongs to someone else or an organization, you might not have been given write access.</description>
    </item>
    
    <item>
      <title>How To Fix &#39;Permission Denied&#39; When Activating venv</title>
      <link>https://i-bsd.com/venv-permission-denied/</link>
      <pubDate>Sat, 24 Jun 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/venv-permission-denied/</guid>
      <description>Python virtual environments are great for isolating pip packages for different Python versions.
See the Python docs on how to create a virtual environment &amp;ndash; or venv.
I just want to point out that there&amp;rsquo;s a simple mistake people make when activating a Python virtual environment (after creation).
If you try to execute the activate binary, you&amp;rsquo;ll get this message:
&amp;lt;venv&amp;gt;/bin/activate: cannot execute - Permission denied The reason you&amp;rsquo;re seeing this message is that it needs to be sourced, not executed.</description>
    </item>
    
    <item>
      <title>FreeBSD: How To Add, Delete Or Modify Users</title>
      <link>https://i-bsd.com/freebsd-users/</link>
      <pubDate>Sat, 04 Mar 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-users/</guid>
      <description>So you want to add a new user in FreeBSD or edit an existing user?
Here&amp;rsquo;s a quick guide on the different ways to do this.
Adding new users 1. adduser This is your go-to in FreeBSD for adding a new user. Couldn&amp;rsquo;t be simpler.
Type in sudo adduser. Follow the prompts to set the user information. One of the prompts will ask if you want to invite the user to any groups.</description>
    </item>
    
    <item>
      <title>FreeBSD: How To Find A File (Or Directory)</title>
      <link>https://i-bsd.com/freebsd-find-files/</link>
      <pubDate>Tue, 10 Jan 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-find-files/</guid>
      <description>If you&amp;rsquo;re looking for a file (or directory) in FreeBSD or OpenBSD, there are 3 commands you should know about:
find whereis locate 1. find find can be used to find a file or directory.
You use it like so:
# File find / -type f -name &amp;#34;file name&amp;#34; # Directory find / -type d -name &amp;#34;directory name&amp;#34; You can change the / to any folder you want to start searching in.</description>
    </item>
    
    <item>
      <title>How To List All ZFS Snapshots By Default</title>
      <link>https://i-bsd.com/zfs-list-snapshots/</link>
      <pubDate>Mon, 09 Jan 2023 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/zfs-list-snapshots/</guid>
      <description>You used to be able to run zfs list and it would show you all the ZFS snapshots by default.
This doesn&amp;rsquo;t work anymore (FreeBSD 13 onward). The type isn&amp;rsquo;t assumed anymore.
As per the manpage , you need to stipulate the type by typing zfs list -t snapshot.
Alternatively, use zfs list -t all to show everything, including filesystems, snapshots, volumes and bookmarks.
If you want to shorten the command to make it a bit quicker (as it used to be), set up a simple shell alias in your .</description>
    </item>
    
    <item>
      <title>What To Do After A Fresh OpenBSD Install (First Steps)</title>
      <link>https://i-bsd.com/openbsd-first-steps/</link>
      <pubDate>Wed, 26 Oct 2022 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/openbsd-first-steps/</guid>
      <description>This is my own step-by-step process after a fresh OpenBSD install on my laptop.
I use my X1 Carbon Gen 6 for OpenBSD and it&amp;rsquo;s my daily driver for work (web dev and content marketing).
Everyone&amp;rsquo;s use case is different, but you might find this helpful.
I won&amp;rsquo;t cover the install process itself, but I will add one necessary, pre-install step:
1. Obtain firmware Let&amp;rsquo;s say you&amp;rsquo;ve just downloaded and installed an OpenBSD image to a USB in preparation for an install.</description>
    </item>
    
    <item>
      <title>How To Shutdown (Turn Off) OpenBSD</title>
      <link>https://i-bsd.com/openbsd-shutdown/</link>
      <pubDate>Mon, 17 Oct 2022 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/openbsd-shutdown/</guid>
      <description>How do you shutdown/turn off OpenBSD correctly?
I&amp;rsquo;ll assume you&amp;rsquo;re logged into OpenBSD with an open terminal (either bare metal install or VirtualBox).
You have two (or possibly three) options for shutting down OpenBSD:
halt This is your standard shutdown command:
# As root halt -p # As user doas halt -p The halt command will &amp;ldquo;halt&amp;rdquo; the system. The -p flag tells it to &amp;ldquo;power down&amp;rdquo; as well.
On older versions of OpenBSD, you may need to add this line to /etc/sysctl.</description>
    </item>
    
    <item>
      <title>FreeBSD: How To Run Ubuntu (Or Any Distro) With vm-bhyve</title>
      <link>https://i-bsd.com/freebsd-vm-bhyve-linux/</link>
      <pubDate>Wed, 30 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-vm-bhyve-linux/</guid>
      <description>Want to run Ubuntu or another Linux distro virtualized in FreeBSD?
What if I told you that VirtualBox isn&amp;rsquo;t needed for this?
This quick guide will run you through the necessary steps to quickly setup bhyve using vm-bhyve.
FreeBSD: vm-bhyve steps for installing Ubuntu Installation steps Here are the installation steps I used in order:
1. doas pkg install vm-bhyve (optional: grub2-bhyve) 2. kldload if_bridge if_tap nmdm vmm 3. doas sysrc vm_enable=&amp;#34;YES&amp;#34; 4.</description>
    </item>
    
    <item>
      <title>FreeBSD: Where Is xorg.conf? (&#43; How To Generate New One)</title>
      <link>https://i-bsd.com/freebsd-where-is-xorg-conf/</link>
      <pubDate>Mon, 21 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-where-is-xorg-conf/</guid>
      <description>Looking for xorg.conf in FreeBSD?
Not sure where to find it or how to generate a new configuration file?
Location of xorg.conf in FreeBSD You can find it here (by default):
/etc/X11/xorg.conf You may also find it here:
/usr/local/etc/X11/xorg.conf
What if there is no xorg.conf file? First option you have is to manually created it:
sudo touch /etc/X11/xorg.conf
You&amp;rsquo;ll have to fill in the details by hand this way.
Another option is to use the Xorg -configure option:</description>
    </item>
    
    <item>
      <title>FreeBSD: Which Shell Am I Using? (How To Find Out)</title>
      <link>https://i-bsd.com/freebsd-which-shell-am-i-using/</link>
      <pubDate>Sun, 20 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-which-shell-am-i-using/</guid>
      <description>Need to know which you&amp;rsquo;re using in FreeBSD?
It&amp;rsquo;s very easy to find out.
FreeBSD: Which shell am I using? If you want to find out which shell you are currently using, you have a few options.
1. chsh Just type in chsh.
You&amp;rsquo;ll get a text editor (likely vim) pop up with some lines of info about your user and default shell that looks like this:
#Changing user information for donovan.</description>
    </item>
    
    <item>
      <title>How To Fix &#39;chmod: Operation not permitted&#39; (Even As Root)</title>
      <link>https://i-bsd.com/chmod-operation-not-permitted/</link>
      <pubDate>Sat, 19 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/chmod-operation-not-permitted/</guid>
      <description>Why is chmod showing the error: Operation not permitted?
You may be seeing messages like this when trying to change the permissions of a directory or file:
chmod: directory: Operation not permitted There are basically two main possibilities here:
1. You&amp;rsquo;re not doing it as root user Let&amp;rsquo;s say you just typed as a non-root user:
chmod -R 777 /directory/
If that directory doesn&amp;rsquo;t belong to your user (i.e. isn&amp;rsquo;t in /home/user/), then you will get the Operation not permitted error.</description>
    </item>
    
    <item>
      <title>FreeBSD: What&#39;s My IP Address? (How To Find Out)</title>
      <link>https://i-bsd.com/freebsd-whats-my-ip/</link>
      <pubDate>Fri, 18 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-whats-my-ip/</guid>
      <description>Need to know your IP address in FreeBSD?
It&amp;rsquo;s very easy to find out.
FreeBSD: What&amp;rsquo;s my IP? Assuming your network interface is em0, to find out your IP address in FreeBSD just use this command:
ifconfig
(see man page )
Look under em0 (or whatever interface you&amp;rsquo;re using) and you&amp;rsquo;ll see your network IP address.
How do I get my IP address and nothing else in FreeBSD? Let&amp;rsquo;s say you only want to output your IP address and no other information (e.</description>
    </item>
    
    <item>
      <title>GatsbyJS And OpenBSD: Outta Luck I&#39;m Afraid</title>
      <link>https://i-bsd.com/openbsd-gatsby/</link>
      <pubDate>Sun, 12 Apr 2020 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/openbsd-gatsby/</guid>
      <description>If you&amp;rsquo;ve been following me for a while (since I started the iBSD channel ), you&amp;rsquo;ll remember that I started messing around with Jekyll after 10 years of Wordpress , fell in love with it, then used it to build the first iBSD site.
Well, static site generators have become a massive rabbit hole since then.
It&amp;rsquo;s become an obsession. 😊
I moved on to Hugo, then Gridsome, GatsbyJS, and then NextJS.</description>
    </item>
    
    <item>
      <title>Love BSD? Get Paid To Share Your Knowledge</title>
      <link>https://i-bsd.com/contribute/</link>
      <pubDate>Fri, 13 Dec 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/contribute/</guid>
      <description>First off, I have to apologize to my subs and readers for iBSD&amp;rsquo;s silence the past few months.
I&amp;rsquo;ve been on an extended holiday away from my home office and have had to prioritize projects with the minimal amount of focused work time I&amp;rsquo;ve had.
iBSD had to go on the back-burner for a while.
Right now, I&amp;rsquo;m putting in extra time to clear my list so I can (soon) focus again on my BSD content.</description>
    </item>
    
    <item>
      <title>How To Save Inkscape Optimized SVG&#39;s On FreeBSD</title>
      <link>https://i-bsd.com/inkscape-optimized-svg/</link>
      <pubDate>Sun, 11 Aug 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/inkscape-optimized-svg/</guid>
      <description>You&amp;rsquo;ve probably noticed the shiny custom logo in the top left of this site.
Well, I used Inkscape to design that.
But you can&amp;rsquo;t just save an Inkscape SVG file to your website and use it as a regular image or logo.
It has to be optimized for the web.
How to save an optimized SVG in Inkscape on FreeBSD (for logos and so on) I&amp;rsquo;m not going to cover Inkscape basics here (I&amp;rsquo;ll assume you&amp;rsquo;ve already finished your design).</description>
    </item>
    
    <item>
      <title>My New Mini-ITX BSD Box &#43; ASUS MB And Nvidia 1660 Ti FreeBSD Fix</title>
      <link>https://i-bsd.com/bsdbox/</link>
      <pubDate>Tue, 06 Aug 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/bsdbox/</guid>
      <description>After 2 hectic months of travel, I&amp;rsquo;m finally set up in Australia for a while.
I wanted to do some on the road screencasting for iBSD but as it turned out, there was no way I could find the time for it.
I only brought my X1 Carbon 6th with me this time.
As much as I love using my ThinkPad, I really couldn&amp;rsquo;t wait to get a powerful BSD desktop build done so I can get back to work on it (and do some more screencasting).</description>
    </item>
    
    <item>
      <title>Installing drm-kmod on FreeBSD and Increasing Console Font</title>
      <link>https://i-bsd.com/drm-console/</link>
      <pubDate>Sat, 20 Jul 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/drm-console/</guid>
      <description>I recently reinstalled FreeBSD on my X1 Carbon 6th.
Since I’ll be doing a lot of traveling overseas soon and needed a few vital programs that aren’t available on OpenBSD, it had to be done.
I decided this time to document various stages of my setup for people who asked.
So this post will cover a simple step and one of the first things I do.
Since the X1 Carbon has a resolution of 2560x1440, the console is almost impossible to work on.</description>
    </item>
    
    <item>
      <title>My Straightforward Guide For Setting Up Poudriere On FreeBSD</title>
      <link>https://i-bsd.com/poudriere-guide/</link>
      <pubDate>Sat, 27 Apr 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/poudriere-guide/</guid>
      <description>Poudriere is by far my favorite FreeBSD tool and one I use almost daily for stable, customized package management. Here&amp;rsquo;s the step-by-step guide I made (for myself) to set it up.
People asked for this so I&amp;rsquo;m posting it (plus it&amp;rsquo;s a great reference for me in case I forget!).
Let me know if I&amp;rsquo;ve missed anything.
The nginx part is optional but I&amp;rsquo;ll leave that in here.
1. Install poudriere (obviously) and nginx (if you want to) doas pkg install poudriere nginx</description>
    </item>
    
    <item>
      <title>Hugo vs. Jekyll: Why I Choose Jekyll (FreeBSD)</title>
      <link>https://i-bsd.com/hugo-vs-jekyll/</link>
      <pubDate>Fri, 08 Mar 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/hugo-vs-jekyll/</guid>
      <description>If you can handle the incessant coughing (sorry - I had major allergies living in California!), this one is for the Hugo guys.
A lot of people recommended (Go) Hugo as a better alternative to Jekyll after my last video so I decided this past week to jump into it and compare the two.
Here are the things I like about Hugo:
Speed of build time. Asset pipelines in the template.</description>
    </item>
    
    <item>
      <title>Exhaustive List Of Options For OpenBSD Gamers</title>
      <link>https://i-bsd.com/openbsd-gaming/</link>
      <pubDate>Sat, 02 Feb 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/openbsd-gaming/</guid>
      <description>I think I&amp;rsquo;ve made it fairly clear in the past that I don&amp;rsquo;t see OpenBSD or FreeBSD as ideal gaming platforms (yet).
What these operating systems do well, they do exceptionally well.
Gaming - and in particular things like Steam - are another matter.
That being said, I think there&amp;rsquo;s been a growing interest in getting these platforms to work well for gamers and surprisingly, there&amp;rsquo;s a community of OpenBSD guys who are dedicated to gaming (check out this subreddit ).</description>
    </item>
    
    <item>
      <title>New iBSD Site Is Finally Here</title>
      <link>https://i-bsd.com/newsite/</link>
      <pubDate>Fri, 18 Jan 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/newsite/</guid>
      <description>I started my iBSD YouTube channel early last year and it&amp;rsquo;s quickly grown in popularity.
There seems to be a lot of interest in FreeBSD and OpenBSD.
One of the primary reasons for starting my screencasts was that every time I&amp;rsquo;d go to find some kind of video tutorial, it would be horrendously out of date, poor quality or just plain non-existent.
Linux content abounds but BSD desperately needs more fandom.</description>
    </item>
    
    <item>
      <title>coreutils In The BSD&#39;s vs. GNU/Linux</title>
      <link>https://i-bsd.com/coreutils/</link>
      <pubDate>Thu, 10 Jan 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/coreutils/</guid>
      <description>Today I want to add another point to my earlier video titled Linux is a mess .
I feel like my previous video didn&amp;rsquo;t do the topic justice and there was a lot more I could have talked about. In this video, I briefly touch on some differences (and similarities) between core utilities (coreutils) on Linux and other POSIX compliant operating systems like the BSD&amp;rsquo;s, Solaris, MacOS and so on.</description>
    </item>
    
    <item>
      <title>Game Of Thrones Theme Ricing With AwesomeWM On FreeBSD</title>
      <link>https://i-bsd.com/gameofthrones/</link>
      <pubDate>Thu, 03 Jan 2019 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/gameofthrones/</guid>
      <description> Here&amp;rsquo;s a fun little side project I&amp;rsquo;ve been working on with Awesome Window Manager to get myself pumped for GoT Season 8.
A FreeBSD GoT-based WM with 9 themed houses as individual workspaces.
Still a work-in-progress.
awesomewm here . API docs . Good starting place for newbies. Lain for additional layouts here . </description>
    </item>
    
    <item>
      <title>My Raspberry Pi 3 B&#43; NetBSD Project</title>
      <link>https://i-bsd.com/rpinetbsd/</link>
      <pubDate>Fri, 30 Nov 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/rpinetbsd/</guid>
      <description>Building myself a NetBSD box on Raspberry Pi (3 B+) to host a Smashing dash.
Netbsd/evbarm . ebijun&amp;rsquo;s image . Smashing Parts used to build (affiliate links):
RPi (~$38) Casing kit . (~$16) High res 10&amp;quot; testing monitor . (~$140) ebijun&amp;rsquo;s image works great but his image and changelog are a mess and tailored for Japanese environment so need a clean up to get a minimal, English install.
Also needed to make changes to config.</description>
    </item>
    
    <item>
      <title>How To Make OpenBSD Run Beautifully On X1C6</title>
      <link>https://i-bsd.com/biosfix/</link>
      <pubDate>Wed, 24 Oct 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/biosfix/</guid>
      <description>Found the simple solution to the problem that&amp;rsquo;s been bugging me for months now.
As I mentioned in a previous video, OpenBSD was running abysmally slow after a shutdown (or sleep).
Turns out it&amp;rsquo;s a Thunderbolt issue.
Thunderbolt BIOS Assist is disabled by default.
Enable it.
Problem solved. (but unsure on its affect on battery life)</description>
    </item>
    
    <item>
      <title>LaTeX Is Amazing [Why I Use FreeBSD: Part 4]</title>
      <link>https://i-bsd.com/latex/</link>
      <pubDate>Sun, 21 Oct 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/latex/</guid>
      <description>LaTeX is not just for math and science geeks. Recently switched all of our content creation workflow over and I&amp;rsquo;ve been amazed at its versatility and consistency.
Total game-changer and has saved us a tonne of hours and headaches.
On FreeBSD, I just installed the texlive-full package to get everything working.</description>
    </item>
    
    <item>
      <title>Hey Arch Linux Fanboys, Piss Off With Your Arguments</title>
      <link>https://i-bsd.com/xyz/</link>
      <pubDate>Wed, 03 Oct 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/xyz/</guid>
      <description>Just responding to a lot of comments I&amp;rsquo;ve had lately from people looking for pointless arguments over nothing.
&amp;ldquo;I like bsd&amp;rdquo; ≠ &amp;ldquo;I hate Linux&amp;rdquo;
&amp;ldquo;I use FreeBSD because&amp;hellip;&amp;rdquo; ≠ &amp;ldquo;Linux can&amp;rsquo;t do&amp;hellip;&amp;rdquo;</description>
    </item>
    
    <item>
      <title>How To Change Your BIOS Logo On ThinkPad</title>
      <link>https://i-bsd.com/flashbios/</link>
      <pubDate>Wed, 03 Oct 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/flashbios/</guid>
      <description>ThinkPads let you customize the BIOS logo when flashing BIOS updates.
Here&amp;rsquo;s how to make it look pretty (I&amp;rsquo;ve used an OpenBSD puffy).</description>
    </item>
    
    <item>
      <title>How I Share My OpenBSD Desktop With My FreeBSD Machine</title>
      <link>https://i-bsd.com/vnc/</link>
      <pubDate>Thu, 20 Sep 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/vnc/</guid>
      <description>Setting up desktop sharing using vnc:
pkg_add (or pkg install) x11vnc
FreeBSD:
pkg install tigervnc
OpenBSD:
pkg_add ssvnc
Heed security warnings.
Create x11vnc password, use ssh tunneling, etc. if on an open network.
For window managers with mod/windows key, fullscreen seems to work but windowed does not (I think).</description>
    </item>
    
    <item>
      <title>Linux Sleep State BIOS Update For X1C6</title>
      <link>https://i-bsd.com/x1c6bios/</link>
      <pubDate>Wed, 12 Sep 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/x1c6bios/</guid>
      <description>New BIOS update for the ThinkPad X1 Carbon 6th which adds Linux sleep state support.
Sleep seems to work great on OpenBSD as I demonstrate here (but needs to be tested for battery consumption overnight).
Get the X1 Carbon 6th here . (aff. link)
See my other video on this laptop here .</description>
    </item>
    
    <item>
      <title>Why I Prefer To Use dwm (suckless) Instead Of i3wm</title>
      <link>https://i-bsd.com/dwm/</link>
      <pubDate>Thu, 06 Sep 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/dwm/</guid>
      <description>In response to questions about my preferred window manager and ricing, here&amp;rsquo;s what I currently use: dwm .
RICE def.
verb
/rīs/
to make a desktop environment or window manager visually attractive Can you teach me how to rice i3?</description>
    </item>
    
    <item>
      <title>OpenBSD Performance Issue After Shutdown</title>
      <link>https://i-bsd.com/openbsdslow/</link>
      <pubDate>Sat, 01 Sep 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/openbsdslow/</guid>
      <description>I have an issue with OpenBSD on my X1 Carbon 6th gen that I want to ask the developers for advice on.
It&amp;rsquo;s a tricky problem to explain in the forums so I decided to just video it instead.
OpenBSD runs terribly after a shutdown . But after a reboot, it runs amazingly fast.
Why is this happening?
I recorded the experience to show you what&amp;rsquo;s happening.
UPDATE: I found the solution to this problem.</description>
    </item>
    
    <item>
      <title>Linux Is A Mess [Why I Use FreeBSD: Part 3]</title>
      <link>https://i-bsd.com/linuxmess/</link>
      <pubDate>Sat, 18 Aug 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/linuxmess/</guid>
      <description>UPDATE: Make sure to watch the follow-up video to this here .
I realize my definition of &amp;lsquo;userland&amp;rsquo; is way too oversimplified here but I wanted to demonstrate one of the biggest reasons why I left Linux: it&amp;rsquo;s a total mess.
Forgot to mention that Linux is technically &amp;lsquo;just a kernel&amp;rsquo;.
All other applications are sourced elsewhere and packaged. FreeBSD on the other hand is a complete OS with its own base applications.</description>
    </item>
    
    <item>
      <title>The Reality Of FreeBSD And Steam Gaming (For Now)</title>
      <link>https://i-bsd.com/steam/</link>
      <pubDate>Fri, 10 Aug 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/steam/</guid>
      <description>I thought I&amp;rsquo;d take time out to play a game on FreeBSD while lecturing you about not playing games on FreeBSD. :)
Actually, FreeBSD is great for retro gaming and a few others.
But the question keeps getting asked:
&amp;ldquo;How well does Steam work on FreeBSD?&amp;rdquo;
Answer: it doesn&amp;rsquo;t. Not yet anyway.
SteamOnBSD is a project that looked promising but runs a very unsafe script with root privileges so I wouldn&amp;rsquo;t advise it).</description>
    </item>
    
    <item>
      <title>How To Use Poudriere [Why I Use FreeBSD: Part 2]</title>
      <link>https://i-bsd.com/poudriere/</link>
      <pubDate>Tue, 07 Aug 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/poudriere/</guid>
      <description>Another reason why I use and love FreeBSD: poudriere (French for &amp;lsquo;powder keg&amp;rsquo;).
I should have also mentioned in the video that you can access your poudriere repository over a network too so that one server can serve these customized packages to others.
See the handbook chapter on poudriere here .
Another very similar option is synth (which I haven&amp;rsquo;t used). See here .</description>
    </item>
    
    <item>
      <title>newsboat As An Internet Frontpage</title>
      <link>https://i-bsd.com/newsboat/</link>
      <pubDate>Sat, 07 Jul 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/newsboat/</guid>
      <description>newsboat is one of my favorite programs in BSD/Linux.
It&amp;rsquo;s more than just a blog RSS reader.
It can handle podcasts, YouTube channels and Reddit subreddits as well so it works wonders as a &amp;lsquo;front page to the Internet&amp;rsquo; - limit your browser time and keep everything in one place.</description>
    </item>
    
    <item>
      <title>Why I Prefer To Use doas Over sudo</title>
      <link>https://i-bsd.com/doas/</link>
      <pubDate>Sat, 07 Jul 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/doas/</guid>
      <description>One of my favorite tools straight out of the OpenBSD community: doas.
Makes me wonder why anyone&amp;rsquo;s still using sudo!
So simple to set up on FreeBSD:
pkg install doas vim /usr/local/etc/doas.conf I add:
permit nopass keepenv :wheel Done. Make sure your user is a member of the :wheel group obviously.</description>
    </item>
    
    <item>
      <title>Blogging On FreeBSD [Why I Use FreeBSD: Part 1]</title>
      <link>https://i-bsd.com/blogging/</link>
      <pubDate>Sun, 01 Jul 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/blogging/</guid>
      <description>UPDATE: I now use and highly recommend Jekyll. After over a decade of broken plugins and security holes with Wordpress, I&amp;rsquo;ve switched over to static site coding.
Thought I&amp;rsquo;d give a glimpse into my blogging workflow and why I prefer to use FreeBSD to get things done.
Starting with my distraction-free writing in Markdown (vim), conversion to html, uploading to the Wordpress server and using wp-cli to turn it into a post.</description>
    </item>
    
    <item>
      <title>FreeBSD vs OpenBSD On The ThinkPad X1 Carbon 6th</title>
      <link>https://i-bsd.com/x1c6/</link>
      <pubDate>Sun, 01 Jul 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/x1c6/</guid>
      <description>Tested out the X1 Carbon 6th gen Thinkpad with OpenBSD 6.3 after running FreeBSD 11.2 on it.
Here are my thoughts after comparing the two.
Just a rant.
No benchmarks or anything - just purely based off using it for a few days.
Overall, OpenBSD is way better in terms of out-of-the-box compatibility but FreeBSD performs way better on this laptop in my opinion.
UPDATE: OpenBSD now runs amazingly well on this laptop and is my daily driver.</description>
    </item>
    
    <item>
      <title>cava Audio Visualizer Issue On FreeBSD</title>
      <link>https://i-bsd.com/cava/</link>
      <pubDate>Fri, 22 Jun 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/cava/</guid>
      <description> Need your advice - I&amp;rsquo;m having some issues with cava and the fifo visualizer in ncmpcpp on FreeBSD.
What&amp;rsquo;s the best solution here? I must be missing something.
UPDATE: I &amp;lsquo;kinda&amp;rsquo; got cava working by adding this to ~/.config/cava/config:
method = pulse source = oss_output.dsp4.monitor </description>
    </item>
    
    <item>
      <title>Using drm-next-kmod (Intel HD graphics) on FreeBSD</title>
      <link>https://i-bsd.com/drm-next-kmod/</link>
      <pubDate>Mon, 18 Jun 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/drm-next-kmod/</guid>
      <description>This will quickly explain how I optimized my Intel HD on my X1 Carbon 6th gen ThinkPad for FreeBSD using the drm-next-kmod port.
Also how to set the DPI settings for X (i3wm specifically).
I forgot to mention I added this line to my i3wm startup:
xrandr --dpi 220 Laptop screen now looks [almost] as good as a Mac. :)
Smooth and crisp + high performance. No screen tearing (only when I attempt to record a screencast while compositing is turned on).</description>
    </item>
    
    <item>
      <title>How To Fix Headphone &#43; Mic On FreeBSD (X1 Carbon 6th) &#43; Intel 8265 Issues</title>
      <link>https://i-bsd.com/freebsd-wireless-8265/</link>
      <pubDate>Sat, 09 Jun 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/freebsd-wireless-8265/</guid>
      <description>How to quickly fix the sound from the headphone jack and microphones in FreeBSD with the X1 Carbon 6th gen (same process applies to many other laptop models).
It&amp;rsquo;s just a matter of finding the appropriate nid and correcting their as numbers. I also forgot to mention that I changed the seq numbers too which you can see in my /boot/device.hints file.
In summary:
Press &amp;lsquo;6&amp;rsquo; at boot time. Turn verbose booting on.</description>
    </item>
    
    <item>
      <title>The Best New Laptop For Running BSD (and Linux)</title>
      <link>https://i-bsd.com/best-laptop/</link>
      <pubDate>Wed, 30 May 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/best-laptop/</guid>
      <description>I bought an X1 Carbon 6th Generation laptop (highest specs) from Lenovo because I wanted to put a BSD operating system on it. Started with FreeBSD and now settled on OpenBSD.
UPDATE: I just received the Generation 10 with highest specs. It&amp;rsquo;s now my FreeBSD daily driver but has a much poorer battery life compared to my Gen 6. I would recommend sticking with a new Gen 9 or refurb ( NewEgg , Amazon ) for now if you care about battery life.</description>
    </item>
    
    <item>
      <title>Why FreeBSD And OpenBSD Package Management Beats Linux</title>
      <link>https://i-bsd.com/pkg/</link>
      <pubDate>Wed, 04 Apr 2018 00:00:00 +0000</pubDate>
      
      <guid>https://i-bsd.com/pkg/</guid>
      <description>Some Linux distros have great package management (e.g. Debian).
But it was the Arch package management that ultimately convinced me to leave Linux and move to FreeBSD permanently.
I was tired of the unpredictability and instability upgrading packages (especially when combining the main repo with user repo packages).
Inevitably things start breaking.
FreeBSD isn&amp;rsquo;t perfect but it&amp;rsquo;s definitely rock solid 99% of the time.
Even when something doesn&amp;rsquo;t go right, it&amp;rsquo;s usually super straightforward to diagnose and fix.</description>
    </item>
    
  </channel>
</rss>
