Differences between revisions 5 and 7 (spanning 2 versions)
Revision 5 as of 2020-12-20 08:43:14
Size: 876
Editor: Sciuro
Comment:
Revision 7 as of 2020-12-20 20:22:02
Size: 1405
Editor: Sciuro
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
= Installation =
== Boot disk ==
Create a bootable installation USB stick from [[https://www.freebsd.org/where.html|FreeBSD.org]]. Install the disk by:

|| '''OS''' || '''Command''' ||
|| MacOS || {{{sudo dd if=FreeBSD-12.2-RELEASE-amd64-memstick.img of=/dev/diskX bs=4m}}} ||
|| Linux || {{{sudo dd if=FreeBSD-12.2-RELEASE-amd64-memstick.img of=/dev/sdX bs=4=M}}} ||

== Disks ==
The best solution is using ZFS. Downside, it will take your whole disk. Encrypt your disk and swap file.
Line 9: Line 20:
== Users ==
Add the users:

Description

Installation

Boot disk

Create a bootable installation USB stick from FreeBSD.org. Install the disk by:

OS

Command

MacOS

sudo dd if=FreeBSD-12.2-RELEASE-amd64-memstick.img of=/dev/diskX bs=4m

Linux

sudo dd if=FreeBSD-12.2-RELEASE-amd64-memstick.img of=/dev/sdX bs=4=M

Disks

The best solution is using ZFS. Downside, it will take your whole disk. Encrypt your disk and swap file.

Configuration

Users

Add the users:

Kernel

svnlite checkout https://svn.freebsd.org/base/release/12.2.0 /usr/src

NVIDIA

Updated the ports

distinfo

SHA256 (NVIDIA-FreeBSD-x86_64-460.27.04.tar.gz) = b9c0e676b5e66569d2f71a25ab1e782bb8a52cbcb3e413e854b72debc37b6623
SIZE (NVIDIA-FreeBSD-x86_64-460.27.04.tar.gz) = 103234112

Makefile removed some includes

In /boot/loader.conf: nvidia="YES" nvidia-modeset_load="YES"

Xorg

Section "Device"
        Identifier      "Card0"
        Driver          "nvidia"
        # BusID         "PCI:0:8:0:0"
EndSection

In /etc/rc.conf:

dbus_enable="YES"
hald_enable="YES"

Login manager

In /etc/rc.conf:

sddm_enable="YES"

Linux compat

Howto/FreeBSDDesktop (last edited 2021-03-06 07:39:03 by Sciuro)