💾 Archived View for gmi.noulin.net › 2023-04-06-installing-freebsd.gmi captured on 2024-08-18 at 17:21:07. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-06-14)

-=-=-=-=-=-=-

Installing FreeBSD

Feed

date: 2023-04-06 13:34:23

categories: default

firstPublishDate: 2023-04-06 13:34:23

I recently installed FreeBSD on a Dell Latitude D610 laptop (2005) and it worked directly with the default configuration.

How to install FreeBSD with a USB stick:

# copy the memstick image to the USB stick
dd if=FreeBSD-13.2-RC3-i386-memstick.img of=/dev/sdb bs=1M conv=sync
# boot on USB and setup partitions...
# install GUI
pkg install xorg
pw groupmod video -m guestuser || pw groupmod wheel -m guestuser
pkg install git
# install and start xfce
pkg install xfce
echo "exec /usr/local/bin/startxfce4 --with-ck-launch" > ~/.xinitrc
startx

After boot, the system takes 200MB and when XFCE is started, it take around 400MB.

I changed the sshd configuration to allow root login with keys.

vi /etc/ssh/sshd_config
PermitRootLogin prohibit-password

service sshd restart

Libc in FreeBSD is a bit different compare to glibc:

Hashtag: #freebsd

Feed