How to automate download and installation of Java JDK on Linux?

Source : http://stackoverflow.com/questions/10268583/how-to-automate-download-and-installation-of-java-jdk-on-linux UPDATED FOR JDK 8u45 RPM: wget –no-check-certificate –no-cookies –header « Cookie: oraclelicense=accept-securebackup-cookie » http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-x64.rpm TAR GZ: wget –no-check-certificate –no-cookies –header « Cookie: oraclelicense=accept-securebackup-cookie » http://download.oracle.com/otn-pub/java/jdk/8u40-b26/jdk-8u40-linux-x64.tar.gz RPM using curl: curl -v -j -k -L -H « Cookie: oraclelicense=accept-securebackup-cookie » http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-x64.rpm > jdk-8u45-linux-x64.rpm -j -> junk cookies -k -> ignore certificates -L -> follow redirects -H [arg] -> headers curl can […]

Augmenter taille partition lvm linux ext3 sans redémarrage avec esxi

1. Détecter nouveau disque echo « – – – » >  /sys/class/scsi_host/host#/scan  fdisk -l  tail -f /var/log/message 2. Créer partition de type 8e (LVM) sur le nouveau disque 3. Grossir le volgroup avec le nouvel espace vgextend /dev/VolGroup00 /dev/sdb1 vgdisplay 4. Grossir la partition dans le volgroup lvdisplay lvextend  -L +G /dev/VolGroup00/LogVol00 5. Agrandir le système de […]

Mettre à jour Centos 6 vers Centos 7

Ajouter un repo dans /etc/yum.repo/ avec le contenu suivant : [upg] name=CentOS-$releasever – Upgrade Tool baseurl=http://dev.centos.org/centos/6/upg/x86_64/ gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 Installer les applications de mise-à-jour yum install redhat-upgrade-tool preupgrade-assistant-contents Démarrer l’outil de tests de mise-à-jour preupg -s CentOS6_7 Faire l’upgrade centos-upgrade-tool-cli –network 7 –instrepo=http://mirror.centos.org/centos/7/os/x86_64/ Si vous rencontrez « downloading failed: database disk image is malformed », effacer le contenu […]

Debian Sarge/Etch + Oracle 10G express edition from apt HOWTO

To use this repository we need to add following lines to /etc/apt/sources.list file: deb http://oss.oracle.com/debian/ unstable main non-free deb-src http://oss.oracle.com/debian/ unstable main we also need to get and install the package key from oracle web site wget http://oss.oracle.com/el4/RPM-GPG-KEY-oracle apt-key add RPM-GPG-KEY-oracle  Next, you need to update your package files (as root)# apt-get update … Reading […]

Installer JDK 1.6 sous Mac OSX

Salut, j’ai trouvé cette procédure pour installer un JDK 1.6 sous Mac OSX : http://rorblog.techcfl.com/2008/02/26/installing-the-jdk-16-on-mac-os-x/

Pages des présentation de phy335

Pour ceux qui cherche les présentation de phy335 avec Tony Rivard et qui tomberait par hazard sur ma page, voici le lien : http://trivard99.tripod.com/

Installing Apache2.2/Tomcat5.5 on a debian from source

Voici un copié-collé d’une procédure de compilation/configuration/installation d’Apache 2.2 en concert avec Tomcat 5.5 que j’ai à utilisé de temps en temps dans mon travail. Si ça peux vous être utile. Si vous êtes l’auteur de cette procédure n’hésitez pas à me le dire pour que je vous cite, j’ai oublié d’où provient ces informations. […]

Migration from thunderbird to Evolution+Exchange

Install Evolution Open Evolution one time and then close it Configure the Exchange account with your account informations on the Windows domain private.alogialogient.com with the command : ximian-connector-setup-2.x (x being the Evolution version you’re using). Download the scritp provided with this post. Modify the script following the instruction provided by the comments in it. Execute […]

Installer Apache 2.2.x avec PHP 5 sous FreeBSD 7

1. cd /usr/ports/www/apache22 2. make install clean Note: Durant le make install, il faut choisir les modules d’apache que l’on veut avoir d’installé Getting PHP5 installed in FreeBSD 7.0 1. cd /usr/ports/lang/php5 2. make install clean 3. cd /usr/ports/lang/php5-extensions 4. make config 5. make install clean Putting it all together 1. vi cd /usr/local/etc/apache2/httpd.conf 2. […]

Procédure d’installation utilisée pour monter une machine standard FreeBSD

Une procédure pour moi, mais au cas où cela vous serait utile, je vous la cole ici. 1. Faire un schéma de partitionnement contenant une partition /data pour nos données comme les pages web ou des VM 2. Faire l’installation minimale de FreeBSD 3. Accepter de faire l’installation des ports 4. Configurer les informations réseaux […]

Langue, JEE5, EJB3

Bon, finalement, j’ai décidé de n’écrire qu’en Français (ou du moins le franglais avec plein de fautes) sur mon blog. En effet, je me dis que puisque que j’ai une si belle langue, autant en profiter. Bon pour revenir au sujet qui nous intéresse, c’est-à-dire l’informatique. Durant mes vacances d’été, je suis en train d’apprendre […]

How to boot on CDROM when the bios isn’t compatible

Just a little note for those like me that need some time to boot cds on old computers. If the bios is incompatible, you just have to use a floppy and write on it Smart Boot Manager. How to do that : On windows : 1. Download rawrite freely from http://www.chrysocome.net/rawwrite. 2. Download smb.bin from […]