• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Cpasjuste
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 17
    • Groups 0

    Cpasjuste

    @Cpasjuste

    2
    Reputation
    302
    Profile views
    17
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Cpasjuste Unfollow Follow

    Latest posts made by Cpasjuste

    • RE: FOG Docker image

      @88fingerslukee

      Well mate, you did a wonderfull job 🙂 The only thing that afraid me is maintenance. By not using the fog install script, you have to write your own installer, which could be hard to maintain in the future, i think.

      But to be clear, this is by far the best/cleanest work i’ve seen since a while (and i’ve seen a lot of them) :). I guess you did spent a lot of time on this. If i had found your work earlier, i would have, for sure, worked on it !

      posted in General
      C
      Cpasjuste
    • RE: FOG Docker image

      @Tom-Elliott said in FOG Docker image:

      @Cpasjuste if you have github you likely have ability to have copilot to help read the repo and help you build the README if you find it lacking.

      Just thoughts, but thanks for this.

      Hi @Tom-Elliott ! I’m not a big fan of ia but i should take a closer look someday 🙂

      posted in General
      C
      Cpasjuste
    • FOG Docker image

      Hi there !

      I’ve been working the last few days on a fog docker image. I think it have reached a point were it could be great for me to get some testing and report (especially with the unfs3 server). The image seems to work fine, but i did only test it in a small home lab, and didn’t try things like snapping, wol, ping host and such. Consider this a work in progress.

      I’m very bad at readme and such (boring!) but i did try to write a small one which should help to understand how it work (and the challenge behind this image). It is available on my github.

      I can’t wait for your feedback, and i hope you’ll like it ! In the meantime, here is a docker compose sample to get up and running in a few seconds (i hope!):

      services:
        fog:
          image: cpasjuste/fog
          restart: unless-stopped
          #privileged: true # for nfs-kernel-server mode
          environment:
            HTTP_ADDRESS: 192.168.0.83 # also used for ftp/tftp/nfs/...
            # you can use a custom http port, but storage "Node Disk Usage"
            # and "Bandwidth" graphs wont display correctly. 
            # this can be fixed with a reverse proxy (or use port 80)
            HTTP_PORT: ${HTTP_PORT:-9445}
            PHP_FPM_PORT: ${PHP_FPM_PORT:-9444} # listen on localhost, no need to open port in firewall
            WEB_PASSWORD: ${WEB_PASSWORD:-password} # web user (fog) password
            MYSQL_PASSWORD: ${MYSQL_PASSWORD:-dockerfogsql} # mysql user (fog) password
            # builtin storage (shell/nfs/ftp/tftp...) password
            # use alphanumeric because it is not handled correctly by fog (php?)
            STORAGE_PASSWORD: ${STORAGE_PASSWORD:-dockerfogstorage}
            USE_UNFS3: true # use userland nfs server (no need for privileged mode)
          volumes:
            - database:/var/lib/mysql
            - /images:/images # on host: sudo mkdir /images && chown -R 1000:1000 /images
            #- /lib/modules:/lib/modules:ro # for nfs-kernel-server mode
          network_mode: host # needed ports: https://github.com/Cpasjuste/docker-fog/blob/main/README.md
          
      volumes:
        database:
      
      posted in General
      C
      Cpasjuste
    • RE: Display errors on queued computers (Unicast)

      @Tom-Elliott

      Thanks and no problem, we know what we sign for when we use the devel branch 🙂 I’ll update in a few minutes and let you know.
      Edit: i confirm that it’s fixed.

      posted in FOG Problems
      C
      Cpasjuste
    • RE: Display errors on queued computers (Unicast)

      Just a little more information i just found : if i click the “force task to start” button in the “Task Management”, then the deploy task does start. By the way, if you need some testing just send me a mail. I do have a good linux and developement knowledge which may help to debug if needed.

      posted in FOG Problems
      C
      Cpasjuste
    • RE: Display errors on queued computers (Unicast)

      @Tom-Elliott sure, here it is ! So i create a basic task (deploy), then it just loop on the “attempting to check in”. This task did work fine (same machine/image) a few hours ago just before i update to latest git (svn).

      alt text

      posted in FOG Problems
      C
      Cpasjuste
    • RE: Display errors on queued computers (Unicast)

      Hi,

      Just a little message to say that i do have the same problem with SVN 6975 : i have an “attempting to check in” loop when trying to restore an image. It was working fine before i updated (i don’t remember which version i was previously but it was SVN 69xx).

      posted in FOG Problems
      C
      Cpasjuste
    • RE: Fog Svn 2784 Master image, multiple partition upload error/image registration error

      I can confirm that latest svn work fine.

      posted in FOG Problems
      C
      Cpasjuste
    • RE: Fog Svn 2784 Master image, multiple partition upload error/image registration error

      Cool, i’ll test right now. Don’t be sorry as we know what can happend if using svn 🙂

      posted in FOG Problems
      C
      Cpasjuste
    • RE: Fog Svn 2784 Master image, multiple partition upload error/image registration error

      Hi, i do have the same problem with svn 2785. I also have this error on installing now :
      [CODE] * Configuring Fresh Clam…cp: impossible d’évaluer «…/packages/clamav»: Aucun fichier ou dossier de ce type
      chmod: impossible d’accéder à «/opt/fog/clamav»: Aucun fichier ou dossier de ce type
      Failed!
      [/CODE]

      posted in FOG Problems
      C
      Cpasjuste