[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 #!/bin/bash 2 3 # script permettant de mettre en place sur le SE3 Clonezilla dans le module tftp menu clonage 4 # passage en version live 20140518 Trusty i386 et correction de qq erreurs dans le tftpboot/pxelinux.cfg/clonage.menu 5 # $id=mise_en_place_tftp_clonezilla_trusty_i386.sh 6 # modifie le 04/02/2014 7 # modifie le 25/06/2014 8 # version du 26/06/2014 : OK : Trusty i386 9 10 . /etc/se3/config_m.cache.sh 11 12 if [ -z "$se3ip" ]; then 13 echo -e "IP SE3: \c" 14 read se3ip 15 fi 16 17 ladate=$(date +%Y%m%d%H%M%S) 18 tmp=/var/se3/tmp_$ladate} 19 mkdir -p $tmp 20 cd $tmp 21 #Correction de la version a telecharger en 2.2.1-25-i686 pour du alternative 20140518 i386 pour plus de compatibilite car la 2.1.2-43 plante 22 #Passage à la version stable 20140518 Trusty i386 23 #wget http://freefr.dl.sourceforge.net/project/clonezilla/clonezilla_live_stable/2.1.2-43/clonezilla-live-2.1.2-43-i686-pae.zip 24 #wget http://freefr.dl.sourceforge.net/project/clonezilla/clonezilla_live_stable/2.2.1-25/clonezilla-live-2.2.1-25-i686-pae.zip 25 #wget http://sourceforge.net/projects/clonezilla/files/clonezilla_live_stable/2.2.3-10/clonezilla-live-2.2.3-10-i686-pae.zip 26 #wget http://sourceforge.net/projects/clonezilla/files/clonezilla_live_stable/2.2.3-10/clonezilla-live-2.2.3-10-i486.zip 27 wget http://sourceforge.net/projects/clonezilla/files/clonezilla_live_alternative/20140518-trusty/clonezilla-live-20140518-trusty-i386.zip 28 29 if [ "$?" = "0" ]; then 30 # unzip clonezilla-live-2.1.2-43-i686-pae.zip 31 #unzip clonezilla-live-2.2.1-25-i686-pae.zip 32 unzip clonezilla-live-*.zip 33 mkdir /tftpboot/clonezilla 34 mv -f live/filesystem.squashfs live/initrd.img live/vmlinuz /tftpboot/clonezilla 35 # ecriture du fichier tftpboot/pxelinux.cfg/clonage.menu afin d avoir le choix de clonezilla live dans le menu clonage 36 # il y avait des erreurs 37 # modifications donc au niveau de la ligne KERNEL et APPEND sans le /tftboot pour le chemin en dur des images 38 echo ' 39 label Clonezilla-live 20140518 40 MENU LABEL Clonezilla Live 20140518 i386 41 KERNEL clonezilla/vmlinuz 42 APPEND initrd=clonezilla/initrd.img boot=live config noswap nolocales edd=on nomodeset ocs_live_run="ocs-live-general" ocs_live_extra_param="" keyboard-layouts="" ocs_live_batch="no" locales="" vga=788 nosplash noprompt fetch=tftp://'$se3ip'/tftpboot/clonezilla/filesystem.squashfs' >> /tftpboot/pxelinux.cfg/clonage.menu 43 cd /root 44 rm -fr $tmp 45 else 46 echo "ERREUR lors du telechargement." 47 fi
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |