kernel update
-
@Pablo Are you behind a proxy server by chance? (This is somewhat inline with what @george1421 asked)
If you’re behind a proxy you may need to enable outgoing access.
Thank you,
Êtes-vous derrière un serveur proxy par hasard? (Ceci est un peu en ligne avec ce que @ george1421 a demandé)
Si vous êtes derrière un proxy, vous devrez peut-être activer l’accès sortant.
Merci,
-
@Tom-Elliott
Merci de vos réponses très rapide
J’ai ajouté l’adresse https://fogproject.org/kernels/* au proxy mais cela ne fonctionne pas via https://fogproject.org/kernels/kernelupdate_bootstrap.php
Le seul moyen trouvé jusqu’à présent est de réaliser la manipulation manuellement :
wget https://fogproject.org/kernels/bzimage …Merci
-
@Tom-Elliott
Le téléchargement fonctionne pour vous en utilisant par exemple le lien :
texte du lien -
@Pablo Let me ask the question again, does your fog server need to use a proxy server to connect to the internet?
Permettez-moi de vous poser à nouveau la question: votre serveur de brouillard doit-il utiliser un serveur proxy pour se connecter à Internet?
-
@george1421
Oui -
@Pablo Do you have the proxy server settings configured in the WEB UI?
Les paramètres du serveur proxy sont-ils configurés dans l’interface utilisateur Web?
FOG Configuration->FOG Settings->Proxy Settings->
PROXY IP
PROXY PORT
-
@george1421
oui j’ai accès à la liste des kernel update -
Mais quand je souhaite en telecharger un j’ai le message :
-
et quand je vais à l’adresse https://fogproject.org/kernels/kernelupdate_bootstrap.php et que je clique sur download, la page se recharge et le téléchargement ne se lance pas :
-
@Pablo I know there was a problem with 1.4.4 where incorrect permissions were set on /var/www/html/fog/service/ipxe directory and apache could not write to that directory. What is the permissions on that directory
ls -la /var/www/html/fog/service/ipxe
andls -la /var/www/html/fog/service/ipxe/bzImage
?Je sais que le problème rencontré avec 1.4.4 était que des autorisations incorrectes avaient été définies sur le répertoire / var / www / html / fog / service / ipxe et qu’apache ne pouvait pas écrire dans ce répertoire. Quelles sont les autorisations sur ce répertoire
ls -la /var/www/html /fog/service/ipxe
etls -la /var/www/html/fog/service/ipxe/bzImage
? -
@george1421 said in kernel update:
ls -la /var/www/html /fog/service/ipxe
-
@george1421 @Pablo The error we see in the picture (“Erreur: Échec du téléchargement: Échec - Taille du fichier” - “Error: Download Failed: Failed - filesize”) happens when it was able to download some data to a temporary file but this file is too small to be a proper kernel image: https://github.com/FOGProject/fogproject/blob/master/packages/web/lib/fog/fogpage.class.php#L2573
My guess is the proxy server is not allowing download of binary data or something.
Probably best to manually download the kernels if you can’t fix your proxy server:
sudo -i cd /var/www/html/fog/service/ipxe mv bzImage bzImage_old mv bzImage32 bzImage32_old wget -O bzImage https://fogproject.org/kernels/Kernel.TomElliott.4.9.4.64 wget -O bzImage32 https://fogproject.org/kernels/Kernel.TomElliott.4.9.4.32 chown fog:www-data bzImage*
Moving the topic as this is definitely not a FOG bug!
-
@Sebastian-Roth FWIW there was a bug in the 1.4.4 setup where the /var/www/html/fog/service/ipxe directory was not writable by apache. Changing the permissions to 777 or making apache group access allowed the download to happen. If you do it manually through sudo or root via the command line the kernel will update.
-
@Sebastian-Roth
Bonjour,
Merci de votre réponse.
Manuellement cela fonctionne mais je souhaiterais que cela fonctionne via l’interface web FOG.
Sauriez-vous m’indiquer les ports utilisés qui doivent être ouverts?Merci
-
@Pablo For your FOG server to get to the internet is a web proxy server required or does the fog server have direct internet access?
You can also use a windows computer and download these two files:
https://fogproject.org/kernels/Kernel.TomElliott.4.9.4.64
https://fogproject.org/kernels/Kernel.TomElliott.4.9.4.32After download rename Kernel.TomElliott.4.9.4.64 to bzImage and Kernel.TomElliott.4.9.4.32 to bzImage32 Make sure you use the exact capitalization I used. Then move these files to the FOG server into the
/var/www/html/fog/service/ipxe
directory.