convertisseur euro btc
Système
-
Convertisseur EUR BTC
-
Désactiver le mode visual sur VI
J'ai remarqué un truc bien chiant sur les nouvelles VM linux : le clic droit de la souris ne peut plus coller...!
pour y remédier :
echo "set compatible" > ~/.vimrc
echo "set mouse-=a" >> ~/.vimrc -
Assessment ora2pg
Assessment ora2pg :
ora2pg -t SHOW_REPORT -c ./config/ora2pg.conf --dump_as_html --cost_unit_value 5 --estimate_cost > ./reports/report.html
ora2pg -t SHOW_TABLE -c ./config/ora2pg.conf > ./reports/tables.txt
ora2pg -t SHOW_COLUMN -c ./config/ora2pg.conf > ./reports/columns.txtCompare source VS target
ora2pg --type TEST --count_rows --conf confia2pg.conf
-
[Systeme] Create a logical volume for ora2pg
Create a logical volume of 450 Go
-
La Bible du linuxien
-
Le FS ne reflète pas la taille du VG
-
Lister les disques et type de disque
lsdev -Cc disk
exemple :
hdisk0 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk26 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk27 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk28 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk29 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk30 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk31 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk32 Available C6-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk33 Available C4-T1-01 Hitachi MPIO Disk VSP (Fibre)
hdisk34 Available C4-T1-01 Hitachi MPIO Disk VSP (Fibre) -
Show which hdisk(s) each of your filesystems reside on for AIX
Hyper utile :
#!/bin/ksh
for vg in `lsvg -o`; do
for fs in `lsvgfs $vg`; do
printf "%-22s" $fs;
for disk in `lsvg -p $vg | tail +3 | awk '{print $1}'`; do
lspv -l $disk | grep -q " ${fs}$" && printf "%-8s" $disk;
done;
echo
done;
done -
CHECK SUPPORTED ALGORITHMS IN OPENSSH
https://cinhtau.net/2016/03/21/check-supported-algorithms-in-openssh/
-Q cipher | cipher-auth | mac | kex | key Queries ssh for the algorithms supported for the specified version 2. The available features are: cipher (supported sym‐ metric ciphers), cipher-auth (supported symmetric ciphers that support authenticated encryption), mac (supported message integrity codes), kex (key exchange algorithms), key (key types).
-
list des FREE Pps restant dans un VG AIX
lsvg | egrep -w "backupvg|datavg" | lsvg -i | grep FREE