Skip to content

Instantly share code, notes, and snippets.

@iKlotho
Created April 19, 2019 09:13
Show Gist options
  • Save iKlotho/212bb34644aa65be76130508398f1bf6 to your computer and use it in GitHub Desktop.
Save iKlotho/212bb34644aa65be76130508398f1bf6 to your computer and use it in GitHub Desktop.
Moving FreeSWITCH Core.db to Ramdisk in FreeBSD
vim /etc/fstab
# Device Mountpoint FStype Options Dump Pass#
/dev/da0a / ufs rw 1 1
tmpfs /usr/local/freeswitch/ramdisk tmpfs rw 0 0 *** add this line to your file
/dev/da0b none swap sw 0 0
create ramdisk folder in freeswitch directory (mkdir ramdisk)
sudo mount -a
voila!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment