• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. YuYo
    3. Best
    Y
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 61
    • Best 2
    • Controversial 0
    • Groups 0

    Best posts made by YuYo

    • RE: Bit Torrent

      There’s a FOG alternative developed by some people from spanish universities that support BitTorrent for cloning. It’s called OpenGnsys ([url]http://www.opengnsys.es[/url]).

      I’ve tried it a couple times, but the client side interface doesn’t catch me at all.

      posted in General
      Y
      YuYo
    • RE: Error mounting XX.XX.XX.XX:/fog/ on /fog

      Found the issue!!!

      It was one of the postdownload scripts that we use

      if [ $osid == "5" -o $osid == "6" -o $osid == "7" ]; then #only handling Win7/8/8.1
          clearScreen;
          mkdir /ntfs &>/dev/null
          ntfs-3g -o force,rw $part /ntfs #mount image (remember this is mounting partition [U][B]after[/B][/U] new image is deployed)
          mkdir /fog &>/dev/null
          mount -o nolock,proto=tcp $storageip:/fog/ /fog #this is a share created on server under /fog which contains drivers, software etc.. (just add /fog to exports but you could use existing location i.e. /images and if you do, do not need to do this mount as /images is still mounted at this point)
          dots "Mounting Device";
          if [ "$?" = "0" ]; then
              echo "Done";
              #'. ${postdownpath}fog.drivers # run fog.drivers script
              . ${postdownpath}fog.ad # then run fog.ad ... you get the jist
              #'. ${postdownpath}fog.snapins
              umount /ntfs; # unmount when all is done :-)
          else
              echo "Failed To Mount Device";
              sleep 30;
          fi
      fi
      
      posted in General
      Y
      YuYo
    • 1 / 1