Created
April 19, 2019 09:13
-
-
Save iKlotho/212bb34644aa65be76130508398f1bf6 to your computer and use it in GitHub Desktop.
Moving FreeSWITCH Core.db to Ramdisk in FreeBSD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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