FreeBSD

A la découverte de FreeBSD

A la découverte de FreeBSD

Installation de FreeBSD 13.1

Pour l'installation, j'utilise l'ISO net install de FreeBSD 13.1 (download) mis sur une clef USB.

Boot sur la clef USB avec le choix par défault.

FreeBSD-Instalation-1.png

On désire installer, donc Install

FreeBSD-Instalation-2.png

On sélectionne le clavier adapté, dans mon cas c'est le clavier French.
En cas de doute, il est possible de tester le mapping du clavier.

FreeBSD-Instalation-3.png

FreeBSD-Instalation-4.png

FreeBSD-Instalation-5.png

FreeBSD-Instalation-6.png

FreeBSD-Instalation-7.png

FreeBSD-Instalation-8.png

FreeBSD-Instalation-9.png

FreeBSD-Instalation-10.png

FreeBSD-Instalation-11.png

FreeBSD-Instalation-12.png

FreeBSD-Instalation-13.png

FreeBSD-Instalation-14.png

FreeBSD-Instalation-15.png

FreeBSD-Instalation-16.png

FreeBSD-Instalation-17.png

FreeBSD-Instalation-18.png

FreeBSD-Instalation-19.png

FreeBSD-Instalation-20.png

FreeBSD-Instalation-21.png

FreeBSD-Instalation-22.png

FreeBSD-Instalation-23.png

FreeBSD-Instalation-24.png

FreeBSD-Instalation-25.png

FreeBSD-Instalation-26.png

FreeBSD-Instalation-27.png

FreeBSD-Instalation-28.png

FreeBSD-Instalation-29.png

FreeBSD-Instalation-30.png

FreeBSD-Instalation-31.png

FreeBSD-Instalation-32.png

FreeBSD-Instalation-33.png

FreeBSD-Instalation-34.png

FreeBSD-Instalation-35.png

FreeBSD-Instalation-36.png

FreeBSD-Instalation-37.png

FreeBSD-Instalation-38.png

FreeBSD-Instalation-39.png

FreeBSD-Instalation-40.png

Virtualisation

Virtualisation

Agent KVM

Installation de l'agent KVM

On peut installer l'agent de deux manières, le paquet ou bien la compilation par les ports.

pkg install -y qemu-guest-agent

Si vous utilisez les ports, il est trouvable via ce chemin

/usr/ports/emulators/qemu-guest-agent/

Modification du rc.conf pour que l'agent ce lance au démarrage.

echo 'qemu_guest_agent_enable="YES"' >> /etc/rc.conf
echo 'qemu_guest_agent_flags="-d -v -l /var/log/qemu-ga.log"' >> /etc/rc.conf

Lancer le service

service qemu-guest-agent start

 

Virtualisation

Agent vmware

L'installation ne ce fait que par les binaire

pkg install open-vm-tools-nox11 

Modification du rc.conf pour que l'agent ce lance au démarrage. 

echo 'vmware-guestd_enable="YES"' >> /etc/rc.conf

Source