Project

General

Profile

Support #816

Updated by Daniel Curtis almost 8 years ago

This is a guide on how to setup a Quassel Core server on FreeBSD 10. 

 h2. Prepare the Environment 

 * Make sure the system is up to date: 
 <pre> 
 pkg update && pkg upgrade 
 </pre> 

 * Make sure the ports tree is up to date: 
 <pre> 
 portsnap fetch extract 
 </pre> 

 * Install portmaster to make installing ports easier: 
 <pre> 
 pkg install portmaster 
 </pre> 

 h2. Install Quassel Core 

 * Install quassel from ports: 
 <pre> 
 portmaster irc/quassel 
 </pre> 
 #* *NOTE*: Make sure to unset *[ ]MONO* and *[ ]CLIENT* when configuring quassel. 

 * Enable quassel at boot: 
 <pre> 
 echo 'quasselcore_enable="YES"' >> /etc/rc.conf 
 </pre> 

 * Generate an SSL certificate: 
 <pre> 
 service quasselcore keygen 
 </pre> 

 * Start quasselcore: 
 <pre> 
 service quasselcore start 
 </pre> 

 *NOTE*: Quassel runs on port 4242, make sure the port is open on your firewall. 

 h2. Resources 

 * https://www.freshports.org/irc/quassel/ 
 * https://wiki.archlinux.org/index.php/Quassel

Back