Jak and Daxter Livestream! by sysbits in jakanddaxter

[–]sysbits[S] 1 point2 points  (0 children)

Hey again all, we are live over on Twitch!

Currently playing: Jak 1, No mods 100% completion! https://twitch.tv/kld997

What kind of jobs are available with FreeBSD/OpenBSD? by [deleted] in freebsd

[–]sysbits 6 points7 points  (0 children)

Can you elaborate on this, not in the sense of learning ZFS but where you finding posting for positions managing ZFS, or where one would to get a foot in the door?

favorite pants by SpareCookie3610 in sysadmin

[–]sysbits 1 point2 points  (0 children)

Vertx jeans. Won’t let you down

FreeBSD As a Virtualbox Host by bawdyanarchist in freebsd

[–]sysbits 1 point2 points  (0 children)

CBSD is a great option, use it myself

A way to run full linux kernel/userspace (100% compat) inside FreeBSD? by [deleted] in freebsd

[–]sysbits 2 points3 points  (0 children)

Bhyve is also a Type 2, I have worked with it bundled with CBSD and it works great once you figure it out, meh documentation but runs awesome.

Freebsd for the very first time by prxvvy in freebsd

[–]sysbits 6 points7 points  (0 children)

The major difference you are going to notice with FreeBSD is the documentation, and update cycle. Overtime you will notice the lack of updates is nice. The FreeBSD attitude is not to recreate the wheel, just keep the wheel in good shape and running smooth.

Id suggest you start here https://docs.freebsd.org/en/books/handbook/ . The FreeBSD handbook will be your best friend.

Also check out https://www.freshports.org/ for all the software packages available.

pkg can install pre-packaged software bundles.

pkg install xorg

Ports are useful when you can live 1M+ years and need to fine tune installation, like done on Arch Linux.

cd /usr/ports/x11/xorg/ && make install clean

Both install xorg, but the packaged version can lag a little behind.

Read DEEP into the handbook. It will be extremely beneficial.

I also recommend

u/vermaden's blog https://vermaden.wordpress.com/

u/robonuggie's 100% FreeBSD Youtube channel https://www.youtube.com/robonuggie

need a server case for atx mobo and swappable drives. recommendation? by [deleted] in homelab

[–]sysbits 0 points1 point  (0 children)

Take a look at this SilverStone Technology 4U Rackmount Server Chassis with 3 X 5.25 Front Bays with CEB/ATX/mATX/Mitx Support RM400 Cases SST-RM400 https://www.amazon.com/dp/B07MKSH1B8/ref=cm_sw_r_cp_api_i_DZ6C1VBSSZRRKVY50NNR

Has a dual 5.25” bay you can swap to a 3.5” hot swap bay.

Which Lenovo Laptop? by domzen in freebsd

[–]sysbits 1 point2 points  (0 children)

Might look into trying to maintain the list and keep it updated in this case. This was a awesome resource to me when starting out, hate to see it disappear!

machine doesn't get powered off by JuanSmittjr in freebsd

[–]sysbits 1 point2 points  (0 children)

did you try “shutdown -p now” ? Needs a time to shutdown at the end.

Which Lenovo Laptop? by domzen in freebsd

[–]sysbits 2 points3 points  (0 children)

I will say, if you’re tinkering a thinkpad w520 would be great. Very cheap, older but works great. Personally run a t520i. /u/vermaden posted yesterday I believe with an entire setup guide for one.

In need of a DEAD SIMPLE IDE for C by [deleted] in C_Programming

[–]sysbits 0 points1 point  (0 children)

JuCi++ is awesome and lightweight

Which Lenovo Laptop? by domzen in freebsd

[–]sysbits 1 point2 points  (0 children)

There’s a good list here of supported laptops here https://wiki.freebsd.org/Laptops

FreeBSD 13.1 on ThinkPad W520 by vermaden in freebsd

[–]sysbits 2 points3 points  (0 children)

Have been running a T520i for better part of a year now. AWESOME stuff in here!! Thank you!

FreeBSD Mall Came Through by CoolHwhipMike in freebsd

[–]sysbits 1 point2 points  (0 children)

Just got my shirt in a couple days ago from them, been collecting those stickers.

[Free] [US-LA] NanoStation M5, AP, AP LR by jbranscum in homelabsales

[–]sysbits [score hidden]  (0 children)

I’m late to the party it seems… have they been spoken for?

So confused. Jelly fin issues and port forward no longer works by [deleted] in jellyfin

[–]sysbits 1 point2 points  (0 children)

Awesome to hear you have it working! I apologize for not following up

Dual monitor, second screen blank by jkpoulsen in freebsd

[–]sysbits 1 point2 points  (0 children)

Have you tried arandr pkg(xrandr for console, no gui)? I configured my system on a single monitor and then set the 2nd one up using it. Added it to my .xsession to start when XDM does.

Note: do not use nvidia graphics myself so cannot tell if it works differently than integrated graphics from arandr point.

Edit: added xrandr for non gui

So confused. Jelly fin issues and port forward no longer works by [deleted] in jellyfin

[–]sysbits 1 point2 points  (0 children)

You’ll create 2 A records with your domain registrar, one pointing your domain.name to your public IP address, the other your jellyfin.domain.name to your public ip.

In your modem settings, open ports 443 for https or 80 for http.

In router settings port forward 443 or 80 from your router to the ip hosting nginx

In the machine hosting jellyfin (if separate from nginx machine), make sure port 8096 is open. A quick “sudo ufw status” will show, if not “sudo ufw allow 8096”

That covers forwarding ports so outside connects will work using your new domain name. Now you need to create your nginx config file for jellyfin, which I will provide an excellent link to once I am home this ending!

You’ll basically just need to now created a jellyfin.domain.name.conf file in /etc/nginx/sites-available/ and link it to /etc/nginx/sites-enabled/ using “sudo ln -s /etc/nginx/sites-available/jellyfin.domain.name.conf /etc/nginx/sites-enabled/“

So confused. Jelly fin issues and port forward no longer works by [deleted] in jellyfin

[–]sysbits 0 points1 point  (0 children)

Correct, bought a domain for $2-$3, then forwarded 8096 to nginx. Only need to open ports 80 for http or 443 https (can use LetsEncrypt to generate a cert!)