Glad to be of help.

Posts made by Tom Elliott
-
RE: Latest FOG 0.33b
r1119 released.
Please give this a try. I don’t know why it keeps generating a new snapin-task for you. I’ve not added that to the Task mangement page. I think i found the issue though. The way the class was being called it was actually saving which would create that particular issue.
Just run:
TRUNCATE table snapinTasks;
TRUNCATE table snapinJobs;Then retry to send the task.
-
RE: Can't load fog on new Lenovo computer, block in init
So you’re good to go now?
-
RE: No setup signature found...
Try updating your kernel file. It sounds like the one you’re using is corrupt.
-
RE: Latest FOG 0.33b
Is the snapin actually running?
I see many different items.
Can you show me log of /var/log/apache2/error.log or /var/log/httpd/error_log
-
RE: Script control of fog
Maybe QUICK_REG_AUTOPOPP might work better for you?
You’d have to remove the registered hosts you want this perform the trick on, then perform quick registration. You set the OSID on the same place you enable QUICK_REG_AUTOPOP. Then the hosts will be registred per your AUTOREGSYSNAME and Image ID, and then will reimage accordingly.
-
RE: Latest FOG 0.33b
No, i mean from the image page.
You can’t assign two OS’s to the image name. If you’re trying to image a dual boot, you need to setup RAW image type versus MPS/MPA/SDR
-
RE: Bugs in FOG 0.33
You will have to re-restart the FOGMulticastManager service for it to take effect.
-
RE: Support for multiple nics / subnets
svn.mastacontrola.com/svn/freeghost, (That was when I first created my svn server.) (DO NOT USE THIS ONE.)
svn.mastacontrola.com/p/freeghost/code/trunk (Syncs every hour, and I just released r1118, so it may not have synced yet.) You can use it, but I would use:svn.code.sf.net/p/freeghost/code/trunk (DING DING DING DING, Use this one for the most accurate.)
-
RE: Including patch for udpcast install error in 0.32 release
That may still be a need, but if you can document the process slightly, I might be able to automate this within the FOG Scripts so we don’t have to do as much.
-
RE: Slow network/disk performance when virtualized on a win2008 server with virtualbox
One, add more CPU’s to it. On an upload process, it has to compress the image as it’s being uploaded.
Two, check the compression setting, it’s on the FOG Configuration->FOG Settings menu called: FOG_PIGZ_COMP and should appear as a slider bar. 9 is best/most compression (most cpu intensive and takes time) and 0 is the worst/fastest compression (less compression means more space is used)
-
RE: Latest FOG 0.33b
[quote=“fabritrento, post: 21609, member: 21607”]for some reasons, instead of “xxx.xxx.xxx.xx” “inet xxx.xxx.xxx.xxx” are assumed as default. I think that is taked from /etc/network/interfaces config file.
my file:
#----------------------The loopback network interface
auto lo
iface lo inet loopbackThe primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.3
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 192.168.0.2
#----------------------[/quote]It’s actually taken by the command:
[code]ifconfig | grep “inet addr:” | head -n 1 | cut -d’:’ -f2 | cut -d’ ’ -f1[/code]I have a feeling, something like:
[code]ifconfig | grep “inet addr:” | head -n 1 | awk -F’:’ ‘{print $2}’|awk ‘{print $1}’[/code]Would work better as it ensure’s the whitespace is removed, where cut only removes a single space (based on the -d’ ').
-
RE: Latest FOG 0.33b
r1118 released.
Adds information for Option 066 and Option 067 per fabritreno’s suggestion above.
trims the last / off of the path name when deploying a multicast image.
-
RE: Bugs in FOG 0.33
r1118 released to rtrim the path of extra /'s. Adds more information for Option 066 and Option 067.
-
RE: Bugs in FOG 0.33
It’s because your database is storing the “/images” part as “/images/”, I can add an rtrim to remove the last slash though. If it doesn’t exist it stays as is, if it does exist it removes it so my formatting can take over.
-
RE: Latest FOG 0.33b
fabritreno,
What OS did you install this on? I’ve never seen any issues with this particular issue, as it already checks if the entry is null, but the [] part is filled out, use the [] part.
Then it tests if either the suggested IP or the entered IP is valid. If it’s not valid (extra spaces included) then it fails with that message. My guess is something is a little different on your server.
-
RE: Latest FOG 0.33b
So I’ll check the loop for the ip. Then you just want me to add the info of what the options do?