# Bootstrap failed with exit code 128

**URL:** <https://meta.discourse.org/t/bootstrap-failed-with-exit-code-128/373873>\
**Category:** Self-hosting\
**Created:** [July 11, 2025, 12:39pm UTC](https://meta.discourse.org/t/bootstrap-failed-with-exit-code-128/373873 "2025-07-11T12:39:12Z")\
**Posts on this page:** 1\
**Showing post:** 5

<div class="post-metadata">

**Author:** ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)\
**Post date:** [July 11, 2025, 2:16pm UTC](https://meta.discourse.org/t/bootstrap-failed-with-exit-code-128/373873/5 "2025-07-11T14:16:42Z")

</div>

what does `free -h` return?

> [@Ethsim2](#):
>
> I have over 100GB of SSD space available- how do i officially allocate swap?

Swap uses some of your SSD as (very slow) RAM.

```plaintext
      install -o root -g root -m 0600 /dev/null /swapfile
      fallocate -l 2G /swapfile
      mkswap /swapfile
      swapon /swapfile
      echo "/swapfile swap swap auto 0 0" | tee -a /etc/fstab
      sysctl -w vm.swappiness=10
      echo 'vm.swappiness = 10' > /etc/sysctl.d/30-discourse-swap.conf

```

---

_[View the full topic](https://meta.discourse.org/t/bootstrap-failed-with-exit-code-128/373873)._
