• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Lee Rowlett
    3. Topics
    • Profile
    • Following 19
    • Followers 7
    • Topics 17
    • Posts 276
    • Groups 2

    Topics

    • Lee RowlettL

      Debugging Lenovo Ideapad Miix 310

      Watching Ignoring Scheduled Pinned Locked Moved Hardware Compatibility
      15
      0 Votes
      15 Posts
      4k Views
      S

      @Lee-Rowlett Any news on this yet?

    • Lee RowlettL

      Utilizing Postscripts (Rename, JoinDomain, Drivers, Snapins)

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      46
      0 Votes
      46 Posts
      42k Views
      Lee RowlettL

      @agray there are muc more uptodate versions of this done by @george1421 collaberating his version and mine which i’d suggest looking over but for just osid replace if statement with this:

      case $osid in 5) osn="Win7" ;; 6) osn="Win8" ;; 7) osn="Win8.1" ;; 9) osn="Win10" ;; esac

      Tutorial By George

    • Lee RowlettL

      Compression vs Speed

      Watching Ignoring Scheduled Pinned Locked Moved General
      5
      0 Votes
      5 Posts
      2k Views
      Tom ElliottT

      Your findings, Lee, is about what I’d expect. This, of course, if the deploy is done (well maybe not now) from a unicast stand point rather than a Multicast.

      Compression is a fickle thing. Uploading anything and compressing before doing so always take far more time than re-obtaining the data even if the re-obtaining is highly compressed. This is because the CPU is actually doing much more work finding what can and how much it can be compressed.

      On a download, the less data you have to transfer, the faster it transfers.

    • Lee RowlettL

      PXE boot chainloading to WDS

      Watching Ignoring Scheduled Pinned Locked Moved Linux Problems
      3
      0 Votes
      3 Posts
      11k Views
      S

      Don’t think there’s a way to do it with “chain.32”. I found other references to “pxechain.com” from the linux utilities.
      I added the following and it seemed to start booting but unfortunately didn’t boot WDS:

      LABEL Windows Deployment Services
      kernel pxechain.com
      append IPADDRESSGOESHERE::boot\x64\pxeboot.n12
      MENU LABEL Windows Deployment Services
      TEXT HELP
      Loads the Windows Deployment Services Imaging Environment.
      ENDTEXT

      So I’m going to give up on this one and do what everyone else seems to have done.
      Which is to put the linux boot files onto the WDS location and modify from there instead.
      Reference: [url]http://www.syslinux.org/wiki/index.php/WDSLINUX[/url]

      Actually, someone found this as well (multi-PXE boot) which I might try out first:
      [url]http://www.vcritical.com/2011/06/peaceful-coexistence-wds-and-linux-pxe-servers/[/url]

    • Lee RowlettL

      Which OU?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Feature Request
      2
      0 Votes
      2 Posts
      1k Views
      x23piracyX

      Hi,

      i don’t understand the hole thread also the title!
      I just can a little foresee what u may ment.

      Greetz X23

    • Lee RowlettL

      Update Primary User Field (Under Hardware)

      Watching Ignoring Scheduled Pinned Locked Moved Feature Request
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Lee RowlettL

      Windows 7 and page file

      Watching Ignoring Scheduled Pinned Locked Moved General
      14
      0 Votes
      14 Posts
      8k Views
      D

      I’d suggest adding in the following lines right after “ntfs-3g -o force,rw $part /ntfs”:

      [CODE]printf “Error Message: $?\n”;
      sleep 10;[/CODE]

      Or use echo instead of printf. Just to see if there’s anything useful in there.

      Tried finding the exit codes online, but it looks like the fastest way to find them would be to pull up the ntfs-3g man page from the console to see what the exit codes are (here’s the reference page which suggests doing that):
      [url]http://www.tuxera.com/community/ntfs-3g-manual/#9[/url]

    • Lee RowlettL

      Backup Feature for user profiles/Data

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      12
      0 Votes
      12 Posts
      8k Views
      Tom ElliottT

      sysfs,

      You also have to mount it.

      The gzip is ext2 formatted file/filesystem.

      The way you edit is to perform these tasks:

      First unzip, as you already know how but just for clarity sake:
      [code]cd /tftpboot/fog/images
      gunzip init.gz[/code]

      Then make another directory and mount it like a filesystem:
      [code]mkdir tmp
      mount -o loop init tmp
      [/code]

      Then cd into the tmp folder and you’ll see all the scripts and the “Root” filesystem fog uses. Most of the scripts are in the bin folder so:
      [code]
      cd tmp/bin
      [/code]

      Then you can edit all the scripts you need to.

      When you’re all complete perform these tasks:

      [code]
      cd /tftpboot/fog/images
      umount tmp
      gzip -9 init
      [/code]

      You should, then, have successfully customized your init.gz file.

    • Lee RowlettL

      E-mail Notification

      Watching Ignoring Scheduled Pinned Locked Moved Feature Request
      20
      0 Votes
      20 Posts
      10k Views
      S

      Do you see any errors in your apache log files when mail is being sent? I guess you need to configure smart host with sendmail… [url]https://www.dnsexit.com/support/mailrelay/sendmail.html[/url]

    • Lee RowlettL

      Change Chntpw

      Watching Ignoring Scheduled Pinned Locked Moved Solved Feature Request
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Lee RowlettL

      Location Patch for 0.33

      Watching Ignoring Scheduled Pinned Locked Moved General
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • Lee RowlettL

      Integrate Windows Authentication in FOG

      Watching Ignoring Scheduled Pinned Locked Moved General
      6
      0 Votes
      6 Posts
      3k Views
      F

      I glad 🙂
      We use a fog 0.30 customized version :oops: But the LDAP validation, I think that is easy to migrate to a new version of FOG.
      The “site” layer and technician rol, is much more difficult. Sorry.
      I just started the migration of code from the old version to the new FOG version.

    • Lee RowlettL

      Hostname Change & Joining Domain Before Sysprep Runs (XP & Win7!)

      Watching Ignoring Scheduled Pinned Locked Moved General
      10
      0 Votes
      10 Posts
      9k Views
      B

      I would really like to implement this solution as well, any chance of getting a complete tut?

    • Lee RowlettL

      Change Full Host Registration / QuickImage

      Watching Ignoring Scheduled Pinned Locked Moved Solved Feature Request
      13
      0 Votes
      13 Posts
      6k Views
      Tom ElliottT

      Added this to quick inventory screen as it was very simple. Thanks Lee!

    • Lee RowlettL

      Customize Partimage GUI

      Watching Ignoring Scheduled Pinned Locked Moved General
      10
      0 Votes
      10 Posts
      5k Views
      N

      one is based off of rhel the other ubuntu so it won’t be as easy as getting those images into the init/bzimage as both os’s handle splash/init a bit differently but I’ve taken apart init enough times and am fairly familiar with ubuntu so I think I should be able to marry the two without too much of a headache and in the end we can/will have a usb/cd bootable image that can come in handy aside from loading via pxe.

    • Lee RowlettL

      Bzimage small terminal

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      6
      0 Votes
      6 Posts
      2k Views
      Lee RowlettL

      this was indeed the culprit! thank you very very much, saved me a big headache! 😄

    • Lee RowlettL

      [Requested] Multi-Site Location Patch [Requested]

      Watching Ignoring Scheduled Pinned Locked Moved Tutorials
      24
      0 Votes
      24 Posts
      20k Views
      D

      This is a change from 0.31 to 0.32 you have to use 0.31 for this patch to work. It work great on a 0.31 system for me along with some other modifications we can image machines all on the remote network with very little WAN traffic.

    • 1 / 1