Chris230291
Patron
- Joined
- Mar 21, 2012
- Messages
- 300
Hello. I am trying to run SteamCMD in a portjail.
I have already successfully installed bash, linux_base-c6 and the SteamCMD itself.
I have found a script someone has made to launch SteamCMD in FreeBSD. However when I try to run it I get
I did a google search which turned up this guide
I followed it and restarted my Jail but I am still getting the same message. I did try changing "#!/bin/sh" to "#!/usr/bin/env bash", but that did not work.
Can anyone help me this? From what I read online I need to tell the Jail to load PC specs on start. I'm a novice at all of this though, but hopefully you guys can help. I've just tried to provide as much info as I can.
Cheers,
Chris.
I have already successfully installed bash, linux_base-c6 and the SteamCMD itself.
I have found a script someone has made to launch SteamCMD in FreeBSD. However when I try to run it I get
Code:
root@ArmA:/home/steam # ./steamcmd_freebsd.sh Unable to determine CPU Frequency. Try defining CPU_MHZ.
I did a google search which turned up this guide
I created a script to run it at startup:
Code:
cd /usr/local/etc/rc.d/
nano linmount
add the following lines:
Code:
#!/bin/sh
mount -t linprocfs linproc &
Then close the file (be sure to save the changes!).
Also, be sure to chmod +x linmount
next
Code:
nano /etc/rc.conf
add the following line:
Code:
linmount_enable="YES"
I followed it and restarted my Jail but I am still getting the same message. I did try changing "#!/bin/sh" to "#!/usr/bin/env bash", but that did not work.
Can anyone help me this? From what I read online I need to tell the Jail to load PC specs on start. I'm a novice at all of this though, but hopefully you guys can help. I've just tried to provide as much info as I can.
Cheers,
Chris.