What's new

New messages New topics Systems Serverfiles 3D Models Web Scripting

[FULL TUTORIAL] How to Install FreeBSD on an OVH Dedicated Server

RESOURCES HUB

Premium
📅 Joined Jul 22, 2025
💬 Messages 201
👍 Thanks 1,428
🏆 Points 425
📍 Location London
🌐 Website metin2global.to

[FULL TUTORIAL] How to Install FreeBSD on an OVH Dedicated Server​


This guide explains step-by-step how to install FreeBSD on an OVH machine using the OVH Control Panel.


This tutorial works for:


  • OVH Dedicated Servers
  • SoYouStart
  • Kimsufi



1️⃣ Login to OVH Control Panel​


  1. Go to: https://www.ovh.com/manager/
  2. Login to your account
  3. Go to:

Bare Metal Cloud → Dedicated Servers
4. Select your server




2️⃣ Switch to Rescue Mode​


Before installing FreeBSD, enable Rescue Mode.


  1. Go to Netboot
  2. Select:

Linux Rescue (64bit)
3. Click Apply
4. Reboot the server


After reboot, OVH will send you an email with:


  • Rescue IP
  • Root password



3️⃣ Connect to Rescue Mode (SSH)​


From your PC, connect via SSH:


Code:
ssh root@YOUR_SERVER_IP


Enter the rescue password from email.


Now you are inside the temporary rescue system.




4️⃣ Partition the Disk (Optional – Clean Install)​


Check disks:


Code:
lsblk


Usually disk is:


Code:
/dev/sda


If you want to completely wipe it:


⚠ WARNING: This deletes everything.


Code:
dd if=/dev/zero of=/dev/sda bs=1M count=100




5️⃣ Install FreeBSD from OVH Template (EASIEST METHOD)​


The easiest way is using OVH's template system.


Go back to OVH Panel:


  1. Dedicated Server → Your Server
  2. Click Install
  3. Choose:

FreeBSD 13 (recommended)
or
FreeBSD 12 (older but common for Metin2)


  1. Partition scheme:

  • Use entire disk
  • Standard layout

  1. Hostname → example:

Code:
mt2.yourdomain.com


  1. Set root password
  2. Confirm installation

Wait 5–15 minutes.




6️⃣ Boot into FreeBSD​


After installation completes:


  1. Go to Netboot
  2. Select:

Boot on Hard Disk
3. Reboot the server


Now connect:


Code:
ssh root@YOUR_SERVER_IP


You are now inside FreeBSD 🎉




7️⃣ First Configuration After Install​


Update system:


Code:
freebsd-update fetch
freebsd-update install


Update packages:


Code:
pkg update
pkg upgrade -y




8️⃣ Set Timezone​


Code:
tzsetup


Select your region.




9️⃣ Enable SSH at Boot (Usually Already Enabled)​


Code:
sysrc sshd_enable="YES"
service sshd start




🔟 Recommended Settings for Metin2​


Enable Linux compatibility (needed for some binaries):


Code:
kldload linux
sysrc linux_enable="YES"


Install basic tools:


Code:
pkg install nano bash gmake wget screen
 

Latest posts

shape1
shape2
shape3
shape4
shape5
shape6
Top