After upgrading from my Ubuntu 8.10 to new and excellent Ubuntu 9.10 with Firefox 3.5.7 i found some problem with my vmWare Server 2.0, the script “sudo /usr/bin/vmware-config.pl” won’t run. To configure vmware we need to add a patch to our system like this :
1 2 3 4 5 6 7 |
wget http://www.ubuntugeek.com/images/vmware-server.2.0.1_x64-modules-2.6.30.4-fix.tgz tar xvzf vmware-server.2.0.1_x64-modules-2.6.30.4-fix.tgz tar xvzf vmware-server.2.0.1_x64-modules-2.6.30.4-fix.tgz sudo sh vmware-server.2.0.1_x64-modules-2.6.30.4-fix.sh |
after this i was able to run the vmware…
Leggi tutto
When you connect a USB Stick, SD Card or external HDD and you need to mount it by shell command by command prompt you can view alla media connected to your pc by
1 |
sudo fdisk -l |
and the result :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
Disco /dev/sda: 320.0 GB, 320072933376 byte 255 testine, 63 settori/tracce, 38913 cilindri Unità = cilindri di 16065 * 512 = 8225280 byte Identificativo disco: 0xce46c7a1 Dispositivo Boot Start End Blocks Id System /dev/sda1 * 1 37446 300784963+ 83 Linux /dev/sda2 37447 38913 11783677+ 5 Esteso /dev/sda5 37447 38913 11783646 82 Linux swap / Solaris Disco /dev/sdb: 16.1 GB, 16131293184 byte 102 testine, 38 settori/tracce, 8128 cilindri Unità = cilindri di 3876 * 512 = 1984512 byte Identificativo disco: 0x04030201 Dispositivo Boot Start End Blocks Id System /dev/sdb1 * 1 8129 15752192 c W95 FAT32 (LBA) |
now i found my device the “/dev/sdb1” , to format it on fat 32 :
1 2 3 |
sudo umount /dev/sdb1 sudo mkfs -t vfat /dev/sdb1 sudo eject /dev/sdb1 |
I just starting on using Oracle 10g …. how to 1 : how retrive a guid from Oracle
1 |
select sys_guid() from dual; |
how to 2 : how retrive next value from a Sequence
1 |
select [your sequence name].nextval into from dual ; |
how to 3 : Oracle db Link , how to manage sql between multiple schema … With DB Link you can produce sql /…
Leggi tutto
Probabilmente vi sarà capitato di dover creare all’interno di un pagina web un link ad un file non residente fra le cartelle gestite dal Web Server. Tale file, in una situazione del genere, non risulta accessibile tramite un semplice href ma lo diventa tramite l’utilizzo di una semplice servlet: Di seguito il codice della servlet…
Leggi tutto
Lo so che centra poco, ma la foto eseguita dalla patnership NASA-ESA relativa alla collisione di due asteroidi lontanissimi dalla terra, è sicurmante qualcosa che ha dello straordinario. La photo in questione è stata scattata il 29 Gennaio 2010 e l’articolo ufficiale è al seguente link : http://www.nasa.gov/mission_pages/hubble/science/asteroid-20100202.html Eccola :
Dopo mesi che avevo il termostato della mia caldaia rotto mi son deciso a prendere un Arduino, almeno la programmo come voglio, la accendo e spengo via Internet e posso avere più sensori di temperatura nelle diverse camere (mi posso pure accorgere se ho lasciato un finestra aperta). I componenti di questo nuovo termostato sono…
Leggi tutto