Search results

  1. blodan

    HOWTO: Install Tensorflow on FreeBSD

    Unfortunately I haven't managed to get the master of their github repo to work on FreeBSD after 1.1 I have submitted a few PR's that has been merged to get it to compile but when trying to use the current master it segfaults in a lib regarding numCpu's where I'm currently stuck and haven't had...
  2. blodan

    HOWTO: Install Tensorflow on FreeBSD

    Awesome work, can't wait for it to be commited to the tree! :)
  3. blodan

    HOWTO: Install Tensorflow on FreeBSD

    Not everyone has that big of a workload you need to run it on a GPU, we are running Tensorflow in CPU mode and by compiling it on FreeBSD I can use our current infrastructure for it. If we reach such a huge load we need to start using GPU:s I'm totally going ubuntu on that cluster as thats the...
  4. blodan

    HOWTO: Install Tensorflow on FreeBSD

    Yes it is, just install the py36- packages intead of py27-, I'm not sure if you need to roll your own poudriere repo for that to work though. I'm running it on python 3.6 myself and it works fine, however I roll my own poudriere repo with DEFAULT_VERSIONS= python=3.6
  5. blodan

    HOWTO: Install Tensorflow on FreeBSD

    You need FreeBSD 11.0-RELEASE or later for it to compile and work properly. The problem is you need clang 3.8 or later (you have clang 3.4 in fbsd 10.3) I've updated the howto with that particular info.
  6. blodan

    HOWTO: Install Tensorflow on FreeBSD

    I had quite a pain trying to compile Tensorflow so here is a guide including patches. First off, you need clang 3.8 or later (That means you need FreeBSD 11.0-RELEASE or later) Guide last updated 2017-06-05 to work with Tensorflow 1.1.0 Let's start by switching your pkg repo to latest...
  7. blodan

    HOWTO: Stop nginx + php-fpm from truncating your stack trace/error message

    This one took me quite a while to figure out so hopefully someone will have use of this post. As you are here, you have probably already figured out that your stack traces/error messages are being truncated at 1024 characters/bytes and that the nginx recompile solution out there does not help...
  8. blodan

    Forums Migration

    LOL! What a surprise entering the forums that had completely changed. I'm sure you are already on it but if not, I'm still seeing some old syntax not working properly, i.e in this post: viewtopic.php?f=39&t=39186
  9. blodan

    HOWTO: Installing FastDFS

    So far it's been working great in production, unfortunately I have no stats to show but it's a pretty busy environment. I'm using it for web-content storing so everything is uploaded with PHP through the extension and accessed through Nginx. My setup isn't that big, it's only a 3.5 TB volume...
  10. blodan

    HOWTO: Installing FastDFS

    Introduction FastDFS is a high performance distributed file system (DFS). Its major functions include: file storing, file syncing and file accessing, and design for high capacity and load balancing. You may not mount a FastDFS volume directly to FreeBSD, however, you can access the volume(s)...
  11. blodan

    HOWTO Connect your FreeBSD gateway to Telefonica/Moviestar fiber/dsl over pppoe

    Sorry for the late reply. I set this up in our Spanish office so I don´t have access to the model of the modem, all I know is that it's a white modem that has Movistar on it with a fibre cable connected to it. Here's a picture of it:
  12. blodan

    HOWTO Connect your FreeBSD gateway to Telefonica/Moviestar fiber/dsl over pppoe

    That I don't know, I can't access it. I received it when they installed the fibre cable to our office and I have no access to the modem itself, only the router they included which I managed to get the authname and password from when I downloaded a backup of the configuration.
  13. blodan

    HOWTO Connect your FreeBSD gateway to Telefonica/Moviestar fiber/dsl over pppoe

    So I've spent a few hours to figure this one out, finally I found a blogpost how to get it going with a Cisco router so I bruteforced the configuration over to my FreeBSD gateway :) em0 in this case is the network card I have connected to the Telefonica/Moviestar modem. The traffic from...
  14. blodan

    HOWTO Get your LSI SAS2004/SAS2008 raid card integrated prop

    As you are here, you have probably noticed there is no userland tool to check the RAID/volume status of a LSI SAS2004/SAS2008 card out of the box. Here is how to get it working! (This probably works for all LSI cards that uses the built in mps driver, I have NOT tried all of them though)...
  15. blodan

    Non primary harddrive timeout causing panic

    I overloaded a harddrive today and received this dump in the message log: Mar 17 11:30:11 gramse kernel: panic: vm_fault: fault on nofault entry, addr: ffffff8233d81000 Mar 17 11:30:11 gramse kernel: cpuid = 5 Mar 17 11:30:11 gramse kernel: KDB: stack backtrace: Mar 17 11:30:11 gramse kernel...
  16. blodan

    Any one know where to report gmail errors?

    Hi! I have found a bug in gmail's verification of SPF records for IPv6 IPs, does anyone know where one can report these kind of things? I have browsed around their help pages for some time now and can't find a single form to fill out about this so I am checking around if anyone knows where to...
  17. blodan

    Problem routing through openvpn out through ext_if on another server

    Yay, got a solution from mokomull on ##freebsd Here's what needed to be done in my scenario, this example is for whatsmyip.org: add a route to fw telling fw to route traffic for whatsmyip.org to the vpn route add 208.79.0.0/16 10.0.2.14 Now this sends the traffic to tun0 on fw which I had...
  18. blodan

    Problem routing through openvpn out through ext_if on another server

    Routing traffic through openvpn out on a client [ merged topic -- Mod. ] Hi guys! This is a pretty advanced setup so bear with me when reading through my description :) To illustrate my setup I have made this image where the red arrows are the route I do not manage to accomplish whereas all...
  19. blodan

    Assigning huge IPv6 block to network interface not possible?

    Hi! I thought I would ask this question before actually going through with it as it seems so stupid it possibly can not be true. In IPv4 you can assign a ip-range with this in your rc.conf ipv4_addrs_re0="x.x.x.2-254/24" Now what I have figured out is that it´s not possible to bind...
  20. blodan

    mod_fcgid cannot allocate memory

    Your package installation probably installed mod_php without you knowing it. Easiest way do know if it is a PHP problem or not is to just comment PHP in your apache config (/usr/local/etc/apache22/httpd.conf) then restart apache and check if the error still occurs. If so, it is probably a php...
Back
Top