• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. chad-bisd
    3. Posts
    C
    • Profile
    • Following 0
    • Followers 1
    • Topics 12
    • Posts 1,148
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Help redirecting webpage

      [url]http://www.fogproject.org/wiki/index.php/Ubuntu_10.04#Make_fog_accessible_at_the_root_of_the_server_.28optional.29[/url].

      Optionally, you can use Mod_Alias for apache.

      posted in FOG Problems
      C
      chad-bisd
    • RE: Security flaw in MySQL

      Ubuntu 10.04 LTS
      mysql Ver 14.14 Distrib 5.1.41, for debian-linux-gnu (i486) using readline 6.1

      [CODE] dpkg --get-selections | grep [m]ysql*
      libdbd-mysql-perl install
      libmysqlclient16 install
      mysql-client install
      mysql-client-5.1 install
      mysql-client-core-5.1 install
      mysql-common install
      mysql-server install
      mysql-server-5.1 install
      mysql-server-core-5.1 install
      php5-mysql install
      [/CODE]

      I could not connect using the root account and a bad password out of 51,152 attempts using a php script.

      posted in Linux Problems
      C
      chad-bisd
    • RE: Fog wont send certain images to certain machines

      Could this have anything to do with the BIOS settings for the HDD modes: SCSI, RAID, AHCI, IDE?

      posted in FOG Problems
      C
      chad-bisd
    • RE: Adding Image Definitions via terminal

      The imageID field is auto-increment in the database for Fog 0.32. So you just don’t pass it a value when you do the insert.

      Say that you wanted to export FogServer1: Image23 to FogServer2. The steps to follow would be:
      [LIST=1]
      []On FogServer1, make a copy of the image folder or image file from /images.
      [
      ]On FogServer2, store the image file or image folder to your /images.
      []On FogServer1, export the data you need for the image definition. You can do this using phpmyadmin. Select the record from the images table, click the export button. Uncheck to export the structure, make sure to check to export the data. Remove the imageID field from the fields list and the value from the values list (remove the comma with the value).
      [
      ]On FogServer2, import the data into the Fog database, images table.
      [/LIST]
      You can automate this with scripts if you are a scripting guy AND you do a lot of image copies to other fog servers. If not, it may be quicker to manually redefine the images in the webUI.

      posted in FOG Problems
      C
      chad-bisd
    • RE: Unable to connect to tftp server

      On 10.04 LTS [B]Server[/B], you should not have to make that change. Create a new thread with the particulars of your issue including Fog version, OS Version, and as much information about the error as you can. We’ll be glad to help you.

      posted in General
      C
      chad-bisd
    • RE: No Video

      Find a kernel that supports your video cards. Most of the kernels available through fog support multiple video chipsets. Sometimes the KitchenSink (KS) kernels work better. Use the Kernel updater portion of the WebUI to try different kernels until you find one that works best. If you are up to it, compile a custom kernel that supports your hardware. It’s a bit scary for a beginner, but after doing it once or twice, it gets a lot easier.

      posted in General
      C
      chad-bisd
    • RE: Domain Error! Unknown Error 2241

      In my setup, our domain is “domain.loc”

      My Active Directory Defaults settings, under Other -> Fog Settings in the Web UI are:
      FOG_AD_DEFAULT_DOMAINNAME: domain.loc
      FOG_AD_DEFAULT_OU: [blank]
      FOG_AD_DEFAULT_USER: domain\username
      FOG_AD_DEFAULT_PASSWORD: [FOGCrypted password]

      Also, make sure the account you are using is a member of the domain group BuiltIn\Account Operators, is a member of Domain Admins, OR has been delegated rights to add, delete, and manage computer accounts in the default “Computers” container and any other container in which you want to create computer accounts. I think there is a 10 computer limit on normal accounts adding computers to the domain.

      posted in FOG Problems
      C
      chad-bisd
    • RE: Adding Image Definitions via terminal

      This will drop the images table on the other servers and replace it with the one you exported. I’m not sure if you are trying to sync the images across all servers, or if some servers have different images than others.

      You may have have to export just the rows for the image definitions you want and insert them into the other servers images table, letting mySQL autogenerate the image ID, or scripting your insert to use the next available image ID number.

      posted in FOG Problems
      C
      chad-bisd
    • RE: RAID Config Before Image?

      You might be able to do this by creating a custom PXE boot menu option that loads the bootable CD/DVD image that came with your server. A bit beyond my scope, but people are booting to all kinds of things from the Fog boot menu these days. You’d want to boot the the setup utility, then create a image deployment task though. I don’t know how you can chain them together.

      posted in FOG Problems
      C
      chad-bisd
    • RE: Unable to replicate image on storage node

      What version of Fog are you running and on what OS?

      posted in FOG Problems
      C
      chad-bisd
    • RE: Adding Image Definitions via terminal

      First off, are all your fog servers independent of each other? By this I mean, did you do a normal install on all 16 servers, or do you have 1 normal install and 15 storage node servers?

      If they are all independent, then try this:
      mysqldump the images table from the “main” fog server and restore it to the other fog servers.
      Main Fog Server, run:
      [CODE]#mysqldump -u root -p[password] fog images > images.sql[/CODE]
      Other Fog Servers, run:
      [CODE]#mysql -u root -p[password] fog < images.sql[/CODE]

      posted in FOG Problems
      C
      chad-bisd
    • RE: Great software - Wrong setup...Any solutions?

      So you have a netgear router that is not capable of PXE options in it’s DHCP server? Have you checked if there is a firmware update that may provide this option?

      If not, then you’ll have to setup the ProxyDHCP for Fog using the article on the wiki, [url]http://www.fogproject.org/wiki/index.php/Using_FOG_with_an_unmodifiable_DHCP_server/_Using_FOG_with_no_DHCP_server[/url]

      posted in FOG Problems
      C
      chad-bisd
    • RE: HP 3115m working bzImage kernel?

      You might have to compile your own kernel. I compiled one to work with a tablet with similar specs. See [url]http://fogproject.org/forum/threads/compiling-a-custom-kernel-for-acer-iconia-tab-copied-from-old-forums.216/[/url]

      Or you can message me and we’ll see if my kernel works for your hardware.

      posted in FOG Problems
      C
      chad-bisd
    • RE: Plugins - Checking if hostname exists

      Might be better asked in the Developer forums 🙂

      posted in FOG Problems
      C
      chad-bisd
    • RE: Dell Lattitude E6420 PXE Boot issues

      When these boot into Windows or other operating system, like the LiveCD of Ubuntu, are they able to get an IP address from DHCP? Can you release/renew without issue?

      posted in FOG Problems
      C
      chad-bisd
    • RE: Domain Error! Unknown Error 2241

      Have you tried joining them to the default computers container, i.e. leaving the OU field blank?

      posted in FOG Problems
      C
      chad-bisd
    • RE: Dell Poweredge R300 Fails On LSI SAS 1068e "Raid" card

      load the live disk and list the modules with lsmod. This may help you find all the drivers you need to compile into the kernel.

      Here is some info on the R200 series servers that might help with the disk issue.

      [url]http://www.fogproject.org/wiki/index.php/Dell_PowerEdge_R200[/url]

      posted in FOG Problems
      C
      chad-bisd
    • RE: How to change the interface for fog to use from eth0 to eth1 after installing fog?

      I thought all the Fog settings referred to an IP address and not the actual interface name. I know the /tftpboot/pxelinux.cfg/default file has the IP address in it several places when referring to the website.

      [url]http://www.fogproject.org/wiki/index.php/Change_FOG_Server_IP_Address[/url]

      posted in FOG Problems
      C
      chad-bisd
    • RE: How to install fog_0.33

      I’ll do my best, as I have not done it yet, but this is where I would start.
      [LIST=1]
      []Download a subversion client.
      [
      ]Connect to repository
      []Download source files
      [
      ]run install script.
      [/LIST]

      posted in FOG Problems
      C
      chad-bisd
    • RE: Changing DHCP settings

      When you installed Fog, it asked if you wanted to setup Fog as your DHCP server, and it configures it properly if you say YES. But you said NO, and it prompted you with instructions on how to update your existing DHCP server to modify options 66 and 67 (windows) or next-server and filename (linux). You must have missed these helper notes.

      I think all you need to do is update your dhcpd.conf with the next-server and filename options for the scope definition. See: [url]http://www.fogproject.org/wiki/index.php/Modifying_existing_DHCP_server_to_work_with_FOG[/url]

      Let me know if this helps. You may want to post your dhcpd.conf file (use code tags when posting to boards).

      posted in FOG Problems
      C
      chad-bisd
    • 1
    • 2
    • 50
    • 51
    • 52
    • 53
    • 54
    • 57
    • 58
    • 52 / 58