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.

5166 links 

page 6 / 9

Liste des liens

170 results tagged Raspberry x
N O D E
2020-02-5 23:48 - permalink -

Pour fabriquer un serveur à base de Rapsberry Pi Zero, à peine plus gros qu'un chargeur usb. Génial.

bricolage Raspberry serveurs
- https://n-o-d-e.net/nano_server.html
Pi-Hole, un serveur DNS sur Raspberry Pi pour se débarrasser de la pub
2020-02-5 23:32 - permalink -
pi-hole publicité Raspberry vie-privée
- https://www.minimachines.net/actu/pi-hole-68134
Note pour moi même : Activer le son analogique sur Raspberry Pi dans raspian
2020-02-5 23:3 - permalink -

Avant de chercher la ligne de commande qui va bien ou d'installer tout un tas d'utilitaires, faites un clic droit sur l'icône du haut parleur et sélectionner "analog" plutôt que "HDMI".

Parfois, il ne faut pas chercher bien loin.

Raspberry son
- https://bookmarks.ecyseo.net/?FHVz8g
Comment utiliser une tablette tactile quand on ne peut pas la toucher ? - Make!
2020-01-20 15:28 - permalink -

Projet très intéressant !

arduino bricolage Raspberry
- https://make.lichat.net/comment-utiliser-une-tablette-tactile-quand-on-ne-peut-pas-la-toucher/
Setting up Pi Zero OTG - The quick way (No USB keyboard, mouse, HDMI monitor needed)
2020-01-9 3:17 - permalink -

More details - http://blog.gbaman.info/?p=791

For this method, alongside your Pi Zero, MicroUSB cable and MicroSD card, only an additional computer is required, which can be running Windows (with Bonjour, iTunes or Quicktime installed), Mac OS or Linux (with Avahi Daemon installed, for example Ubuntu has it built in).

  1. Flash Raspbian Jessie full or Raspbian Jessie Lite onto the SD card.
  2. Once Raspbian is flashed, open up the boot partition (in Windows Explorer, Finder etc) and add to the bottom of the config.txt file dtoverlay=dwc2 on a new line, then save the file.
  3. If using a recent release of Jessie (Dec 2016 onwards), then create a new file simply called ssh in the SD card as well. By default SSH is now disabled so this is required to enable it. Remember - Make sure your file doesn't have an extension (like .txt etc)!
  4. Finally, open up the cmdline.txt. Be careful with this file, it is very picky with its formatting! Each parameter is seperated by a single space (it does not use newlines). Insert modules-load=dwc2,g_ether after rootwait. To compare, an edited version of the cmdline.txt file at the time of writing, can be found here.
  5. That's it, eject the SD card from your computer, put it in your Raspberry Pi Zero and connect it via USB to your computer. It will take up to 90s to boot up (shorter on subsequent boots). It should then appear as a USB Ethernet device. You can SSH into it using raspberrypi.local as the address.
Raspberry raspian
- https://gist.github.com/gbaman/975e2db164b3ca2b51ae11e45e8fd40a
Mounting Fan SHIM on your Raspberry Pi
2020-01-9 3:11 - permalink -

Make sure that get the Fan SHIM on the correct pins and that you don't accidentally shift them over one pin to the left or one row down, or you're highly likely to damage your Fan SHIM and possibly your Pi.

If you're not using a case, the push your Fan SHIM all the way down onto the GPIO pins. If you're using Fan SHIM in one of our Pibow Coupé 4 cases, then you can just push it down part way onto the GPIO pins so that you can still access the right-angle tactile switch.

If you're happy that the Fan SHIM is mounted properly, then plug in your power supply and boot up your Pi now.
Installing the Fan SHIM software

For this part of the tutorial, you'll need a micro-SD card that's been set up with the Raspbian operating system, and to be connected to Wi-Fi. It's also really handy to have a display, keyboard, and mouse connected to your Pi for these next bits.

Open a terminal (press control-alt-t or find it in the Raspberry Pi menu) and then type the following to install the Fan SHIM Python library:

git clone h ttps://github.com/pimoroni/fanshim-python
cd fanshim-python
sudo ./install.sh

That installs the Python library itself, but we've put together a nice Python script that sets temperature thresholds (along with a couple of other options) and then turns the fan on automatically when it reaches a threshold and back off when it drops back below a second threshold.

The installer accepts three values, the first for the on threshold temperature at which the fan kicks in, the second for the off threshold temperature at which the fan stops again, and the third for the delay between each temperature reading.

In our testing, an on threshold of 65°C, an off threshold of 55°C, and a delay of 2 work pretty well. Type the following in the terminal to run the installer for the automatic script:

cd examples
sudo ./install-service.sh --on-threshold 65 --off-threshold 55 --delay 2

This installer will run the automatic script in the background, and it should even start running again if you shutdown and boot up again, or reboot.

The LED indicates the CPU temperature, with green being cooler and red being hotter. A long press on the button put the fan into manual mode and then a short press will stop or start the fan. Long pressing again will re-enable automatic mode.

If you ever need to stop the script running in the background, you can type in the terminal:

sudo systemctl stop pimoroni-fanshim.service

If you want to change the thresholds, e.g to change the on temperature to 75, the off temperature to 60, and the delay to 5 seconds, then you can type the following in the terminal:

sudo systemctl stop pimoroni-fanshim.service
sudo ./install-service.sh --on-threshold 75 --off-threshold 60 --delay 5

If you want to permanently disable the background script, you can type in the terminal:

sudo systemctl stop pimoroni-fanshim.service
sudo systemctl disable pimoroni-fanshim.service

Or to re-enable it:

sudo systemctl enable pimoroni-fanshim.service
sudo systemctl start pimoroni-fanshim.service

More examples

We've provided a few other examples that demonstrate the functionality of the Fan SHIM Python library, i.e. the RGB LED, and the tactile switch/button.

You can find the examples here, along with short descriptions of what each one does: https://github.com/pimoroni/fanshim-python/tree/master/examples.

The script supports these arguments:

    --on-threshold N the temperature at which to turn the fan on, in degrees C (default 65)
    --off-threshold N the temperature at which to turn the fan off, in degrees C (default 55)
    --delay N the delay between subsequent temperature readings, in seconds (default 2)
    --preempt preemptively kick in the fan when the CPU frequency is raised (default off)
    --brightness the brightness (value of HSV) of the LED (0-255, default 255)

Deprecated arguments

    --threshold N the temperature at which the fan should turn on, in degrees C (default 55)
    --hysteresis N the change in temperature needed to trigger a fan state change, in degrees C (default 5)

You can use systemd or crontab to run this example as a fan controller service on your Pi.

To use systemd, just run:

sudo ./install-service.sh

You can then stop the fan service with:

sudo systemctl stop pimoroni-fanshim.service

If you need to change the threshold, hysteresis or delay you can add them as arguments to the installer:

sudo ./install-service.sh --on-threshold 65 --off-threshold 55 --delay 2

To enable CPU-frequency based control:

sudo ./install-service.sh --on-threshold 65 --off-threshold 55 --delay 2 --preempt

You can also add --noled to disable LED control and/or --nobutton to disable button input.

Si jamais les commandes ci-dessus ne fonctionnent pas, il faut ajouter l'utilisateur courant au groupe gpio (groupe à créer s'il n'existe pas) :

sudo usermod -a -G gpio YourUserName

Ensuite, il faut relancer les services :

sudo systemctl daemon-reload
sudo systemctl stop pimoroni-fanshim
sudo systemctl start pimoroni-fanshim
Raspberry tutoriels
- https://learn.pimoroni.com/tutorial/sandyj/getting-started-with-fan-shim
REPORTING PM2.5 PM10 MICRO PARTICLE DUST SENSOR BY USING ARDUINO AND LORAWAN ATIM ACW-DUINO SHIELD
2020-01-8 12:25 - permalink -
arduino Raspberry
- https://www.thethingsnetwork.org/labs/story/reporting-pm25-pm10-micro-particle-dust-sensor-by-using-arduino-and-lorawan-atim-acw-duino-shield/step/sketch
How (Not) To Kill Your Pi’s SD Card – Howard Durdle
2020-01-8 11:17 - permalink -

Un peu extrême je trouve mais à creuser.

Raspberry raspian
- https://durdle.com/2017/01/04/how-not-to-kill-your-pis-sd-card/
Adafruit Learning System
2019-12-27 1:56 - permalink -

Plein de tutoriels

adafruit Raspberry
- https://learn.adafruit.com/
image - How can I convert a .img.xz file to .img to transfer it to my SDCard? - Raspberry Pi Stack Exchange
2019-12-25 21:50 - permalink -

Just use the unxz program:

unxz kali-1.1.0-rpi2.img.xz

Note: the original file will be removed. Only the .img file will remain. If you want to keep the original archive, use

unxz --keep kali-1.1.0-rpi2.img.xz

Les fichiers .xz sont des fichiers compressés. Un fichier .xz de 300Mo fait en fait aux alentours de 2Go

Linux Raspberry
- https://raspberrypi.stackexchange.com/questions/30246/how-can-i-convert-a-img-xz-file-to-img-to-transfer-it-to-my-sdcard/30247
Offrez une seconde vie à un vieux Raspberry Pi - Framboise 314, le Raspberry Pi à la sauce française....
2019-12-24 1:27 - permalink -
Afrique association don Raspberry écologie
- https://www.framboise314.fr/offrez-une-seconde-vie-a-un-vieux-raspberry-pi/
Utiliser FreeCAD et CURA sur un Raspberry Pi 4 - Framboise 314, le Raspberry Pi à la sauce française....
2019-12-24 0:35 - permalink -

Tout est dans le titre. Reste plus qu'à acheter un Pi4 et une imprimante 3D...

3D impression Raspberry
- https://www.framboise314.fr/utiliser-freecad-et-cura-sur-un-raspberry-pi-4/#more-33476
Err :1 http://distrib-coffee.ipsl.jussieu.fr/pub/linux/raspbian/raspbian buster/main armhf git armhf 1:2.20.1-2+deb10u1 Impossible d'initialiser la connexion à distrib-coffee.ipsl.jussieu.fr: 80 (134.157.176.20). - connect (101: Le réseau n'est pas accessible)
2019-12-11 23:6 - permalink -

Si lors d'une tentative de mise à jour d'un raspberry pi sous raspian, vous avez l'erreur ci-dessus, c'est que le serveur de mise à jour est inaccessible.
Modifier le fichier /etc/apt/sources.list peut résoudre le problème.

pi@raspberrypi:~ $ sudo nano /etc/apt/sources.list

Cela ouvre le fichier sus-nommé :

deb <a href="http://raspbian.raspberrypi.org/raspbian/">http://raspbian.raspberrypi.org/raspbian/</a> buster main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src <a href="http://raspbian.raspberrypi.org/raspbian/">http://raspbian.raspberrypi.org/raspbian/</a> buster main contrib non-free rpi

En décommentant la dernière ligne comme noté, cela a résolu le problème chez moi.

deb <a href="http://raspbian.raspberrypi.org/raspbian/">http://raspbian.raspberrypi.org/raspbian/</a> buster main contrib non-free rpi
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
deb-src <a href="http://raspbian.raspberrypi.org/raspbian/">http://raspbian.raspberrypi.org/raspbian/</a> buster main contrib non-free rpi

Un ctrl+x pour fermer et o pour enregistrer la modification

apt Linux mise-à-jour Raspberry raspian
- https://bookmarks.ecyseo.net/?upwKiA
Alléger Raspbian - MagdiBlog
2019-12-10 0:34 - permalink -
Raspberry tutoriels
- http://www.magdiblog.fr/divers/supprimer-les-paquets-inutiles-pour-alleger-raspbian/
Tuto : Bloquer toutes les publicités sur iPhone / iPad / PC et autres avec un Raspberry Pi - Place4geek
2019-12-10 0:19 - permalink -

Installation basique de Privoxy sur Raspberry Pi.

proxy publicité Raspberry serveurs vie-privée
- https://www.place4geek.com/blog/2015/04/tuto-bloquer-toutes-les-publicites-sur-iphone-ipad-pc-et-autres-avec-un-raspberry-pi/
YouTube thumbnail
PROTEGEZ, CHIFFREZ TOUTES VOS CONNEXIONS !!! BOX VPN DIY Raspberry Pi !! - YouTube
2019-12-3 23:42 - permalink -

Pas mal petit projet.

bricolage Les-frères-poulain Raspberry vpn
- https://www.youtube.com/watch?v=kWujr37V1BY
Communiquons avec le Raspberry Pi 3 | Blog | L'atelier de Kermith
2019-11-27 18:36 - permalink -

Intéressant.
À creuser.

Raspberry tutoriels
- https://www.sugarbug.fr/blog/files/raspberry-centreon-postfix.html
Les 42 commandes les plus utiles sur Raspberry PI - Semageek
2019-11-27 0:32 - permalink -

Pour rappel

Linux Raspberry
- http://www.semageek.com/les-42-commandes-les-plus-utiles-sur-raspberry-pi/
Mot de passe raspberry perdu
2019-11-18 23:23 - permalink -

Si vous avez perdu le mot de passe de votre raspberrypi, voici une méthode pour le récupérer.

La première chose à faire est d’accéder au fichier :

/etc/passwd

en sortant la carte sd du raspberry et en la mettant soit dans un adaptateur sd-usb, soit directement dans un ordinateur permettant d’utiliser une carte sd.

On peut alors avoir accès aux trois partitions de la carte et trouver le fichier en question (en cherchant un peu).

Dans ce fichier, il faut trouver la ligne :

pi:x: ...

et effacer le x de la ligne (mais pas les : de chaque côté), de manière à obtenir :

pi:: ...

On a ainsi effacé le mot de passe demandé pour la connexion en ligne de commande du raspberrypi. Il faut bien entendu ne pas oublier d’enregistrer.

Puis on éjecte la carte sd, on la remet dans le raspberry et on le démarre.

Si c’est l’interface en ligne de commande qui apparaît, on peut alors se connecter directement sous le compte pi, sans mot de passe. Si c’est l’interface graphique qui apparaît, ce n’est pas possible. Il faut alors utiliser les touches <Ctrl><Alt><F1> pour obtenir l’invite en ligne de commande et se connecter sur le raspberry sous le compte pi, sans mot de passe.

Le mot de passe pour la ligne de commande est donc maintenant vide, mais pas celui permettant de se connecter graphiquement. Cependant, on est maintenant connecté en ligne de commande sur le raspberry. On peut donc maintenant utiliser l’utilitaire de configuration du raspberry en entrant :

sudo raspi-config

Il va alors apparaître différentes options en ligne de commande permettant la configuration du raspberry, dont le changement du mot de passe. En choisissant celle-ci et en entrant deux fois le nouveau mot de passe, on peut changer définitivement celui-ci.

Il suffit alors de quitter la console par un exit, puis de retrouver l’interface graphique par <Ctrl><Alt><F7 ou F8> et vous connecter. Si la console grahique n’est pas présente, redémarrez simplement.

Voilà. En vous souhaitant bonne chance dans vos manipulations, enjoy.

configuration mot-de-passe Raspberry
- https://www.cvgg.org/wordpress/blog/mot-de-passe-raspberry-perdu/
Transformer une imprimante USB en imprimante WiFi - Framboise 314, le Raspberry Pi à la sauce française....
2019-10-7 23:28 - permalink -
Raspberry wifi
- https://www.framboise314.fr/transformer-une-imprimante-usb-en-imprimante-wifi/
page 6 / 9


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