• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Deimos
    D
    • Profile
    • Following 1
    • Followers 0
    • Topics 10
    • Posts 69
    • Best 3
    • Controversial 0
    • Groups 0

    Deimos

    @Deimos

    3
    Reputation
    528
    Profile views
    69
    Posts
    0
    Followers
    1
    Following
    Joined Last Online

    Deimos Unfollow Follow

    Best posts made by Deimos

    • RE: FOG 1.5.0 RC 10

      @sebastian-roth said in FOG 1.5.0 RC 10:

      @loosus456 said in FOG 1.5.0 RC 10:

      But you can’t blame people for thinking that it’s dead when there is zero communication for over two months.

      This is just not fair! Why would we still answer questions on the forums on a daily basis if this project would be dead?! Can’t believe you just said that. About the rest see Tom’s announcement…

      150/5000
      FOG lives, evolves and we can all be grateful for this free, easy and reliable method of cloning. That has to be said.

      posted in Announcements
      D
      Deimos
    • RE: peculiar search results in the host search

      I think the hostname policy of our company is the problem. We use year numbers and consecutive numbering as names for the hosts. And exactly in the query with one of the consecutive numbers results in several results of the query. Just there.
      If I enter the entire name, it will only display that one host.
      The case can be marked as solved.
      Thank you for your cooperation.

      posted in FOG Problems
      D
      Deimos
    • RE: Installation stops during setting up fogproject password

      I browsed the forum a bit and found this problem:

      Pw fails on new Centos7

      Sebastian Roth: *Screw this !!! I think this was because I have not properly disabled SElinux on that machine! Really strange that this would cause a weird thing.

      setenforce 0 and now both ways work for me as well. Thanks a lot for testing and your answers!*

      The problem: During the first installation I was asked by the FOG to switch off Selinux, which I did.

      posted in FOG Problems
      D
      Deimos

    Latest posts made by Deimos

    • RE: Installation fails due to lack of php7.1

      @sebastian-roth

      true story.
      Ubuntu 20.04 and FOG 1.5.9 get along quite well.

      posted in General
      D
      Deimos
    • RE: Installation fails due to lack of php7.1

      Some time ago I set up an Ubuntu 20.04 and wanted to run FOG 1.5.5 with it, which failed miserably due to various error messages, maybe caused due to my awful linux knowledge. Of course I am now a little more technically experienced, but the functioning system Ubuntu 16.04 and FOG 1.5.5 prevented me to make changes. Now we have an outdated kernel so I had to update that. The update to 1.5.9 with Ubuntu 16.04 encounters the error described and a newly installed Ubuntu 16.04 also encounters the same error. I can’t even install a php7.1 because the package can’t be found. So I think it´s really outdated OS or kind of that.

      So I feel compelled to install an Ubuntu 20.04 (installation is in progress) and then try again. But maybe there would be a chance to avoid this PHP error message in some other way.

      FOG: 1.5.9

      posted in General
      D
      Deimos
    • Installation fails due to lack of php7.1

      I installed ubuntu 16.04. from scratch,
      installed git
      fetched fog
      ran ./installfog.sh

      fails at stopping web services

      Failed to stop php7.1-fpm.service: Unit php7.1-fpm.service not loaded.
      
      

      What can I do?

      Package php7.1 is not found

      posted in General
      D
      Deimos
    • RE: DELL 5060

      No, it is not a DELL. I will update Fog 1.5.5 to 1.5.9 today and make another test.

      posted in Hardware Compatibility
      D
      Deimos
    • RE: DELL 5060

      Are there any solutions or hints? I am facing the same problem actually.

      Capture was no problem, but deploy runs into the same error.
      I need the kernel v4.19.145, I cannot find any download source

      posted in Hardware Compatibility
      D
      Deimos
    • RE: Installation stops during setting up fogproject password

      @Wayne-Workman said in Installation stops during setting up fogproject password:

      own projects, I opt for very long passwords made from upper & lower case letters and numbers randomly. I’m talking 32, or 64 characters long. Typically I look up the maximum length supported password, and generate one of that length, just letters and numbers.

      I tried another installation on an other, identical notebook fujitsu lifebook with fedora server 30, but allowed special characters in the function.sh and it works also.

      do
              [[ -z $password || $ret -ne 999 ]] && password=$(head /dev/urandom | '0-9a-zA-Z!#$%&()*+,-./:;<=>?@[]^_{|}~' | fold -w12 | shuf -n1)
              echo -e "$password\n$password" | passwd $username >>$workingdir/error_logs/fog_error_${version}.log 2>&1
              ret=$?
              let cnt+=1
          done
      
      posted in FOG Problems
      D
      Deimos
    • RE: Installation stops during setting up fogproject password

      Works. Well done, everybody.

      do
              [[ -z $password || $ret -ne 999 ]] && password=$(head /dev/urandom | tr -cd '0-9a-zA-Z' | fold -w12 | shuf -n1)
              echo -e "$password\n$password" | passwd $username >>$workingdir/error_logs/fog_error_${version}.log 2>&1
              ret=$?
              let cnt+=1
          done
      

      Special thanks to @Sebastian-Roth for patience and to stay in touch.

      posted in FOG Problems
      D
      Deimos
    • RE: Installation stops during setting up fogproject password

      Thanks, I will try this tomorrow.

      posted in FOG Problems
      D
      Deimos
    • RE: Installation stops during setting up fogproject password

      @Tom-Elliott said in Installation stops during setting up fogproject password:

      tr -dc ‘0-9a-zA-Z!#$%&()*+,-./:;<=>?@[]^_{|}~’ < /dev/urandom | head -c ${1:-12}

      [root@fog-ls15nb ~]# tr -dc '0-9a-zA-Z!#$%&()*+,-./:;<=>?@[]^_{|}~' < /dev/urandom | head -c ${1:-12}
      2>}?w0vfI8o]tr: Schreibfehler: Broken pipe
      tr: Schreibfehler
      [root@fog-ls15nb ~]# 
      

      Think this works:

      [root@fog-ls15nb ~]# head /dev/urandom | tr -dc '0-9a-zA-Z!#$%&()*+,-./:;<=>?@[]^_{|}~' | fold -w12 | shuf -n1
      !F!lOldRC)r6
      [root@fog-ls15nb ~]# 
      

      But where can I add/replace this to the installation-script?

      posted in FOG Problems
      D
      Deimos
    • RE: Installation stops during setting up fogproject password

      @Tom-Elliott said in Installation stops during setting up fogproject password:

      cat /dev/urandom | tr -dc ‘0-9a-zA-Z!#$%&()*+,-./:;<=>?@[]^_{|}~’ | head -c ${1:-12}

      [root@fog-ls15nb ~]# cat /dev/urandom | tr -dc '0-9a-zA-Z!#$%&()*+,-./:;<=>?@[]^_{|}~' | head -c ${1:-12}
      (02;(D~#ZFBHtr: Schreibfehler: Broken pipe
      tr: Schreibfehler
      cat: Schreibfehler: Broken pipe
      [root@fog-ls15nb ~]#
      

      Just a note: Thanks for the help so far and for your patience.

      posted in FOG Problems
      D
      Deimos