Contenido
SBC-BENCH
Incluso puedes tener un estupendo Benchmark para comparar distintos SBC con este SBC-BENCH
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | pi@RPi4:~ $ wget https://raw.githubusercontent.com/ThomasKaiser/sbc-bench/master/sbc-bench.sh pi@RPi4:~ $ sudo /bin/bash ./sbc-bench.sh -c sbc-bench v0.7.6 Installing needed tools. This may take some time... Done. Checking cpufreq OPP... Done. Executing tinymembench. This will take a long time... Done. Executing OpenSSL benchmark. This will take 3 minutes... Done. Executing 7-zip benchmark. This will take a long time... Done. Checking cpufreq OPP... Done. It seems neither throttling nor frequency capping has occured. Memory performance: memcpy: 2540.7 MB/s memset: 3598.4 MB/s (0.8%) 7-zip total scores (3 consecutive runs): 5698,5669,5691 OpenSSL results: type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes aes-128-cbc 62549.38k 76458.26k 83053.14k 84456.11k 85215.91k 84934.66k aes-128-cbc 62609.39k 76566.83k 83095.38k 84761.26k 85144.92k 85191.34k aes-192-cbc 56258.17k 67316.76k 72054.78k 73226.92k 73596.93k 73711.62k aes-192-cbc 56288.86k 67499.99k 71992.15k 73328.30k 73689.77k 73640.62k aes-256-cbc 50997.34k 59890.58k 63549.01k 64599.04k 64907.95k 64924.33k aes-256-cbc 50895.56k 60060.27k 63681.02k 64561.49k 64943.45k 64951.64k Full results uploaded to http://ix.io/2NJc. Please check the log for anomalies (e.g. swapping or throttling happenend) and otherwise share this URL. |
Aunque la verdad es que son unas fotos «horribles» por su colorido nos costó mucho trabajo tomarlas por lo que queremos compartirlas con vosotros 😉
Y aquí «desvelando» una de nuestras próximas revisiones
Se nos ha olvidado comentar en la revisión que, a pesar de ser una carcasa metálica y que la RPi no tiene antena externa, la WiFi funciona sin problemas de cobertura o velocidad
Dicho y hecho. Os prometimos aclarar las dudas que nos habían quedado tras la revisión de las carcasas y Jason, su creador, nos ha contestado esto:
“The top of the case is metal in both cases. Because we do not CNC the case, it would be very difficult to keep the top surface perfect. So a piece of plastic clips into the top on both cases which help visually, and artistically. This does not effect heat transfer since the case acts as a heat spreader, not a heat sink. They are the same plastic, however, in the larger case, we use a material spray called soft touch. Since this case generally sits in one place, it’s perfect. The pi zero case is meant to be thrown in a bag, and would eventually look terrible with the soft touch rubbing off, so we chose to remove it which also helps keep the cost down.
The holes previously were put in to help with convection cooling, but after a lot of testing and analysis, it didn’t help. They were superficial and ended up hurting us in the end. The reason being, once we have holes, we need supporting ribs. These ribs extend up towards the circuit board, however, the pi foundation would often put a component that would hit a rib. It was better for forward compatibility, revision changes, to lose them.”
Por cierto y para que no se me olvide, simplemente comentar que al final he decidido olvidarme de mi cámara de visión nocturna y utilizar una «vulgar» cámara USB que se puede utilizar en la RPi sin problema alguno.
Aquí tenéis las instrucciones que son de lo más sencillo.
Consejos para alargar la vida de una SD
Las tarjetas SD adolecen de una vida muy, muy corta. No es un problema de la RPi, sino de la tecnología de estas tarjetas de memoria.
Para alargar la vida de nuestra tarjeta SD y que no nos deje tirado rápidamente, te doy estos consejos:
Eliminar el swaping
El swaping vuelca el contenido de la memoria en un fichero o partición para estos menesteres:
sudo swapoff all
Eliminar el paquete que se encarga en Raspbian del swaping:
sudo aptget remove dphysswapfile
Usa la memoria RAM para determinados directorios.
Hay determinados directorios que pueden ser escritos directamente en RAM.
El inconveniente es que, cuando se desconecte la energía perderemos la información.
Por ejemplo /var/log machaca contínuamente la tarjeta SD. Para que sea escrita en RAM, modifica así /etc/fstab
Añadir una línea a /etc/fstab
tmpfs /var/log tmpfs nodev,nosuid,size=20M 0 0
Comprobamos:
cat /etc/fstab
proc /proc proc defaults 0 0
/dev/mmcblk0p1 /boot vfat defaults 0 2
/dev/mmcblk0p2 / ext4 defaults,noatime 0 1
# a swapfile is not a swap partition, so no using swapon|off from here on, use dphysswapfile swap[on|off] for that
tmpfs /var/log/ tmpfs defaults,noatime,nosuid,mode=0755,size=20M 0 0
Después de reiniciar, el sistema de log no volverá a escribir en la SD. Lo hará en la RAM
Si creéis que esa es la mejor carcasa es porque no conocéis la Argon ONE M.2
¿Y qué tal va de ruido el ventilador?