@Clebboii Sorry for the delay on this.
Others are having the same issue and George has something good to try. Please try this out and let us know.
@george1421 said in FOG Very Slow to Deploy Image - Lenovo Neo 50Q Gen 4:
@olivier-bonnici If you have time to test, I have an idea what maybe causing this. I just saw a video on hacking a chromebox (seemingly unrelated), and they had a similar issue with downloads being unnaturally slow but uploads were OK.
It came down to the energy efficient ethernet built into the realtek nic.
What I want you to do this this:
- schedule another deployment to this hardware, before you hit the schedule task button tick the debug checkbox then schedule the task.
- PXE boot the target computer, it should go right into imaging, well it should drop you to a linux command prompt after several screens of text.
- At the linux command prompt, we need to find the name of the ethernet adapter device. Issue the following command
ip a s
. Look in the list for the network device that has an IP address. Write down that name for the next stel.- Use the linux tool ethtool to disable ‘eee’ on the network adapter, in this case the ethernet adapter name is eno0 yours might be different, fix accordingly
ethtool --set-eee eno0 eee off
- On success of setting green ethernet to off lets start the imaging process. Key in
fog
and press enter. This will place you in single step mode. You will need to press enter at each breakpoint in the code but you will be able to see the partclone screen to see if the speed has improved.I don’t know specifically if this is your issue but its worth a shot. If it does work we can do a few things to make this a forever change, but first we need to find out if it works or not.