Inicio

Free dynamic DNS service

A long time ago there were several free dynamic DNS services but nowadays it’s difficult to find one of them. And when you find the service usually you have some important restrictions like: number of updates per day or only few subdomains per account. But in the end I found a good free service of that, it’s part of the project guifi.net and is called: Qui; you only need a guifi.net account to use the service and it’s really simple and clear. From my part the compatibility with “ddclient” and the “mikrotik” script are really useful and I want tu highlight this functionality.

Fa 12 anys que vaig tornar a neixer

De tant en tant em ve al cap aquella expressió que diu: “Hi ha coses a la vida que la divideixen en dos, es marca un abans i un després de…”. Doncs bé, avui es compleixen 12 anys d’un dels fets que ha dividit la meva vida. Tal dia com avui hem dirigia a una reunió a València i vaig patir un accident de cotxe espectacular com podeu apreciar a la fotografia. Sort que no hem vaig fer ni una rascada.

accident bmw

Dies com aquest serveixen per recordar-te la teva fragilitat i fins a quin punt hem d’estar agraïts de poder disfrutar d’aquesta aventura tan apassionant que és la vida. Així doncs acabo aquest article tradicional en el blog acabant com sempre amb un GRÀCIES.

Conference: SmartHome using Arduino, Raspberry PI and more

I did this conference twice but this time it’s in English as I said before in Catalan, this is how I’m getting real a childhood dream. Thanks to open hardware like Arduino and Raspberry PI and open source software like OpenHab I have a smarthome with several automations. Last Thursday I spoke in “IoT Barcelona meetup” sharing my personal experience automating my house.

If you lost it and you want to watch the presentation video is here:

and the presentations slides are here:

VMWare trick: add new hard drive without restarting the virtual machine

As simple as that, if you add a new virtual hard drive using VMWare in your virtual machine with Linux and you want to force the re-scan SCSI bus to see the new hard drive when you run, for example: “fdisk -l”. You can force the SCSI bus re-scan with:

# take into account that your new hard drive could be added in different point than "host0"
echo "- - -" > /sys/class/scsi_host/host0/scan

Conferència: SmartHome usant Arduino, Raspberry PI i més

El dia 12 de febrer al vespre vaig fer una conferència a la FIB (Facultat d’Informàtica de Barcelona) dins de la UPC (Universitat Politècnica de Catalunya). En aquesta xerra vaig estar explicant com vaig convertint en realitat un somni que vaig tenir quan era petit, estic parlant de domotitzar la casa. Gràcies a enginys com l’Arduino i la Raspberry PI a més d’aplicacions com l’OpenHab podem fer assequible allò que si anem a grans marques comercials es fa caríssim pel meu pressupost.

En aquest enllaç podeu trobar les transparències de:  SmartHome usant Arduino Raspberry i més i el video el teniu disponible al servidor de la FIB.

Ara també teniu disponible el video a youtube:

i podeu veure les transparències des d’aquest mateix post:

Espero els vostres feedbacks als comentaris, desitjo que ús sigui útil.

Turn on virtual machines in VMWare ESXi

Next commands are very useful when you don’t have access to the vSphere UI and you have to access to VMWare Hypervisor using SSH or console:

# get the list of virtual machines
vim-cmd vmsvc/getallvms

# get the state of a VM with #id: VM_ID
vim-cmd vmsvc/power.getstate VM_ID

# turn on the virtual machine with #id: VM_ID
vim-cmd vmsvc/power.on VM_ID

Another option to turn on the virtual machine using an Ansible playbook:

- hosts: vmware
  gather_facts: false
  tasks:
    - vsphere_guest:
        vcenter_hostname: "X.X.X.X"
        username: "{{ hostvars[inventory_hostname].ansible_ssh_user|quote }}"
        password: "{{ hostvars[inventory_hostname].ansible_ssh_pass|quote }}"
        guest: "NAME_OF_THE_VM"
        state: "powered_on"
      delegate_to: localhost
Scroll to Top