• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. roozshab
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    roozshab

    @roozshab

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    roozshab Unfollow Follow

    Latest posts made by roozshab

    • FOG installer fails when checking on mysql-client package; it is not needed since we use external database server

      When running ./installfog.sh I see the following error message (following "Checking package…):

      • Checking package: mariadb-server…OK
      • Checking package: mysql-client…Failed!

      !!!
      !! The installer was not able to run all the way to the end as !!
      !! something has caused it to fail. The following few lines are !!
      !! from the error log file which might help us figure out what’s !!
      !! wrong. Please add this information when reporting an error. !!
      !! As well you might want to take a look at the full error log !!
      !! in /data/fogproject/FOGProject-fogproject-49456fa/bin/error_logs/fog_error_1.5.10.1660.log !!
      !!!

      ii libc6:amd64 2.39-0ubuntu8.4 amd64 GNU C Library: Shared libraries
      ii libcurl4t64:amd64 8.5.0-2ubuntu10.6 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour)
      ii m4 1.4.19-4build1 amd64 macro processing language
      ii mariadb-server 1:10.11.11-0ubuntu0.24.04.2 amd64 MariaDB database server binaries
      dpkg-query: no packages found matching mysql-client

      We are using an external database server so we don’t need this step. At the moment we can work with the current installation, but it has not gone far enough to install scheduler and multicast services. How could I by pass the database server installation/configuration?

      Our current system information:
      FOG server (current WebUI): 1.5.10.1639
      FOG server: Ubuntu 24.04.2 LTS

      The above stable release installer: 1.5.10.1660
      Thank you.

      posted in FOG Problems
      R
      roozshab
    • Image Capture fails at the last stage when renaming /images/dev/<mac> and create an empty file

      Re: Image Capture Hanging on "Cloned Successfully"

      When capturing an image, the initial NFS mount and image capture is successful. However, the captured files in /images/dev/<mac-address> are owned by root:root.

      When the FOG process uses FTP to rename the created image to the “imaged name” specified. It fails, perhaps because it logs in as fogproject. To avoid making the /images directory universally writable (which causes the empty file creation, but does not rename the directory), one must change the ownership of NFS mounted /images/dev directory. To do so the /etc/exports file entry should be corrected to:
      /images *(ro,sync,no_wdelay,subtree_check,insecure_locks,all_squash,anonuid=1001,anongid=1001,fsid=0)
      /images/dev *(rw,async,no_wdelay,subtree_check,insecure_locks,all_squash,anonuid=1001,anongid=1001,fsid=1)

      This way, on the client side the directory is mounted as user 1001:1001 (fogproject:fogproject). If your UID/GID are different for fogproject user, make the correction as needed. This will allow the ftp process on behalf of fogproject user to complete without a problem.

      Fog Server on: Ubuntu 24.04.2 LTS
      WebUI: 1.5.10.1639

      posted in FOG Problems
      R
      roozshab