Daily - Ziirish's cavehttp://ziirish.info/bm/Daily shared linksen-enhttp://ziirish.info/bm/ Ziirish's cave - Wednesday 6 October 2021 http://ziirish.info/bm/?do=daily&day=20211006 http://ziirish.info/bm/?do=daily&day=20211006 Wed, 06 Oct 2021 00:00:00 +0200 Convert qemu images Wed Oct 6 16:56:04 2021 - qemu convert
http://ziirish.info/bm/?2GPrXA


```
qemu-img dd -f qcow2 -O raw bs=4M if=/vm-images/image.qcow2 of=/dev/sdd1
```


]]>
Ziirish's cave - Wednesday 18 August 2021 http://ziirish.info/bm/?do=daily&day=20210818 http://ziirish.info/bm/?do=daily&day=20210818 Wed, 18 Aug 2021 00:00:00 +0200 Howto mount a qcow disk Wed Aug 18 10:46:59 2021 - qemu qcow tips
https://gist.github.com/shamil/62935d9b456a6f9877b5


How to mount a qcow2 disk image
-------------------------------

This is a quick guide to mounting a qcow2 disk images on your host server. This is useful to reset passwords,
edit files, or recover something without the virtual machine running.

**Step 1 - Enable NBD on the Host**
   
    modprobe nbd max_part=8

**Step 2 - Connect the QCOW2 as network block device**

    qemu-nbd --connect=/dev/nbd0 /var/lib/vz/images/100/vm-100-disk-1.qcow2

**Step 3 - Find The Virtual Machine Partitions**

    fdisk /dev/nbd0 -l

**Step 4 - Mount the partition from the VM**

    mount /dev/nbd0p1 /mnt/somepoint/

**Step 5 - After you done, unmount and disconnect**

    umount /mnt/somepoint/
    qemu-nbd --disconnect /dev/nbd0
    rmmod nbd


]]>
Ziirish's cave - Friday 25 June 2021 http://ziirish.info/bm/?do=daily&day=20210625 http://ziirish.info/bm/?do=daily&day=20210625 Fri, 25 Jun 2021 00:00:00 +0200 Upgrading postgresql database Fri Jun 25 15:56:09 2021 - database cheatsheet migration
http://ziirish.info/bm/?3AGfTQ


```
OLD_VERSION=9.6
NEW_VERSION=11
# make sure the new cluster doesn't exist
pg_dropcluster --stop $NEW_VERSION main
# upgrade to a newer cluster
pg_upgradecluster -v $NEW_VERSION $OLD_VERSION main
# edit the new cluster configuration (you should at least change the port to reuse the old one)
pg_ctlcluster $NEW_VERSION main stop
vi /etc/postgresql/$NEW_VERSION/main/postgresql.conf
pg_ctlcluster $NEW_VERSION main start
# CHECK EVERYTHING IS OK

# now you can drop the old cluster
pg_dropcluster $OLD_VERSION main
# optionally you can remove the old packages
apt purge postgresql-$OLD_VERSION postgresql-client-$OLD_VERSION postgresql-contrib-$OLD_VERSION
```


]]>
Ziirish's cave - Tuesday 4 April 2017 http://ziirish.info/bm/?do=daily&day=20170404 http://ziirish.info/bm/?do=daily&day=20170404 Tue, 04 Apr 2017 00:00:00 +0200 Force paste on site that disable it... Tue Apr 4 19:03:27 2017 - cheatsheet
http://ziirish.info/bm/?ERZGhQ


about:config -> dom.event.clipboardevents.enabled = false


]]>
Ziirish's cave - Tuesday 14 March 2017 http://ziirish.info/bm/?do=daily&day=20170314 http://ziirish.info/bm/?do=daily&day=20170314 Tue, 14 Mar 2017 00:00:00 +0100 package management - Easily unpack DEB, edit postinst, and repack DEB - Unix & Linux Stack Exchange Tue Mar 14 15:15:38 2017 - deb build packages
https://unix.stackexchange.com/questions/138188/easily-unpack-deb-edit-postinst-and-repack-deb


Easily rebuild debian packages


]]>
Ziirish's cave - Thursday 23 June 2016 http://ziirish.info/bm/?do=daily&day=20160623 http://ziirish.info/bm/?do=daily&day=20160623 Thu, 23 Jun 2016 00:00:00 +0200 La moitié des groupes de presse français viendrait de perdre toute trace de leurs abonnés - Korben - Le Hollandais Volant Thu Jun 23 22:41:57 2016 - converse timo burp
http://lehollandaisvolant.net/?id=20160623160132


Sinon tu peux utiliser [Burp](http://burp.grke.org). C'est KISS, Open Source, et ça fait le job.


]]>
Ziirish's cave - Tuesday 18 November 2014 http://ziirish.info/bm/?do=daily&day=20141118 http://ziirish.info/bm/?do=daily&day=20141118 Tue, 18 Nov 2014 00:00:00 +0100 bup: It backs things up - Liens en vrac de sebsauvage Tue Nov 18 13:26:00 2014 - converse sebsauvage backup burp
http://sebsauvage.net/links/?suE7rw


Sinon il y a aussi BURP : http://burp.grke.org/

L'auteur de BURP a d'ailleurs effectué une thèse sur les solutions de backups disponible ici : http://burp.grke.org/burp2/00contents.html


]]>
Ziirish's cave - Tuesday 29 July 2014 http://ziirish.info/bm/?do=daily&day=20140729 http://ziirish.info/bm/?do=daily&day=20140729 Tue, 29 Jul 2014 00:00:00 +0200 Android 4.2 : Comment activer le paramètre pour les développeurs ? - Liens en vrac de sebsauvage Tue Jul 29 14:07:34 2014 - sebsauvage converse wtf
http://sebsauvage.net/links/?yMTD5A


Wow, wow, calm down!

http://developer.android.com/tools/device.html

C'est pas vraiment planqué... Si ils livraient l'O avec le mode "développeur" activé par défaut, c'est un peu comme si on te livrait ta voiture en kit en te disant "voilà, c'est une voiture en mode mécano".

Les gens lambda n'en n'ont rien à carrer de ces options, et ça peut même leur donner l'impression que le produit n'est pas fini avec une telle option !

Maintenant si tu veux bidouiller, tu prends le manuel (au moins ça t'oblige à le lire pour éviter de faire des conneries).


]]>