- Synology DSM root password for ssh | Primal Cortex’s Weblog
si l’accès root en SSH au synology ne fonctionne plus, voici la solution :
———
After getting the DSM 6.0 upgrade, I’ve become unable to login as root using SSH, even though I’ve been able to do it before the upgrade (DSM 5.5 or something like that).
The solution:
1. SSH to machine as admin user.
2. Enter command “sudo su” and providing admin password.
3. Enter command “synouser -–setpw root “.
Now I’m able to logon as root using SSH again, and I didn’t have to mess with telnet.
(Permalink) - That One Privacy Guy’s VPN Comparison Chart – Google Sheets
Superbe comparatif des sevices VPN. Merci à l’auteur, enfin une liste détaillée complète !
(via seb)
(Permalink)
Kobo Glo/HD enable without registering or account
Mount the device by USB, open device in filebrowser, right click “open in terminal”
Then copy paste in the terminal:
echo "insert into user values('foo', 'foo', 'foo', 'foo', 'foo','foo','foo','foo','foo','foo','foo','foo','foo');" | sqlite3 .kobo/KoboReader.sqlite
Eject the device, and voilà!
What the heck, I want an ebook, not registering!
Mes trouvailles du jour : 5 April 2016
Mes trouvailles du jour : 7 March 2016
Mes trouvailles du jour : 2 March 2016
- Hofstadter’s Law
Hofstadter’s Law: It always takes longer than you expect, even when you take into account Hofstadter’s Law.
Tellement vrai, tous ceux qui doivent tenir des délais savent de quoi ça parle…
(Permalink)
Mes trouvailles du jour : 1 March 2016
- Mettre à jour votre serveur OVH SoYouStart de VMware ESXi 5 vers ESXi 5.5
tout est dans le titre
(Permalink) - vSphere Client Download – VIclient Direct Download Links!
La liste des f**cking liens pour télécharger en direct le client vSphere de VMware.
Ils sont pénibles sinon, faut se logguer, faut trouver la bonne version… la navigation sur le site de VMware est aussi agréable que de trouver une pièce détachée dans une casse auto…
(Permalink)
Mes trouvailles du jour : 15 February 2016
- Facture avec TVA – FactureDevis.fr – Créer votre facture en ligne gratuitement
Création de facture / devis / quittance en ligne, sans inscription.
(Permalink)
USB connected digital multimeter and graph plotting (UNI-T UT61E and sigrok)
Ever wanted to have nice plot (U/I curve, whatever) simply plotted?
I got 2 UNI-T UT61E with USB cable (50€ each)
With sigrok you can easily get data from many device with a single command:
sigrok-cli –driver=uni-t-ut61e:conn=BUS.DEVICE -O analog –continuous
Where BUS and DEVICE is replaced with the output of lsusb
lsusb
Bus 002 Device 002: ID 8087:8001 Intel Corp.
Bus 003 Device 086: ID 1a86:e008 QinHeng Electronics HID-based serial adapater
Bus 003 Device 087: ID 1a86:e008 QinHeng Electronics HID-based serial adapater
In my case, as I’ve 2 devices, so 2 different commands are used:
sigrok-cli –driver=uni-t-ut61e:conn=3.86 -O analog –continuous
sigrok-cli –driver=uni-t-ut61e:conn=3.87 -O analog –continuous
But what about logging in the same file the two ouputs simultaneously?
Here comes the magical function: paste and joined pipe:
paste <(sigrok-cli –driver=uni-t-ut61e:conn=3.86 -O analog –continuous) <(sigrok-cli –driver=uni-t-ut61e:conn=3.87 -O analog –continuous) > measure.csv
I’ll let you deal with the uber simple csv processing with octave or libreoffice calc (mV, mA range condition, etc…), as this blog entry is mainly used as a personal notepad.
Note: if you have trouble connected with sigrok, with an error. You may need to disable the power feature, with the script pointed by blog.philippklaus.de
#!/bin/bash # see http://www.erste.de/UT61/index.html for dat in /sys/bus/usb/devices/*; do if test -e $dat/manufacturer && grep -q "WCH.CN" $dat/manufacturer; then echo "Suspending ${dat}." echo auto > ${dat}/power/control echo 0 > ${dat}/power/autosuspend fi done
Mes trouvailles du jour : 12 February 2016
- Open Broadcaster Software – Index
Pour broadcaster sur twitch ou youtube ou pour screncaster, le tout en full open source cross platform. Miam 🙂
(Permalink)
Mes trouvailles du jour : 8 February 2016
- Deploying Qt or how to avoid “could not find or load the Qt platform plugin” | Tripleboot blog
Seriously? Come on…
"Again: note that the 32-bit MSVC DLL files are in SysWOW64 and the 64-bit files are in System32. Makes perfect sense, agreed?"
(Permalink) - Sandstorm
La démo est impressionnante, on se monte un cloud privé et self-hosté en quelques minutes et l’install des apps et super easy (clic et clic).
(via Tim)
(Permalink)