Weekly Shaarli

All links of one week in a single page.

Week 47 (November 20, 2017)

ORC - Distributed Anonymous Cloud

hum... ça a l'air intéressant... à creuser plus en détail...

GitHub - ritiek/spotify-downloader: Download Spotify playlists with albumart and meta-tags

C'est toujours utile :)

GitHub - Sprytile/Sprytile: A Blender add-on for building tile based low-poly scenes with paint/map editor like tools

Un addons pour blender à tester (une fois que je serais me débrouiller avec)

Note: Utilisation de iperf à la place de speedtest

Ça marche pas trop mais au moins ça permet de ce passer de speedtest. :)

Command

echo "Please wait, speedtest running..."; echo "Download: "$(iperf3 -c neodarz.net -p 5203 -t 10 -R -P 10 -O 3 | grep "SUM" | grep "receiver" | awk '{ print $6" "$7}'); echo "Upload: "$(iperf3 -c neodarz.net -p 5203 -t 10 -P 10 -O 3 | grep "SUM" | grep "receiver" | awk '{ print $6" "$7}')

Output:

Please wait, speedtest running...
Download: 9.25 Mbits/sec
Upload: 3.09 Mbits/sec
research!rsc: QArt Codes

Recherche intéressante sur les QR codes.

linux - "Unable to find root device" on a fresh ArchLinux install - Super User

Ça vient de m'aider alors que mon archlinux s'était éteint lors d'une mise à jour.

Can't start docker on Ubuntu 16.04 with driver not supported error - Ask Ubuntu

I did some research and I found the answer, I was able to fix the issue by using the overlay2 as storage driver, I followed the below link for that: https://docs.docker.com/engine/userguide/storagedriver/overlayfs-driver/

Below step I took to fix the issue: Stop Docker.

$ sudo systemctl stop docker Copy the contents of /var/lib/docker to a temporary location.
$ cp -au /var/lib/docker /var/lib/docker.bk

Edit /etc/docker/daemon.json. If it does not yet exist, create it. Assuming that the file was empty, add the following contents.

{ "storage-driver": "overlay2" }

Start Docker.

$ sudo systemctl start docker

Verify that the daemon is using the overlay/overlay2 storage driver. $ sudo docker info

After this I was able to run docker container on my "16.04.2 LTS (Xenial Xerus)" sudo docker run -dit ubuntu

Docker CE

For Docker CE, only some configurations are tested, and your operating system’s kernel may not support every storage driver. In general, the following configurations work on recent versions of the Linux distribution:

Linux distribution Supported storage drivers Docker CE on Ubuntu aufs, devicemapper, overlay2 (Ubuntu 14.04.4 or later, 16.04 or later), overlay, zfs

https://github.com/moby/moby/issues/24023