2020-04-28 17:29:52 +02:00
|
|
|
---
|
2021-03-11 21:24:10 +01:00
|
|
|
title: "Clean FreeBSD install does not boot"
|
2020-04-28 17:29:52 +02:00
|
|
|
date: 2018-01-02
|
2021-03-11 21:24:10 +01:00
|
|
|
description: How to fix a clean install that refuses to boot
|
|
|
|
tags:
|
|
|
|
- FreeBSD
|
2020-04-28 17:29:52 +02:00
|
|
|
---
|
|
|
|
|
2021-03-11 21:24:10 +01:00
|
|
|
## How to fix
|
|
|
|
|
2020-04-28 17:29:52 +02:00
|
|
|
I installed a fresh FreeBSD server today, and to my surprise it refused to boot. I had to do the following from my liveUSB :
|
|
|
|
|
|
|
|
{{< highlight yaml >}}
|
|
|
|
gpart set -a active /dev/ada0
|
|
|
|
gpart set -a bootme -i 1 /dev/ada0
|
|
|
|
{{< /highlight >}}
|