Tout d'abord, si vous souhaitez l'utiliser:
deb http://pkgs.dogmanet.com/ubuntu hardy main multiverse restricted universe
Ensuite ce qui a été ajouté:
libxml-entities-perl_0.02-1
libcisco-copyconfig-perl_1.03-1
oracle-xe-universal_10.2.0.1-1.1
oracle-xe_10.2.0.1-1.1
oracle-xe-client_10.2.0.1-1.2
opera_9.27-20080331.6
gizmo-project_3.1.0.79
nxnode_3.2.0-5
nxserver_3.2.0-7
nxclient_3.2.0-9
bonjour_107.1-0.0.0.50.linspire0.2
Affichage des articles dont le libellé est Dev. Afficher tous les articles
Affichage des articles dont le libellé est Dev. Afficher tous les articles
6.5.08
25.4.08
ocsinventory-agent et ubuntu 8.04 (hardy)
J'ai remarqué que le package ocsinventory-agent (0.0.8) fourni avec ubuntu 8.04 (hardy) posait problème à son installation... un bug a été soumis, le problème est connu et devrait être résolu...
En attendant, j'ai backporté ubuntu-agent 0.0.9.2 de Debian Sid.
Je l'ai mis en ligne sur pkgs.dogmanet.com.
Utilisable en ajoutant dans votre source.list:
deb http://pkgs.dogmanet.com/ubuntu hardy main multiverse restricted universe
En attendant, j'ai backporté ubuntu-agent 0.0.9.2 de Debian Sid.
Je l'ai mis en ligne sur pkgs.dogmanet.com.
Utilisable en ajoutant dans votre source.list:
deb http://pkgs.dogmanet.com/ubuntu hardy main multiverse restricted universe
7.4.08
Minute.be ?
Pour ceux qui n'ont pas de blogs ou qui aimeraient tester le produit Wordpress... La plateforme Minute.be permet de créer son blog basé wordpress en moins d'une minute ;)
http://minute.be
http://minute.be
5.4.08
vmware2 server beta2
Quelques premiers tests en cours...
Première remarque, pas moyen de voir la console ou même les détails d'une machine virtuelle sous Firefox (2 ou 3b5) sous MacOSX 10.5.x
La console ne fonctionne pas avec Safari mais bien le reste... (en fait, juste l'impossibilité d'installer le plugin).
Pas moyen de se connecter avec Opera 9.x.
Première remarque, pas moyen de voir la console ou même les détails d'une machine virtuelle sous Firefox (2 ou 3b5) sous MacOSX 10.5.x
La console ne fonctionne pas avec Safari mais bien le reste... (en fait, juste l'impossibilité d'installer le plugin).
Pas moyen de se connecter avec Opera 9.x.
15.9.07
13.9.07
bash / split a line
I was searching on the web to find a method to split a line directly in bash... and I found some interesting information... it seems that bash has some string handling functions, an example:
#!/bin/bash
line="first test;second test"
VAL1=${line%;*}
VAL2=${line#*;}
echo $VAL1
echo $VAL2
The output would be:
first test
second test
Some explanation:
${variable%pattern}
Trim the shortest match from the end
${variable##pattern}
Trim the longest match from the beginning
${variable%%pattern}
Trim the longest match from the end
${variable#pattern}
Trim the shortest match from the beginning
#!/bin/bash
line="first test;second test"
VAL1=${line%;*}
VAL2=${line#*;}
echo $VAL1
echo $VAL2
The output would be:
first test
second test
Some explanation:
${variable%pattern}
Trim the shortest match from the end
${variable##pattern}
Trim the longest match from the beginning
${variable%%pattern}
Trim the longest match from the end
${variable#pattern}
Trim the shortest match from the beginning
Inscription à :
Articles (Atom)