markdown 覆盆子pi飞溅屏幕

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 覆盆子pi飞溅屏幕相关的知识,希望对你有一定的参考价值。

# Introducción

Cambiamos la splash screen de raspberry pi por una imagen
estática o animada. [Podemos consultar](https://yingtongli.me/blog/2016/12/21/splash.html) la web desde la que se obtuvo esta guía paso a paso.

## Desactivar la opción por defecto

- Desactivamos el "color test" de raspberry
y un borde negro que se introduce a nivel de hardware en `/boot/config.txt`
```shell
disable_splash=1
disable_overscan=1
```

- Eliminamos logo raspberry y algunos mensajes de verificación
agregando al final de la linea (ojo a los espacios) en `/boot/cmdline.txt`
```shell
logo.nologo consoleblank=0 loglevel=1 quiet
```

- Desactivamos el prompt de login
```shell
systemctl disable getty@tty1
```

## Crear la nueva splash screen

Para ello vamos a usar el programa "fbi" y no,
no van a venir los americanos a tu casa. . . o sí.

- Empecemos por la instalación:
```shell
sudo apt install fbi
```

- Agregamos configuración de fbi en `/etc/systemd/system/splashscreen.service`.
**IMPORTANTE:** cambia `/opt/splash.png` por la ruta a tu imagen.
```shell
[Unit]
Description=Splash screen
DefaultDependencies=no
After=local-fs.target

[Service]
ExecStart=/usr/bin/fbi -d /dev/fb0 --noverbose -a /opt/splash.png
StandardInput=tty
StandardOutput=tty

[Install]
WantedBy=sysinit.target
```

Aquí unas pocas explicaciones sobre todo lo que vemos arriba,
si no te interesan pasa directamente al siguiente punto.

- La opción **-d /dev/fb0** se usa para saber en que framebuffer mostar la imagen.
- **--noverbose** elimina la barra de estado de fbi.
- **-a** will allow fbi to automatically select the correct zoom level for the image. If your image is already at the correct resolution for the display, you may omit this option.

fbi expects access to a tty, so the StandardInput and StandardOutput options will allow for this. You may also be able to omit these options and instead pass the -T flag to fbi, specifying the number of the tty you wish to use.

The DefaultDependencies option will override systemd's default behaviour of launching the service late in the boot process (as most ordinary services require access to resources), and the WantedBy option will cause fbi to be loaded early in the boot process, though not before the file system (and hence image) are ready, through the After option.

- Habilitamos e iniciamos la splash screen:

```shell
systemctl enable splashscreen
systemctl start splashscreen
```

## Splash screen animada

Puesto que depende de un repositorio de 2012 sin commits desde entonces
y el que no he testeado, no voy a profundizar en el tema. En la
[documentación](https://yingtongli.me/blog/2016/12/21/splash.html#animated-splash-screens)
podrás encontrar toda la información detallada paso a paso.

以上是关于markdown 覆盆子pi飞溅屏幕的主要内容,如果未能解决你的问题,请参考以下文章

markdown vnc_viewer与覆盆子pi

text 如何禁用覆盆子pi上的屏幕消隐。您需要在文件中插入此条目:/etc/lightdm/lightdm.conf

text 覆盆子pi

text 无头覆盆子pi设置

sh 覆盆子PI - 设置

sh 覆盆子-PI-2