mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 11:17:35 -05:00
31 lines
835 B
Plaintext
31 lines
835 B
Plaintext
---
|
|
sidebar_position: 3
|
|
sidebar_label: FreeBSD
|
|
description: |-
|
|
Install OpenTofu on FreeBSD.
|
|
---
|
|
|
|
import CodeBlock from '@theme/CodeBlock';
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
import ApkConvenienceScript from '!!raw-loader!./examples/alpine-convenience.sh'
|
|
import ApkManualScript from '!!raw-loader!./examples/alpine-manual.sh'
|
|
|
|
# Installing OpenTofu on FreeBSD
|
|
|
|
OpenTofu is available for FreeBSD and can be installed using the [pkg](https://pkgs.org/download/opentofu) and [port](https://cgit.freebsd.org/ports/commit/?id=f49b835b51fd5d92138706c32523c6f361740eac) system or by downloading the package directly.
|
|
|
|
## Installing using the pkg
|
|
|
|
```bash
|
|
pkg update -f
|
|
pkg install opentofu
|
|
```
|
|
|
|
## Installing the port
|
|
|
|
```bash
|
|
portsnap fetch extract
|
|
make -C /usr/ports/sysutils/opentofu install clean
|
|
```
|