Hi Fabrice, Had a problem when upgrading. I renamed the file and continued. ln: failed to create symbolic link './pf-schema.sql': File exists
Still having an issue with my ServerName though I'll see if I can resolve it. AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 Fax: + 61 3 9829 9009E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au>
Website: http://www.movielink.net.auFor information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure.
This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author.
On 21/02/15 08:26, Fabrice DURAND wrote:
Hi Andrew, i have fixed the syntax in the last package, so just do a apt-get update and apt-get install packetfence. Also we probably can continue this thread on packetfence-de...@lists.sourceforge.net instead. Regards Fabrice Le 2015-02-19 22:21, Andrew Kirkland a écrit :Hi Fabrice, It seems a little more stable. I'll continue playing with the server next week. I noticed that memcache needs to be stopped before the httpd.admin can restarted successfully Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 Fax: + 61 3 9829 9009 E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 20/02/15 10:59, Fabrice DURAND wrote:Hi Andrew, i probably have to change the syntax of /usr/loca/pf/conf/httpd.conf.d/httpd.admin . I think that instead of : $IfVersion{">= 2.4"} = { SSLSessionCache => "shmcb:".$install_dir."/var/ssl_acache(512000)", Mutex => "file:".$install_dir."/var/ssl_mutex ssl-cache", SSLProtocol => "All -SSLv2 -SSLv3", SSLCipherSuite => "EECDH+AES:EDH+AES:-SHA1:EECDH+RC4:EDH+RC4:RC4-SHA:EECDH+AES256:EDH+AES256:AES256-SHA:!aNULL:!eNULL:!EXP:!LOW:!MD5", }; $IfVersion{"< 2.4"} = { SSLSessionCache => "shm:".$install_dir."/var/ssl_acache(512000)", SSLMutex => "file:".$install_dir."/var/ssl_mutex", SSLProtocol => "All -SSLv2", SSLCipherSuite => "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:ECDHE-RSA-RC4-SHA:ECDHE-ECDSA-RC4-SHA:AES128:AES256:RC4-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK", }; we have to do something like that: push @{ $IfVersion{">= 2.4"} }, { SSLSessionCache => "shmcb:".$install_dir."/var/ssl_acache(512000)", Mutex => "file:".$install_dir."/var/ssl_mutex ssl-cache", SSLProtocol => "All -SSLv2 -SSLv3", SSLCipherSuite => "EECDH+AES:EDH+AES:-SHA1:EECDH+RC4:EDH+RC4:RC4-SHA:EECDH+AES256:EDH+AES256:AES256-SHA:!aNULL:!eNULL:!EXP:!LOW:!MD5", }; push @{ $IfVersion{"< 2.4"} }, { SSLSessionCache => "shm:".$install_dir."/var/ssl_acache(512000)", SSLMutex => "file:".$install_dir."/var/ssl_mutex", SSLProtocol => "All -SSLv2", SSLCipherSuite => "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:ECDHE-RSA-RC4-SHA:ECDHE-ECDSA-RC4-SHA:AES128:AES256:RC4-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!PSK", }; Can you try this ? Regards Fabrice Le 2015-02-19 17:24, Andrew Kirkland a écrit :Hi Fabrice, I've had issues with staring the httpd services. every now and then it won't start with this error. It happens with the other httpd services as well. Strange thing is that it not always happening, but around 75% of the time. If I keep retrying it eventually starts. sudo /usr/local/pf/bin/pfcmd service httpd.admin restart service|command httpd.admin|already stopped memcached|already started AH00526: Syntax error on line 101 of /usr/local/pf/conf/httpd.conf.d/httpd.admin: $parms->add_config() has failed: Expected </IfVersion> before end of configuration at /usr/lib/perl5/Apache2/PerlSections.pm line 215.\n httpd.admin|not started Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 Fax: + 61 3 9829 9009 E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 19/02/15 00:58, Fabrice DURAND wrote:Hello Andrew, i was able to replicate the issue. Can you do : mkdir /usr/local/pf/var/ssl_mutex /usr/local/pf/bin/pfcmd service httpd.admin restart and let me know if it works ? Regards Fabrice Le 2015-02-17 21:41, Andrew Kirkland a écrit :I have just re-installed packetfence in Ubuntu 14.04 Here's what I get when trying to restart... * Restarting packetfence service|command dhcpd|already stopped httpd.aaa|already stopped httpd.admin|already stopped httpd.portal|already stopped httpd.proxy|already stopped httpd.webservices|already stopped iptables|already stopped pfbandwidthd|already stopped pfdetect|already stopped pfdns|already stopped pfmon|already stopped pfsetvlan|already stopped radiusd|already stopped snmptrapd|already stopped snort|already stopped suricata|already stopped memcached|stop Failed to open /usr/local/pf/conf/pf.conf: No such file or directory at /usr/share/perl5/CHI/Driver.pm line 546. service|command memcached|start AH00526: Syntax error on line 101 of /usr/local/pf/conf/httpd.conf.d/httpd.admin: $parms->add_config() has failed: Invalid Mutex directory in argument file:/usr/local/pf/var/ssl_mutex at /usr/lib/perl5/Apache2/PerlSections.pm line 215.\n httpd.admin|not started Checking configuration sanity... FATAL - please define exactly one management interface FATAL - internal network(s) not defined! FATAL - Unable to connect to your database. Please verify your connection settings in conf/pf.conf and make sure that it is started. FATAL - networks.conf cannot be empty when services.dhcpd is enabled WARNING - We have been unable to load your configuration. Are you sure you ran configurator ? And with Boris's ls commands: andrewk@pf-dev1:~$ ls -ld /usr/local/pf/conf/pf.conf ls: cannot access /usr/local/pf/conf/pf.conf: No such file or directory andrewk@pf-dev1:~$ ls -ld /usr/local/pf/conf/ drwxrwsr-x 11 pf pf 4096 Feb 18 13:37 /usr/local/pf/conf/ andrewk@pf-dev1:~$ ls -ld /usr/local/pf/ drwxr-xr-x 14 pf pf 4096 Feb 18 13:30 /usr/local/pf/ I can't run the configurator since the apache httpd.admin won't start Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 Fax: + 61 3 9829 9009 E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 18/02/15 12:36, Durand fabrice wrote:And do you have the same issue with: Invalid Mutex ? Regards Fabrice Le 2015-02-17 20:12, Andrew Kirkland a écrit :Ignore my last email. I had the wrong packetfence.list setup... D'oh Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 Fax: + 61 3 9829 9009 E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 18/02/15 12:07, Andrew Kirkland wrote:Hi All, I've just done a fresh install of Ubuntu 14.04 LTS, update, upgrade etc and then tried to install packetfence. This is what I get this time around: sudo apt-get install packetfence Reading package lists... Building dependency tree... Reading state information... Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: packetfence : *Depends: apache2.2-common but it is not installable* Depends: libapache-ssllookup-perl but it is not going to be installed Depends: libiptables-libiptc-perl but it is not going to be installed Depends: libdata-swap-perl but it is not going to be installed Depends: liblinux-fd-perl but it is not going to be installed Depends: libsereal-encoder-perl but it is not going to be installed Depends: libsereal-decoder-perl but it is not going to be installed Depends: libdata-serializer-sereal-perl (>= 1.04) but it is not going to be installed Depends: libposix-2008-perl but it is not going to be installed Depends: libdata-messagepack-stream-perl but it is not going to be installed Depends: libdata-messagepack-perl but it is not going to be installed Depends: libauthen-htpasswd-perl but it is not going to be installed Depends: libcatalyst-authentication-store-htpasswd-perl but it is not going to be installed Depends: libhtml-formhandler-perl (<= 0.40016) but 0.40050-2 is to be installed Depends: libchi-perl (>= 0.59) but it is not going to be installed Depends: libchi-driver-memcached-perl but it is not going to be installed Depends: libcache-memcached-getparserxs-perl but it is not going to be installed Depends: libnet-dns-perl (= 0.66-3) but 0.68-1.2build1 is to be installed PreDepends: freeradius (>= 2.2.5) but it is not going to be installed PreDepends: freeradius-ldap but it is not going to be installed PreDepends: freeradius-postgresql but it is not going to be installed PreDepends: freeradius-mysql but it is not going to be installed PreDepends: freeradius-krb5 but it is not going to be installed Recommends: snort but it is not going to be installed or suricata but it is not going to be installed E: Unable to correct problems, you have held broken packages. Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 Fax: + 61 3 9829 9009 E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 18/02/15 10:04, Boris Epstein wrote:Hello Andrew, Can you run ls -ld /usr/local/pf/conf/pf.conf ls -ld /usr/local/pf/conf/ ls -ld /usr/local/pf/ and share the output? Boris. On Tue, Feb 17, 2015 at 5:28 PM, Andrew Kirkland <andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au>> wrote: Hi All, Ok, I got packetfence installed but it won't start. Failed to open /usr/local/pf/conf/pf.conf: No such file or directory at /usr/share/perl5/CHI/Driver.pm line 546. service|command memcached|start AH00526: Syntax error on line 101 of /usr/local/pf/conf/httpd.conf.d/httpd.admin: $parms->add_config() has failed: Invalid Mutex directory in argument file:/usr/local/pf/var/ssl_mutex at /usr/lib/perl5/Apache2/PerlSections.pm line 215.\n httpd.admin|not started Checking configuration sanity... FATAL - please define exactly one management interface FATAL - internal network(s) not defined! FATAL - Unable to connect to your database. Please verify your connection settings in conf/pf.conf and make sure that it is started. FATAL - networks.conf cannot be empty when services.dhcpd is enabled WARNING - We have been unable to load your configuration. Are you sure you ran configurator ? Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 <tel:%2B%2061%203%209829%209000> Fax: + 61 3 9829 9009 <tel:%2B%2061%203%209829%209009> E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 18/02/15 03:12, Hagenbucher, David wrote:------------------------------------------------------------------------------Thefreeradius part oft the installation completes if you set allow_vulnerable_openssl = yes in your /etc/freeradius/radiusd.conf and repeat the „sudo apt-get install packetfence“ part oft he installation routine. Kind regards, David *Von:*Fabrice Durand [mailto:fdur...@inverse.ca] *Gesendet:* Dienstag, 17. Februar 2015 11:14 *An:* packetfence-users@lists.sourceforge.net <mailto:packetfence-users@lists.sourceforge.net> *Betreff:* Re: [PacketFence-users] Installing packetfence on ubuntu 14.04LTS problem It is freeradius the issue, let's do a freeradius -X to solve the issue Le 17 février 2015 00:10:34 GMT-05:00, Andrew Kirkland <andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au>> a écrit : No luck with installing this. Lots of FreeRADIUS errors while trying to install packetfence. Reading package lists... Building dependency tree... Reading state information... The following packages were automatically installed and are no longer required: libice6 libsm6 libxaw7 libxmu6 libxt6 x11-common Use 'apt-get autoremove' to remove them. Recommended packages: snort suricata The following NEW packages will be installed: packetfence 0 to upgrade, 1 to newly install, 0 to remove and 15 not to upgrade. 467 not fully installed or removed. Need to get 0 B/25.6 MB of archives. After this operation, 64.9 MB of additional disk space will be used. Setting up freeradius-ldap (2.2.6) ... * Checking FreeRADIUS daemon configuration... ...fail! invoke-rc.d: initscript freeradius, action "force-reload" failed. dpkg: error processing package freeradius-ldap (--configure): subprocess installed post-installation script returned error exit status 1 Setting up freeradius-postgresql (2.2.6) ... * Checking FreeRADIUS daemon configuration... ...fail! invoke-rc.d: initscript freeradius, action "force-reload" failed. dpkg: error processing package freeradius-postgresql (--configure): subprocess installed post-installation script returned error exit status 1 Setting up freeradius-mysql (2.2.6) ... * Checking FreeRADIUS daemon configuration... ...fail! invoke-rc.d: initscript freeradius, action "force-reload" failed. dpkg: error processing package freeradius-mysql (--configure): subprocess installed post-installation script returned error exit status 1 Setting up freeradius-krb5 (2.2.6) ... * Checking FreeRADIUS daemon configuration... ...fail! invoke-rc.d: initscript freeradius, action "force-reload" failed. dpkg: error processing package freeradius-krb5 (--configure): subprocess installed post-installation script returned error exit status 1 No apport report written because MaxReports is reached already Errors were encountered while processing: freeradius-ldap freeradius-postgresql freeradius-mysql freeradius-krb5 E: Sub-process /usr/bin/dpkg returned an error code (1) Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 <tel:%2B%2061%203%209829%209000> Fax: + 61 3 9829 9009 <tel:%2B%2061%203%209829%209009> E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 17/02/15 08:45, Andrew Kirkland wrote: I've got a devel server here ready to try it on. I'll have a play and see how it goes. Kind regards Andrew Kirkland Developer Movielink Pty Ltd Phone: + 61 3 9829 9000 <tel:%2B%2061%203%209829%209000> Fax: + 61 3 9829 9009 <tel:%2B%2061%203%209829%209009> E-mail: andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> Website: http://www.movielink.net.au For information on our NEW Broadband Laptop Connect product with Wi Fi please ask for an information brochure. This message, together with any attachment is intended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author. On 17/02/15 05:00, Fabrice DURAND wrote: Ok where we go for trusty:/etc/apt/sources.list.d/packetfence.list:debhttp://inverse.ca/downloads/PacketFence/debian-feature-ubuntu-14.04trusty trustysudo apt-key adv --keyserverkeys.gnupg.net<http://keys.gnupg.net> --recv-key 0x810273C4sudo apt-get updatesudo apt-get install packetfenceThis version is based on devel which is stable + fewbug fix, please test it and let me know what is wrong.RegardsFabriceLe 2015-02-15 17:15, Andrew Kirkland a écrit :Hi Fabrice,That's great news! I look forward to testing thiswhen it's ready.Kind regardsAndrew KirklandDeveloper Movielink Pty Ltd Phone:+ 61 3 9829 9000 <tel:%2B%2061%203%209829%209000> Fax:+ 61 3 9829 9009 <tel:%2B%2061%203%209829%209009> E-mail:andrew.kirkl...@movielink.net.au <mailto:andrew.kirkl...@movielink.net.au> <mailto:andrew.kirkl...@movielink.net.au> <mailto:andrew.kirkl...@movielink.net.au> Website:http://www.movielink.net.auFor information on our NEW Broadband LaptopConnect product with Wi Fi please ask for an information brochure.This message, together with any attachment isintended for the named recipient only and may contain information that is legally privileged and confidential. If you are not the intended recipient, please be informed that any dissemination, distribution or copying of this message is strictly prohibited. If you have received this communication in error, please return it to the sender and delete the original message and any copy of it from your computer system. Any views or opinions presented are solely those of the author.On 14/02/15 09:56, Durand fabrice wrote:Hello All,i got time today to continue and i have beenable to start all the packetfence´s services.https://github.com/inverse-inc/packetfence/compare/feature/ubuntu-14.04Next week i will create a new repo with allthe dependencies and with the devel version of packetfence.So you will be able to test.RegardsFabriceLe 2015-01-30 08:36, Fabrice DURAND a écrit :Hello All,just some news about PacketFence onUbuntu 14.04. All the dependencies has been built on Trusty, i need to test the installation of packetfence and fix the dependencies of pf (Apache 2.4, ...) and probably change the syntax of Apache configuration file.It´s on the way.RegardsFabriceLe 2015-01-06 10:25, Earl Robinson a écrit :Thanks Fabrice,I'll keep an eye out for your newbranch, and see if I can help get things going.-earlOn Mon, Jan 5, 2015 at 8:49 AM,Fabrice DURAND <fdur...@inverse.ca <mailto:fdur...@inverse.ca> <mailto:fdur...@inverse.ca> <mailto:fdur...@inverse.ca>> wrote:Hi Earl,i think they are more than just apache 2.4 as trouble. What i will do first is to create a new github branch like feature/ubuntu-14.04 and make the change in it. Then i will retry to build it.RegardsFabriceLe 2014-12-30 14:24, EarlRobinson a écrit : > Fabrice was addressing this issue back in May (seehttp://sourceforge.net/p/packetfence/mailman/message/32355127/),but > apparently ran into some troubles building the packages for 14.04. > I've had similar luck as you on 14.04 which is to say very little. My > first take at troublehooting is that the 12.04 package wants apache > 2.2 but 140.4 comes with apache 2.4. So if the package and scripts are > updated to work with apache 2.4 that may get us past the initial errors. > > Hey Fabrice, I'd also like to have 14.04 up an running as a supported > platform, is there some way I can help you with the packages? > > Thanks, > Earl > > On Thu, Dec 11, 2014 at 1:50 PM, Krzysztof Adamski <kadam...@yorku.ca <mailto:kadam...@yorku.ca> <mailto:kadam...@yorku.ca> <mailto:kadam...@yorku.ca> > <mailto:kadam...@yorku.ca <mailto:kadam...@yorku.ca> <mailto:kadam...@yorku.ca>>> wrote: > > Hi, > > I'm trying to install the packetfence software on a clean install > of ubuntu 14.04 LTS (trusty). > I'm following the instruction >http://www.packetfence.org/support/faqs/article/how-to-install-packetfence-on-ubuntu.html> > It is not working, is 14.04 LTS supported by packetfence? > > Thanks > -- > *Krzysztof Adamski* | *Network Development* |*University > Information Technology* > 010 Steacie Science and Engineering Library | York University | > 4700 Keele St. , Toronto ON Canada M3J 1P3 > T:+1.416.736.2100 x22675 <tel:%2B1.416.736.2100%20x22675> <tel:%2B1.416.736.2100%20x22675> <tel:%2B1.416.736.2100%20x22675> | F: >+1.416.736.5830 <tel:%2B1.416.736.5830> <tel:%2B1.416.736.5830> <tel:%2B1.416.736.5830> |kadam...@yorku.ca <mailto:kadam...@yorku.ca> <mailto:kadam...@yorku.ca> <mailto:kadam...@yorku.ca> > <mailto:kadam...@yorku.ca <mailto:kadam...@yorku.ca> <mailto:kadam...@yorku.ca>> | www.yorku.ca <http://www.yorku.ca> <http://www.yorku.ca> <http://www.yorku.ca> <http://www.yorku.ca> <http://www.yorku.ca> > > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and > Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration > & more > Get technology previously reserved for billion-dollar > corporations, FREE >http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk> _______________________________________________ > PacketFence-users mailing listPacketFence-users@lists.sourceforge.net<mailto:PacketFence-users@lists.sourceforge.net><mailto:PacketFence-users@lists.sourceforge.net><mailto:PacketFence-users@lists.sourceforge.net> > <mailto:PacketFence-users@lists.sourceforge.net<mailto:PacketFence-users@lists.sourceforge.net><mailto:PacketFence-users@lists.sourceforge.net>>https://lists.sourceforge.net/lists/listinfo/packetfence-users> > > > >------------------------------------------------------------------------------> Dive into the World of Parallel Programming! The Go Parallel Website, > sponsored by Intel and developed in partnership with Slashdot Media, is your > hub for all things parallel software development, from weekly thought > leadership blogs to news, videos, case studies, tutorials and more. Take a > look and join the conversation now. http://goparallel.sourceforge.net > > > _______________________________________________ > PacketFence-users mailing listPacketFence-users@lists.sourceforge.net<mailto:PacketFence-users@lists.sourceforge.net><mailto:PacketFence-users@lists.sourceforge.net><mailto:PacketFence-users@lists.sourceforge.net>--https://lists.sourceforge.net/lists/listinfo/packetfence-usersFabrice Durand fdur...@inverse.ca <mailto:fdur...@inverse.ca> <mailto:fdur...@inverse.ca> <mailto:fdur...@inverse.ca> ::+1.514.447.4918 <tel:%2B1.514.447.4918> <tel:%2B1.514.447.4918> (x135) ::www.inverse.ca <http://www.inverse.ca> <http://www.inverse.ca> <http://www.inverse.ca> Inverse inc. :: Leaders behind SOGo (http://www.sogo.nu) and PacketFence (http://packetfence.org)------------------------------------------------------------------------------Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now.http://goparallel.sourceforge.net_______________________________________________PacketFence-users mailing listPacketFence-users@lists.sourceforge.net<mailto:PacketFence-users@lists.sourceforge.net><mailto:PacketFence-users@lists.sourceforge.net><mailto:PacketFence-users@lists.sourceforge.net>https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now.http://goparallel.sourceforge.net_______________________________________________PacketFence-users mailing listPacketFence-users@lists.sourceforge.net<mailto:PacketFence-users@lists.sourceforge.net>https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now.http://goparallel.sourceforge.net/_______________________________________________PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net>https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now.http://goparallel.sourceforge.net/_______________________________________________PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net>https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now.http://goparallel.sourceforge.net/_______________________________________________PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net>https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREEhttp://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk_______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net>https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREEhttp://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk_______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net>https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREEhttp://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk ------------------------------------------------------------------------PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/packetfence-users -- Envoyé de mon téléphone Android avec K-9 Mail. Excusez la brièveté.------------------------------------------------------------------------Klinikum Nürnberg, Sitz: Nürnberg, Amtsgericht Nürnberg -Registergericht- HRA 14190, Vorstand: Dr. Alfred Estelmann------------------------------------------------------------------------------Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREEhttp://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk_______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/packetfence-usersDownload BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREEhttp://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk_______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net <mailto:PacketFence-users@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/packetfence-users ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk _______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users
------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk
_______________________________________________ PacketFence-users mailing list PacketFence-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/packetfence-users