Moved to [URL=‘http://fogproject.org/forum/forums/hardware-hardware-compatibility.19/’]Hardware Compatibility[/URL]
Posts made by Blackout
-
RE: PXE Boot menu not working on Dell Latitude E6510
-
RE: Intel Atom D510 warning(s) message on PXE boot
Ignore these “errors”. They are not errors.
They are “drivers” trying to load. They are failing to load as you do not have the hardware. This is expected behavior and nothing to worry about.
I’m going to shoot the noob developer who put those retarded “please report!” messages in his “driver”…
-
RE: New page in image management tab
[SIZE=6][B]The Ten Minute Guide to diff and patch[/B][/SIZE]
[url]http://jungels.net/articles/diff-patch-ten-minutes.html[/url]
-
RE: Problems I encountered to get FOG working .32 on Ubuntu 12.04 LTS. Fresh install.
Thanks for reporting Jonathan.
The 0.33 installer has been updated to work with all of the latest releases of our supported platforms. (Debian, Ubuntu, Redhate, CentOS and Fedora)
-
RE: Transmit bandwidth in graph is wrong
You need to go out on your own and find information to give me.
3 lines saying “my other appliance says your graph is wrong” gives me no information.First, verify which one is correct. Use a 3rd piece of software or something.
The graph contacts the server in question and asks it “right now, how much data are you moving”, then its plotted on the graph. Verify on the server the graph is correct.
-
RE: GuiWatcher On Windows 7
Correct, Windows Vista and up introduced service “interactive mode” - basically it stops services interacting with your desktop… i.e. viruses & malware
-
RE: Spam
The new spam system has stopped over 500 spam registrations in the last week.
A few still managed to seep through. Please bare with us while we fine tune the spam settings.
This thread will remain open if you would like to suggest or comment.
-
RE: Image upload stops at 80% hung_task_timeout
There is something stopping it at 13%. Out of disk space?
There is only so much i can do with 21 words of information
-
RE: Image upload stops at 80% hung_task_timeout
It stops at 80% because it’s an incomplete image. Filesystem problems would be my guess.
chkdsk /x
Resysprep, reupload image
-
RE: FOG Service - PLEASE recompile
Here is the new version of getMacAddress() i just wrote. It’s untested, see how you go.
[code] public ArrayList getMacAddress()
{
// Variables
ArrayList alMacs = new ArrayList();try { // Get all network interaces NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces(); // Iterate all network interaces foreach (NetworkInterface adapter in adapters) { // Get IP Properties IPInterfaceProperties properties = adapter.GetIPProperties(); // Push MAC address into array alMacs.Add( adapter.GetPhysicalAddress().ToString() ); // DEBUG //log("N/A", "Found network interface: Name: " + adapter.Description + ", MAC: " + adapter.GetPhysicalAddress().ToString()); } } catch (Exception e) { log("N/A", e.Message); } return alMacs; }[/code]
I have attached a compiled DLL, give it a shot and let me know how it goes.
EDIT: I’ve tested this and it worked as intended.
[code] 30/08/2012 1:48 PM FOG::MODDebug Reading config settings…
30/08/2012 1:48 PM FOG::MODDebug Reading of config settings passed.
30/08/2012 1:48 PM FOG::MODDebug Starting Core processing…
30/08/2012 1:48 PM FOG::MODDebug Operating System ID: 6
30/08/2012 1:48 PM FOG::MODDebug Operating System Minor: 1
30/08/2012 1:48 PM FOG::MODDebug MAC ID 0 BC:5F:F4:49:96:63
30/08/2012 1:48 PM FOG::MODDebug MAC ID 1 00:50:56:C0:00:01
30/08/2012 1:48 PM FOG::MODDebug MAC ID 2 00:50:56:C0:00:08
30/08/2012 1:48 PM FOG::MODDebug MAC POST String: BC:5F:F4:49:96:63|00:50:56:C0:00:01|00:50:56:C0:00:08
30/08/2012 1:48 PM FOG::MODDebug A user is currently logged in
30/08/2012 1:48 PM FOG::MODDebug Username: BLACKOUT\Blackout
30/08/2012 1:48 PM FOG::MODDebug Hostname: BLACKOUT
30/08/2012 1:48 PM FOG::MODDebug Attempting to open connect to: http://10.0.0.23/fog/service/debug.php
30/08/2012 1:48 PM FOG::MODDebug Server responded with: Hello FOG Client
30/08/2012 1:48 PM FOG::MODDebug Module has finished work and will now exit.[/code]I have also attached the latest version of MODDebug which outputs the above as soon as the service starts (it used to wait 100 seconds)
[url=“/_imported_xf_attachments/0/162_MODDebug.dll?:”]MODDebug.dll[/url][url=“/_imported_xf_attachments/0/163_AbstractFOGService.dll?:”]AbstractFOGService.dll[/url]
-
RE: FOG Service - PLEASE recompile
I dont think changing to DHCPEnabled would work, what about static IPs?
I’d rather change the code to something that gets all MAC Addresses regardless of up / down status.
Write that for me and I’ll implement & recompile it for you
-
RE: GuiWatcher On Windows 7
If someone is capable & willing to rewrite the FOG Service Code for me (Visual C#), please send me a PM.
-
RE: Prevents the image id being saved to the database during the host file upload process
Not relevant anymore. Code was rewritten in 0.33.
-
RE: Fog v0.32 when the snap-in is edited - strips backslashes
Fixed in SVN, though this section of the Web UI isnt working just yet.
-
RE: Misspelling In Task Management
Thanks. Fixed in SVN.
In the future please use the following format:
Currently reads: I like banananas
Should read: I like bananas -
RE: Inventory ID vs Host ID v.32
I will look at reports. They will be rewritten at some stage. Not for 0.33 sadly.
-
RE: Fog 33 beta reboot issue
NTFS Resizable deploys are working as a few revisions ago.
There is still a lingering bug that means if the image was not syspreped, it will not boot. Hopefully this will be fixed soon.
-
RE: Not labeled links on mobile page
I will make an effort to have ‘alt’ attributes on all images for you.
Thank you for highlighting this problem.
-
RE: Updating installer scripts to reflect both locations of mysql password
The installer scripts need to be updated to ask for MySQL passwords and then put them in the correct location.
If anyone could help, please PM me. You must be capable of modifying BASH scripts and comfortable working in Linux.
-
RE: Call to undefined method Group::addMember
Known bug. Thank you for reporting.