• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. falko
    3. Posts
    • Profile
    • Following 7
    • Followers 1
    • Topics 48
    • Posts 439
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: Bugs in FOG 0.33

      [url]http://freeghost.svn.sourceforge.net/viewvc/freeghost/trunk/?view=tar[/url]

      posted in Bug Reports
      falkoF
      falko
    • RE: Bugs in FOG 0.33

      Around 50meg.
      You want to download the latest trunk. freeghost.svn.sourceforge.net/viewvc/freeghost/trunk/

      posted in Bug Reports
      falkoF
      falko
    • RE: Bypass Host Registration 0.32

      Nice, another cool mod.
      Will have to check out

      posted in General
      falkoF
      falko
    • RE: Switching to Gpxelinux

      Nice share, will have to test this out.
      What is the advantage of using gpxe?

      posted in Tutorials
      falkoF
      falko
    • RE: Switching to Gpxelinux

      [quote=“Kevin, post: 10328, member: 3”]The guide helped a lot. Thank you for it. Since I use Ubuntu, things were in different places, but I was able to get it figured out. I can post the changes here if you’d like. I was able to image some VM’s and boot ISO’s with it, so i’m pretty happy. The one thing i’m not sure of though is that when I select an item to boot, whether is be an image or an ISO, the screen doesn’t clear. So I can still see the background and the items loading on the bottom. This could be because of it being in a VM, but i’m not sure. Any ideas? I loaded it via TFTP this time so I could take the screenshot, but it started doing this when it boot with the gpxelinux. I mean, an easy work around would be to make the screen all black, but curious as to why that’s happening.[IMG]http://i1066.photobucket.com/albums/u416/kgaudio2/FOG_zps3de63507.jpg[/IMG][/quote]
      please post you Ubuntu changes, would be interested. Or make a wiki page

      posted in Tutorials
      falkoF
      falko
    • RE: Windows 8

      if you do want to try the current 0.33 beta with windows 8 (and by all means do test it and provide feedback for the devs) you must use sysprep.

      posted in Windows Problems
      falkoF
      falko
    • RE: Moving from ubuntu to centos 6.3

      can you not build a new install with 0.25 import old database and then upgrade that to 0.32?

      posted in Linux Problems
      falkoF
      falko
    • RE: FOG 0.33 Requirements

      ah I see, makes sense.

      in comparison we are a tiny school lol and have around 500 machines, at least 6 different types of hardware but I still only use one image.

      posted in General
      falkoF
      falko
    • RE: Bugs in FOG 0.33

      okay, what is the recommended way to bring my hosts across? ie moving to a new ubuntu server as well as upgrading to 0.33.
      Build the new server as 0.32, import from older 0.32 server, then upgrade the newer server to 0.33

      note: I am aware 0.33 is in beta, just speaking on testing terms

      posted in Bug Reports
      falkoF
      falko
    • RE: FOG 0.33 Requirements

      damn that’s a lot of images!! why so many may I ask??

      Currently I only manage a few, well only deploy one image really to all our pcs/laptops.

      posted in General
      falkoF
      falko
    • RE: Bugs in FOG 0.33

      using SVN 898 I have also been unable to import my sql host file from my production 0.32 box, anyone able to test importing??

      posted in Bug Reports
      falkoF
      falko
    • RE: FOG 0.33 Requirements

      a dev will have to chime in for that, but for me its not even an issue. as i always use sysprep

      posted in General
      falkoF
      falko
    • RE: FOG 0.33 Requirements

      guessing its due to the changes they made as 0.32 was unable to clone W8

      posted in General
      falkoF
      falko
    • RE: Bugs in FOG 0.33

      [quote=“falko, post: 9221, member: 48”]just to double check, when I set up my FOG 0.33 test vm, all I need to do is Import the Host Inventory cvs from my FOG 0.32 box? Following the format provided from the Web Interface cvs ‘Import example’ sheet?[/quote]
      Feedback, though I am guessing the DEVs are aware already. using the latest svn: 898 the above import attempt does not work.

      error [CODE]FOG DEBUG: FOGPageManager: Class: ReportManagementPage, Method: upload, Error: Method not found in class, defaulting to index()[/CODE]

      posted in Bug Reports
      falkoF
      falko
    • RE: Moving from ubuntu to centos 6.3

      [quote=“Mark Playford, post: 9495, member: 498”]Thanks for that. That is a great help. I’ll update on the results[/quote]

      how did it go??

      posted in Linux Problems
      falkoF
      falko
    • RE: Change Quick Host Registration and Inventory output

      I haven’t look at the 0.33 code in a while so I wasn’t sure. Hence the post

      You are referring to the edit of [I]man.hostexists.php [/I]that is made. this is to edit [I][SIZE=12px]auto.register.php ii[/SIZE][/I][SIZE=12px]n a similar fashion for when the boot menu option of Quick Host Registration and Inventory is used on a pc that is already in the database.[/SIZE]

      posted in Feature Request
      falkoF
      falko
    • Change Quick Host Registration and Inventory output

      Can this be put into the FOG 0.33 Code, It’s to change (when registering a pc that already exists)
      it from saying Host Exists to the actual hostname registered in FOG.

      [URL=‘http://fogproject.org/forum/threads/change-full-host-registration-quickimage.3266/#post-9538’]Taken from this thread[/URL]

      [quote=“Lee Rowlett, post: 9534, member: 28”]change auto.register.php line 77 (dependant on version you’ve got but it’s around there)
      from:
      [B]$sql = “select count() as cnt from hosts where hostMAC = ‘" . $mac . "’";[/B]
      to:
      [B]$sql = "select hostName, count(
      ) as cnt from hosts where hostMAC = '” . $mac . “'”;[/B]
      and then change output on line 264 (again might be diff line - version)
      from:
      [B]echo (“Exists”);[/B]
      to:
      [B]echo “”.
      (“This Machine is already registed as”).": " . $ar[“hostName”] . “”;[/B]

      i haven’t tested this but can’t see why it wouldn’t work :)[/quote]

      Thanks

      posted in Feature Request
      falkoF
      falko
    • RE: Change Full Host Registration / QuickImage

      Thank you!! This works perfectly using FOG 0.32. This is so handy.

      I would love to see this put into 0.33 code, I know the above patch has been (not sure if this part has).

      Thanks again to everyone in thread

      [quote=“Lee Rowlett, post: 9534, member: 28”]change auto.register.php line 77 (dependant on version you’ve got but it’s around there)
      from:
      [B]$sql = “select count() as cnt from hosts where hostMAC = ‘" . $mac . "’";[/B]
      to:
      [B]$sql = "select hostName, count(
      ) as cnt from hosts where hostMAC = '” . $mac . “'”;[/B]
      and then change output on line 264 (again might be diff line - version)
      from:
      [B]echo (“Exists”);[/B]
      to:
      [B]echo “”.
      (“This Machine is already registed as”).": " . $ar[“hostName”] . “”;[/B]

      i haven’t tested this but can’t see why it wouldn’t work :)[/quote]

      posted in Feature Request
      falkoF
      falko
    • RE: Change Full Host Registration / QuickImage

      Lee (or anyone) are you able to help, I cant seem to find where to edit this?

      posted in Feature Request
      falkoF
      falko
    • 1 / 1