langage de programmation
-
@julio When you added the
echo "OK, osid is 50/Linux"
into your script, did you see that message on the console??You might want to add the mentioned
read
command as well so it waits for your input… -
@sebastian-roth salut roth. non je ne vois rien sur la console de mon serveur fog apparement le script ne fonctionne pas. je veux bien savoir.
comment verifier que le script est bien fonctionnel???
j’ai bien donner les droits d’execution à savoir chmod +x renamehost.sh -
@george1421 salut george. oui j’ai fais ce que tu m’as démander mais je n’arrive pas sur l’invite de commande de fos linux. y’a t’il pas une autre manière???
-
@julio OK give me 5 minutes and I will give you more hints.
-
@julio To get into debug mode on the pxe booting computer make sure you enabled debug mode.
See the Schedule as debug task option? When you do this and pxe boot the target computer you will end at the FOS Linux command prompt.
In your script for debugging purposes you should add
echo "Some step in the script" debugPause;
This way you will know when and where your script is in the program. I add these quite often at specific points in my scripts.
Also make sure you add your script like
fog.custominstall
orrenamehost.sh
to the master script offog.postdownload
or your script will not be called by fog.IF you are ready to debug your script AND you are at the FOS Linux command prompt key in
fog
to start the deployment. The FOG deployment will stop at all of thedebugPause
commands during deployment. Press enter to go to the next step. When / IF you get to seeOK, osid is 50/Linux
on the screen and you see a bug you can press CTRL-C to exit the script. The FOG Postinstall scripts are run right after the last partclone copy screen. You can fix what you need then restart the deployment process again by typingfog
in again. You can do this testing as many times as you want without needing to reboot the pxe target computer. -
@george1421
j’ai reussi à entrer dans la partition de debogage. j’ai executer la commande lsblk. voici ce que j’obtient. -
@george1421 salut george. j’ai eu une erreur qui s’affiche on me precise syntax error. donc le script essaye de s’executer mais petite erreur. voici l’image en question
-
@sebastian-roth oui roth j’ai vu ou il y’a erreur: c’est au niveau de la ligne5 dans mon code: ici
if [[“$osid”==“50”]]; then ça me dire sysntax error. juste pour vous donner un indice.
-
@julio said in langage de programmation:
’ai reussi à entrer dans la partition de debogage. j’ai executer la commande lsblk. voici ce que j’obtient
Ok I see only one partition then /dev/sda1. Now you know what your target partition is.
donc le script essaye de s’executer mais petite erreur.
Here is an example of my if/then
if [[ -z $hd ]]; then handleError "Could not find hdd to use" fi
When you look at your if / then statement do you see any differences? How about spacing?
-
@george1421 voici mon script final
-
@julio You MUST look at the if statement. It is wrong.
if[[ $osid == 50 ]];then
Should be rewritten as
if [[ $osid == "50" ]]; then
-
-
@george1421 désolé j’ai toujours la meme erreur. je sais pas si je doit changer totalement la ligne 5. en passant j’ai bien
fi à la fin de mon script. -
@julio Your program is still wrong. I will type short items because I am tired.
#!/bin/bash echo "hello" read if [[ $osid == "50" ]]; then echo "ok" mdkir -p /ext mount /dev/sda1 /ext echo $hostname > /ext/etc/hostname unmount /ext fi
- Your if command needs a space after if and the first square bracket
- You need
fi
at the end to show the closing of theif
statement.
-
@george1421 salut george. vraiment merci beaucoup pour tout ça fonctionne bien maintenant
-
@george1421 je tenais à te remercier une fois de plus. thank you again. je te dois une fiere chandel. pour ceux qui en ont besion voici le script final en question.
-
bonjour george. j’ai un dernier point sur lequel je sollicite ton aide. je veux faire un script pour joindre un domaine active directory avec des machines linux. à tu une idée de comment je pourrais me prendre avec ça. merci bien
-
@julio Single command
realm
https://www.redhat.com/sysadmin/linux-active-directoryhttps://4sysops.com/archives/join-a-debian-linux-server-to-an-active-directory-domain/
once command once the installed packages are available.
-
@george1421 said in langage de programmation:
@julio Single command
realm
https://www.redhat.com/sysadmin/linux-active-directoryhttps://4sysops.com/archives/join-a-debian-linux-server-to-an-active-directory-domain/
once command once the installed packages are available.
Bonjour george: désolé d’être absent depuis ces dernières temps. je redigiais mon rapport sur tout ce que j’ai déja fais.
j’ai suivie les tutos que tu m’as envoyé mais je n’arrive pas à joindre le domaine active directory avec la distribution linux ubuntu 18.04 j’ai installer tous les paquets donc j’avais besion mais cela ne fonctionne pas. y’a t 'il un fichier spécifique que je pourrais configurer pour fais fonctionné la jointure au domaine???
-
bonjour george voici une erreur de ce que j’ai rencontrer comme problème.