• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. ch3i
    3. Posts
    • Profile
    • Following 1
    • Followers 4
    • Topics 37
    • Posts 916
    • Best 169
    • Controversial 0
    • Groups 1

    Posts made by ch3i

    • RE: Snapin order of install

      @ManPage maybe first ID in database šŸ˜›

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: BASH on Windows 10 ... and maybe FOG also?

      @Wayne-Workman Hi Wayne, FOG 2.0 will come with cross platform support, no ? šŸ˜„

      posted in General
      ch3iC
      ch3i
    • RE: Snapin order of install

      @ManPage Hi, I think there is no option to do that. But it’s a good idea.

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Can it be done? Install apps based on laptop/desktop

      @Wayne-Workman said:

      You can script this. Just write a batch file to detect if there is a ā€œWireless Network Connection 1ā€ or not… There are other ways too, like detecting if there is a battery percentage or not, if there is a lid-close setting available or not. Once you have these checks in a script and working, you can just push your snapin to all systems.

      @FlowLive Hi, you can use DMI information to get chassis type.

      On a linux (in my case it’s a VM on an ESXi) :

      # dmidecode --string chassis-type
      Other
      

      On a windows laptop using a script(in my case a HP Elitebook 820) :

      Dim Wmi :Set Wmi = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2")
      Dim Arg, Col, Obj
      
      For Each Col In Wmi.ExecQuery("Select * from Win32_SystemEnclosure")
      For Each Obj In Col.ChassisTypes
       Select Case Obj
        Case 1  :Arg = "Other"
        Case 2  :Arg = "Unknown"
        Case 3  :Arg = "Desktop"
        Case 4  :Arg = "Low Profile Desktop"
        Case 5  :Arg = "Pizza Box"
        Case 6  :Arg = "Mini Tower"
        Case 7  :Arg = "Tower"
        Case 8  :Arg = "Portable"
        Case 9  :Arg = "Laptop"
        Case 10 :Arg = "Notebook"
        Case 11 :Arg = "Handheld"
        Case 12 :Arg = "Docking Station"
        Case 13 :Arg = "All-in-One"
        Case 14 :Arg = "Sub-Notebook"
        Case 15 :Arg = "Space Saving"
        Case 16 :Arg = "Lunch Box"
        Case 17 :Arg = "Main System Chassis"
        Case 18 :Arg = "Expansion Chassis"
        Case 19 :Arg = "Sub-Chassis"
        Case 20 :Arg = "Bus Expansion Chassis"
        Case 21 :Arg = "Peripheral Chassis"
        Case 22 :Arg = "Storage Chassis"
        Case 23 :Arg = "Rack Mount Chassis"
        Case 24 :Arg = "Sealed-Case PC"
        Case Else 
         Arg = "Unknown"
      End Select
      Next
      Next
      
      WScript.Echo " Type = " & Arg
      

      0_1459504853029_upload-b287f112-3912-478a-aa0b-5a154cdbbe02

      or via wmic :

      c:\wmic systemenclosure get chassistypes
      ChassisTypes
      {10}
      
      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Dumb question.. how to change web gui password?

      @andyroo54 You can edit it from the GUI on the ā€œUser Managementā€ tab. There is no link between fog user on GUI and fog unix user.

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: The Storage Groups associated storage node is not valid

      @raumin Hi, I saw your post on another topic about that error, have you try Tom solution ? : https://forums.fogproject.org/topic/6857/the-storage-groups-associated-storage-node-is-not-valid/4

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: stdin corrupted crc32 mismatch

      @andyroo54 Have you another computer with that OEM image ? It would be interesting to test with another hard disk.

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Office 2010 Intermitent KMS Activation Fail after image

      @Arrowhead-IT Hi, not sure but by default the tolerance is 5 minutes (based on best practices for Kerberos)

      posted in Windows Problems
      ch3iC
      ch3i
    • RE: fog 1.2.0 or trunk for Windows 10?

      @hariskar Hi, with no hesitation trunk version !

      posted in Windows Problems
      ch3iC
      ch3i
    • RE: Unable to locate image store

      @alexh Hi, please create another topic about you problem. First time look at that : https://wiki.fogproject.org/wiki/index.php/Troubleshoot_FTP

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Login with USER first

      @MagicLink It’s seem to be good, can you post the result of : cat /etc/vsftpd.conf

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Login with USER first

      @MagicLink said:

      i try with Filezilla and can’t connect with root or fog user (ā€œLOGIN incorrectā€). Winscp/putty works.

      Can you post the result of : service vsftpd status

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Login with USER first

      @MagicLink Hi, can you connect a FTP client to the FOG server ?

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: FOG-Client failed to download CA certificate

      @Quazz said:

      @ch3i I’m literally facepalming right now

      ^^

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: FOG-Client failed to download CA certificate

      @Quazz Hi, when you install the FOG client you have to enter the ip address or the hostname. You have left the default value during installation fog-server

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Uploading an image from Hyper-V is extremely slow

      @loosus456 Hi, the 600MB/min looks like a FastEthernet speed, not a Giga.

      posted in General
      ch3iC
      ch3i
    • RE: Chaining FOG from ipxe.efi (x64)

      @abos_systemax Hi, I don’t see ipxe64/86.efi files in /tftpboot :

      ls -l /tftpboot/*.efi
      -rw-r--r-- 1 fog root 196960 mars   1 17:13 /tftpboot/intel.efi
      -rw-r--r-- 1 fog root 914112 mars   1 17:13 /tftpboot/ipxe.efi
      -rw-r--r-- 1 fog root 196480 mars   1 17:13 /tftpboot/realtek.efi
      -rw-r--r-- 1 fog root 195744 mars   1 17:13 /tftpboot/snp.efi
      -rw-r--r-- 1 fog root 195936 mars   1 17:13 /tftpboot/snponly.efi
      
      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Kernel issues Latitude E7470

      @andyroo54 said:

      @Tom-Elliott Hi Tom we are using .32

      Sorry I’m not sure what you mean by ā€œtrunkā€?

      Oh I see you mean upgrade to the latest version. I’ll see how I go. Last time I tried to upgrade was a nightmare šŸ‘

      I do need to rebuild it anyway because i need more storage and I can’t see to easily expand the drive anyway.

      Hi, trunk versions are dev versions, you can see on the wiki how to install : https://wiki.fogproject.org/wiki/index.php/Upgrade_to_trunk

      I’ve upgrade from 1.2 to trunk without problem, I don’t know if it’s easy from 0.32. If you want to change version and add more storage on your FOG, I think the better choice is to install a new FOG server.

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: [SOLVED] Fatal Error: Failed to mount NFS Volume

      @Quazz said:

      @arnaudrigole That and also because Windows doesn’t support NFS by default.

      Windows support NFS… look at Server 2008/2012 (2008 > NFS V3 et 2012 > NFS V4.1)

      posted in FOG Problems
      ch3iC
      ch3i
    • RE: Green FOG - Change amount of time to shutdown

      @GFm In the web UI : FOG Configuration > FOG Settings > FOG Service > FOG_GRACE_TIMEOUT

      posted in FOG Problems
      ch3iC
      ch3i
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 45
    • 46
    • 5 / 46