Raspberry Pi
Sources:
- Kiosk :
- Adafruit-Pi-Finder - https://github.com/adafruit/Adafruit-Pi-Finder
- Personnaliser PiXeL - http://www.framboise314.fr/14-trucs-a-connaitre-pour-personnaliser-raspbian-pixel/
- config.txt explained - https://github.com/Evilpaul/RPi-config/blob/master/config.txt
- GPIO Pinout - https://pinout.xyz/
Distributions
- SBCGaming List - https://www.reddit.com/r/SBCGaming/wiki/pidiskimages_definitivelist
- Raspbian - Debian for raspberry (PIXEL or mininmal )- https://www.raspberrypi.org/downloads/raspbian/
- Minibian - Version Lite de Raspbian - https://minibianpi.wordpress.com/
- DietPi - Minimal Optimized - http://dietpi.com/
- ua-netinst - Net Install minimalist - https://github.com/debian-pi/raspbian-ua-netinst
- ChromiumOS - - http://www.chromiumosforsbc.org/install/
- RaspBSD - FreeBSD 11 -http://raspbsd.org/
- Minix3 - - https://github.com/aunali1/Minix3-RPI
- OSMC - KODI Frontend - https://osmc.tv/
- LibreElec - KODI Multimedia Frotend Optimized - https://libreelec.tv/
- NAS4Free - NAS - http://www.nas4free.org/index.php?id=3
- Gladys - Assitant Domotique - http://gladysproject.com/fr/
- ArkOs - Server Oriented ArchLinux - https://arkos.io/
- OpenWRT - Router Embedded OS - https://wiki.openwrt.org/toh/raspberry_pi_foundation/raspberry_pi
- FreedomBox - Privacy server oriented os - https://www.freedomboxfoundation.org/
- iCarus - Ca OnBoard - http://i-carus.com/
- Aros Broadway - AmigaOS - http://www.aros-broadway.de/downloads/index.html
- OpenSuse - https://en.opensuse.org/HCL:Raspberry_Pi
- CIRCLean - USB Cleaner https://github.com/CIRCL/Circlean
- Blast16 - SEGA emu - http://www.blast16project.com/
Own Distrib Builder
Matériels
- Box Domotique https://github.com/lunarok/jeedom_ynh
- https://shop.fsf.org/storage-devices/neug-usb-true-random-number-generator - Générateur d'entropie
- Cheap Serial server - http://lesser-evil.com/2013/04/raspberry-pi-ser2net-cheap-nm16a-serial-console-server/
- Power Button GPIO - https://www.makeuseof.com/tag/add-reset-switch-raspberry-pi/ script poweroff monitor - https://www.reddit.com/r/RetroPie/comments/65wsrx/the_borkin_button_easy_raspberry_pi_power_button/
- Cases - https://elinux.org/RPi_Cases
- Wifi drivers - https://pimylifeup.com/raspberry-pi-nexmon/
Emulation/Virtualisation
- Virt with QEMU - https://github.com/dhruvvyas90/qemu-rpi-kernel
- Chroot manuel - https://powersj.github.io/post/raspbian-edit-image/
- Chroot scripté sans net - https://gist.github.com/htruong/7df502fb60268eeee5bca21ef3e436eb
- Chroot scripté avec net - https://tutox.fr/2020/01/08/comment-chroot-une-raspbian-sur-son-linux-script/
- Chroot voir commentaire pour losetup - https://gist.github.com/jkullick/9b02c2061fbdf4a6c4e8a78f1312a689
- QEMU RPI-Kernel - https://github.com/dhruvvyas90/qemu-rpi-kernel
Projets
- Recovery Kit - https://back7.co/home/raspberry-pi-recovery-kit
Apps
MPD
Repository
Interne
Externe
Optimisations
https://korben.info/f2fs-systeme-de-fichiers-pense-raspberry-pi-linstaller.html
http://www.instructables.com/id/Ultimate-Raspberry-Pi-Configuration-Guide/
Upgrade
Récupérez 1 GB d’espace
Si vous utilisez Rapsbian sur votre Raspberry Pi, vous ne le savez peut être pas, mais il est possible de libérer 1 GB d'espace sur la carte SD assez facilement. En effet, LibreOffice, Wolfram, Minecraft et Sonic qui sont présents par défaut dans l'OS bouffent un max de place.
Il faut purger et désinstaller les applications comme ceci :
sudo apt-get autoremove –purge wolfram-engine minecraft-pi sonic-pi libreoffice*
Terminez ensuite avec un petit :
sudo apt-get clean
MOTD
Enable ssh
Utiliser une horloge RTC
Wifi
AP ou Hotspot
AdWare Blocking
DNS
Boot Splash
No-Wire
RetroPIE
Reduce Usage
Plus d'écran de veille
Read-Only
Git Server
PIXEL
LegoCAD
Power
Access over USB
Nextcloud
cyclon robotics
Light Web Server
Peritel -> VGA
Supervision screen
Security cam
Netcat Pipe
https://learn.adafruit.com/raspipe-a-raspberry-pi-pipeline-viewer-part-2/networked-pipes-with-netcat
Network-manager
IMG only used space
Use dd, with the count option.
In your case you were using fdisk so I will take that approach. Your “sudo fdisk -l “produced:
Disk /dev/sda: 64.0 GB, 64023257088 bytes 255 heads, 63 sectors/track, 7783 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x0000e4b5
Device Boot Start End Blocks Id System /dev/sda1 * 1 27 209920 83 Linux Partition 1 does not end on cylinder boundary. /dev/sda2 27 525 4000768 5 Extended Partition 2 does not end on cylinder boundary. /dev/sda5 27 353 2621440 83 Linux /dev/sda6 353 405 416768 83 Linux /dev/sda7 405 490 675840 83 Linux /dev/sda8 490 525 282624 83 Linux
The two things you should take note of are 1) the unit size, and 2) the “End” column. In your case you have cylinders that are equal to 8225280 Bytes. In the “End” column sda8 terminates at 525 (which is 525[units]*16065*512 = ~4.3GB)
dd can do a lot of things, such as starting after an offset, or stopping after a specific number of blocks. We will do the latter using the count option in dd. The command would appear as follows:
sudo dd if=/dev/sda of=/your_directory/image_name.iso bs=8225280 count=526
Where -bs is the block size (it is easiest to use the unit that fdisk uses, but any unit will do so long as the count option is declared in these units), and count is the number of units we want to copy (note that we increment the count by 1 to capture the last block).