The RealVNC plugin for chromebook was just released! Thanks to the team that also advice me! My objective is to connect to KVM running hosts that uses VNC protocol. We need to establish an ssh tunnel first. Open crosh by Ctrl+Alt+T type: crosh> ssh ssh> user (your username) ssh> host (IP address or name of…
Leggi tutto
Per chi non lo conoscesse, rsync realizza copie incrementali fra una sorgente e una destinazione. Ottimo per i backup via rete di cartelle poichè confronta i timestamp dei file e li invia solo se sono cambiati. Ma non ci fermiamo qui. Premessa. Nella nostra server farm abbiamo molti file di grosse dimensioni che sono i…
Leggi tutto
Hi, things have changed from when you have to add nameserver in file /etc/resolv.conf In case of a static configuration in /etc/network/interfaces is possible to add nameservers right here, with the following syntax
1 |
dns-nameservers 8.8.8.8 213.205.32.70 |
As you can see is possible to define multiple nameservers. I will use Google public DNS for resolution because it run…
Leggi tutto
Per la serie “Nuovi giocattoli da provare in Synaptica Lab” ecco a voi il Raspberry che fa girare un video HD senza lag.
Blocky is a visual programming language sponsored by google. Try to solve a maze with it! Or look at this simple solution:
I followed this steps in order to add some space to a virtual disk in kvm environment convert qcow2 disk to be expandend in raw format:
1 |
qemu-img convert -f qcow2 to-be-expandend.img -O raw to-be-expandend.raw |
create extra space, 30G in this case:
1 |
sudo qemu-img create -f raw addon.raw 30G |
merge the two files:
1 |
cat to-be-expandend.raw addon.raw >expanded.raw |
re-convert in qcow2 format:
1 |
qemu-img convert -f raw expanded.raw -O qcow2 expanded.img |
To be used, the extra space needs to be re-partitioned…
Leggi tutto