Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5191 links 

page 77 / 260

Liste des liens

Canicule dans le Val-de-Marne : le don de ventilateurs à une école tourne à la farce administrative - Le Parisien - Le Hollandais Volant
2019-07-1 10:44 - permalink -

le ministère du monde à l’envers

Il va plaire à Bronco celui-là !
Et tu as raison : c'est lui qui nous gouverne depuis trop longtemps maintenant.

éducation-nationale
- https://lehollandaisvolant.net/?mode=links&id=20190629141446
🔻Heintol Kien🔻 sur Twitter : "La pensée du jour d’un ami juriste « Le code pénal est ce qui empêche les pauvres de voler les riches et le code civil ce qui permet aux riches de voler les pauvres »Rien à ajouter." - Le Hollandais Volant
2019-07-1 10:28 - permalink -

Rien à ajouter.

justice
- https://lehollandaisvolant.net/?mode=links&id=20190630084148
ONLYOFFICE 10.0 : créer les formulaires à remplir | memo-linux.com
2019-06-29 3:12 - permalink -

Libre office en réseau

libreoffice onlyoffice partage réseau
- https://memo-linux.com/onlyoffice-10-0-creer-les-formulaires-a-remplir/
Compare Them All | WikiMatrix
2019-06-28 16:33 - permalink -

Comparateur de wikis

outils wiki
- https://www.wikimatrix.org/
Le cadre juridique relatif au consentement a évolué, le site web de la CNIL aussi | CNIL
2019-06-28 14:33 - permalink -

Il était temps. Encore 12 mois pour mise en conformité tout de même...

publicité vie-privée web
- https://www.cnil.fr/fr/le-cadre-juridique-relatif-au-consentement-evolue-le-site-web-de-la-cnil-aussi
Carte d'identité du Père Noël
2019-06-28 10:19 - permalink -

Il a dû en entendre...

- https://www.koreus.com/image/27-insolite-16.html
Installing operating system images on Linux - Raspberry Pi Documentation
2019-06-28 1:43 - permalink -

En alternative à Etcher qui envoie des données à Google et autres lors de son utilisation.

Installing operating system images on Linux

Etcher is typically the easiest option for most users to write images to SD cards, so it is a good place to start. If you're looking for more advanced options on Linux, you can use the standard command line tools below.

Note: use of the dd tool can overwrite any partition of your machine. If you specify the wrong device in the instructions below, you could delete your primary Linux partition. Please be careful.

Discovering the SD card mountpoint and unmounting it

  • Run lsblk to see which devices are currently connected to your machine.

  • If your computer has a slot for SD cards, insert the card. If not, insert the card into an SD card reader, then connect the reader to your computer.

  • Run lsblk again. The new device that has appeared is your SD card (you can also usually tell from the listed device size). The naming of the device will follow the format described in the next paragraph.

  • The left column of the results from the lsblk command gives the device name of your SD card and the names of any paritions on it (usually only one, but there may be several if the card was previously used). It will be listed as something like /dev/mmcblk0 or /dev/sdX (with partition names /dev/mmcblk0p1 or /dev/sdX1 respectively), where X is a lower-case letter indicating the device (eg. /dev/sdb1). The right column shows where the partitions have been mounted (if they haven't been, it will be blank).

  • If any partitions on the SD card have been mounted, unmount them all with umount, for example umount /dev/sdX1 (replace sdX1 with your SD card's device name, and change the number for any other partitions).

Copying the image to the SD card

  • In a terminal window, write the image to the card with the command below, making sure you replace the input file if= argument with the path to your .img file, and the /dev/sdX in the output file of= argument with the correct device name. This is very important, as you will lose all the data on the hard drive if you provide the wrong device name. Make sure the device name is the name of the whole SD card as described above, not just a partition. For example: sdd, not sdds1 or sddp1; mmcblk0, not mmcblk0p1.
    dd bs=4M if=2018-11-13-raspbian-stretch.img of=/dev/sdX conv=fsync
  • Please note that block size set to 4M will work most of the time. If not, try 1M, although this will take considerably longer.
  • Also note that if you are not logged in as root you will need to prefix this with sudo.

Copying a zipped image to the SD card

In Linux it is possible to combine the unzip and SD copying process into one command, which avoids any issues that might occur when the unzipped image is larger than 4GB. This can happen on certain filesystems that do not support files larger than 4GB (e.g. FAT), although it should be noted that most Linux installations do not use FAT and therefore do not have this limitation.

The following command unzips the zip file (replace 2018-11-13-raspbian-stretch.zip with the appropriate zip filename), and pipes the output directly to the dd command. This in turn copies it to the SD card, as described in the previous section.

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ATTENTION NE PAS OUBLIER L'OPTION -p POUR TRANSFÉRER LES FICHIERS, SANS LES CONVERTIR, AU PIPE (stdout)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

unzip -p 2018-11-13-raspbian-stretch.zip | sudo dd of=/dev/sdX bs=4M conv=fsync

Checking the image copy progress

  • By default, the dd command does not give any information about its progress, so it may appear to have frozen. It can take more than five minutes to finish writing to the card. If your card reader has an LED, it may blink during the write process.
  • To see the progress of the copy operation, you can run the dd command with the status option.
    dd bs=4M if=2018-11-13-raspbian-stretch.img of=/dev/sdX status=progress conv=fsync
  • If you are using an older version of dd, the status option may not be available. You may be able to use the dcfldd command instead, which will give a progress report showing how much has been written. Another method is to send a USR1 signal to dd, which will let it print status information. Find out the PID of dd by using pgrep -l dd or ps a | grep dd. Then use kill -USR1 PID to send the USR1 signal to dd.

Optional: checking whether the image was correctly written to the SD card

  • After dd has finished copying, you can check what has been written to the SD card by dd-ing from the card back to another image on your hard disk, truncating the new image to the same size as the original, and then running diff (or md5sum) on those two images.

  • If the SD card is much larger than the image, you don't want to read back the whole SD card, since it will be mostly empty. So you need to check the number of blocks that were written to the card by the dd command. At the end of its run, dd will have displayed the number of blocks written as follow:

    xxx+0 records in
    yyy+0 records out
    yyyyyyyyyy bytes (yyy kB, yyy KiB) copied, 0.00144744 s, 283 MB/s

    We need the number xxx, which is the block count. We can ignore the yyy numbers.

  • Copy the SD card content to an image on your hard drive using dd again:
    dd bs=4M if=/dev/sdX of=from-sd-card.img count=xxx

    if is the input file (i.e. the SD card device), of is the output file to which the SD card content is to be copied (called from-sd-card.img in this example), and xxx is the number of blocks written by the original dd operation.

  • In case the SD card image is still larger than the original image, truncate the new image to the size of the original image using the following command (replace the input file reference argument with the original image name):
    truncate --reference 2018-11-13-raspbian-stretch.img from-sd-card.img
  • Compare the two images: diff should report that the files are identical.
    diff -s from-sd-card.img 2018-11-13-raspbian-stretch.img
  • Run sync. This will ensure that the write cache is flushed and that it is safe to unmount your SD card.
  • Remove the SD card from the card reader.
carte-sd dd flash formatage Raspberry
- https://www.raspberrypi.org/documentation/installation/installing-images/linux.md
Praud : «Mais qui est Vanhœnacker pour distribuer ses bons points sur Marine Le Pen?» (25/06/19) - YouTube - HowTommy | Liens et actu en vrac
2019-06-27 14:55 - permalink -

Ce type est puant. Son émission ne vaut pas tripette. Et il se permet ce qu'il reproche aux autres.
Le niveau 0 du journalope.
Et Charline a raison quand elle dit que les médias banalisent les idées de l’extrême droite. Il n'y a qu'à voir cette émission pour s'en convaincre. Ou alors, les reportages dédiés aux SS sur je ne sais plus quelle chaîne de la télépoubelle (RMC découverte je crois).

- http://liens.howtommy.net/?0idwbA
YouTube thumbnail
Phantom Force (Avec Jérôme Niel et Adrien Ménielle) - YouTube
2019-06-27 14:50 - permalink -

Come back 90's.

Humour vidéos
- https://www.youtube.com/watch?v=0-9O-KPmm6I
API pour récupérer le contenu OpenGraph d'une page web - Les liens de Knah Tsaeb
2019-06-27 14:36 - permalink -
miniatures opengraph thumbnail
- https://book.knah-tsaeb.org/?YvBGEg
11 Best Free & Open Source Video Editing Software in 2019
2019-06-27 11:9 - permalink -
Linux logiciel vidéos
- https://itsfoss.com/open-source-video-editors/
NodeJS pour un kill... mais tuez-moi ! > - Le Hollandais Volant
2019-06-27 10:52 - permalink -

Avant tu écrivais ton .js et ton .html et ça marchait. Maintenant faut installer 3 gestionnaires de téléchargement, 2 éditeurs de texte, 5 outils de virtualisation pour je ne sais quoi et encore d’autres trucs à la con qui ne marchent que dans Chrome.

… pour au final se retrouver avec une page web qui tombe en miettes dès qu’il y a une nouvelle version d’un des outils utilisés.

C’est pas ça que je veux faire en tant que « web dév » :(

Moi non plus. C'est tout le problème des frameworks et autres librairies.

framework Linux nodejs webdev
- https://lehollandaisvolant.net/?mode=links&id=20190626190651
Note RGIv2 Mai 2017 - Note_info_RGIv2_mai2017.pdf
2019-06-26 15:9 - permalink -
administration interopérabilité Libre
- http://www.ploss-ra.fr/wp-content/uploads/2017/05/Note_info_RGIv2_mai2017.pdf
Ploss-ra demande à l'INPI de respecter le RGIv2 ! - PLOSS-RA
2019-06-26 15:5 - permalink -

Étonnant non ?!

administration Libre
- http://www.ploss-ra.fr/ploss-ra-demande-a-linpi-de-respecter-le-rgiv2/
Cybercriminalité: dans les profondeurs du dark web, l'Internet parallèle dédié aux trafics - France 3 Grand Est
2019-06-26 10:20 - permalink -

Il y a tellement de conneries dans ce torchon que l'auteur n'a même pas osé le signer.
Et après, ils s'étonnent que l'on ne fasse plus confiance aux médias.

désinformation médias
- https://france3-regions.francetvinfo.fr/grand-est/cybercriminalite-profondeurs-du-darknet-internet-parallele-dedie-aux-trafics-1690172.html
NANO : Quelques raccourcis à retenir – Korben
2019-06-25 17:47 - permalink -
CTRL + A : Permet d’aller au début de la ligne
CTRL + E : Permet d’aller à la fin de la ligne
CTRL + Y : Permet de remonter de page en page
CTRL + V : Permet de descendre de page en page
CTRL + _ : Permet de se rendre au n° de ligne indiqué
CTRL + C : Permet de savoir à quel n° de ligne / colonne / caractère se trouve votre curseur
CTRL + W : Permet de faire une recherche
CTRL + D : Permet de supprimer un caractère
CTRL + K : Permet de supprimer une ligne complète (comme la commande dd sous Vi)
CTRL + O : Permet de sauvegarder votre fichier
CTRL + X : Permet de quitter nano
CTRL + G : Affiche l’aide

Autre truc important à savoir-faire, ce sont les copier / couper / coller sous nano.
Pour ce faire, placez-vous devant la ligne à copier, puis faites
CTRL + K pour la couper, suivi d’un CTRL + Upour la coller. Maintenant que cette ligne est en mémoire, vous pouvez aller la coller ailleurs.

Autrement, si vous voulez sélectionner plusieurs lignes, faites un CTRL + ^ et déplacez les flèches du clavier pour surligner le texte qui vous intéresser. Ensuite un petit  CTRL + K, CTRL + U et vous pourrez recopier ce passage ailleurs avec un autre CTRL + U .

J’espère que ça vous servira.

Merci Korben

astuce editeur nano
- https://korben.info/utiliser-nano.html
Faits divers - Justice | Mort de Zineb Redouane à Marseille : "Il y a eu une volonté d'étouffer cette affaire" (avocat) | La Provence
2019-06-25 17:10 - permalink -

Jusque là tout va bien. Tout va bien, jusque là...

polices politique société
- https://www.laprovence.com/article/faits-divers-justice/5559388/mort-de-zineb-redouane-a-marseille-il-y-a-eu-une-volonte-detouffer-cette-affaire-avocat.htm
Apps • YunoHost BoZoN
2019-06-25 1:42 - permalink -

La classe à Dallas, le Bronco : BoZon est en évaluation pour figurer comme app de yunohost !

BoZon copains yunohost
- https://github.com/YunoHost-Apps/bozon_ynh
[vidéo mp4, 930 ko] Le développement web moderne, allégorie - Liens en vrac de sebsauvage
2019-06-24 17:14 - permalink -

C'est tout à fait ça. Coucou, composer...

web webdev
- https://sebsauvage.net/links/?wGjLzw
Un mystérieux groupe de hacker iranien pirate des séquenceurs d'ADN - ZDNet
2019-06-21 10:41 - permalink -

Le chercheur a dit à ZDNet que les pirates exploitent la faille CVE-2017-6526, une vulnérabilité dans dnaLIMS qui n'a pas été corrigée à ce jour. Le fournisseur connaît l'existence de cette faille depuis 2017.

Depuis 2 ans, aucune correction. C'est pas très RGPD ça.
Et quelle est la justification du fournisseur pour ne pas corriger ?
Un bel exemple des méfaits des logiciels privateurs...

piratage
- https://www.zdnet.fr/actualites/un-mysterieux-groupe-de-hacker-iranien-pirate-des-sequenceurs-d-adn-39886075.htm
page 77 / 260


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2