User:Innsill/omxplayer-starter (amdhf): Difference between revisions

From Alpine Linux
No edit summary
No edit summary
Line 20: Line 20:
tty2::respawn:/sbin/getty 38400 tty2
tty2::respawn:/sbin/getty 38400 tty2
#tty3::respawn:/sbin/getty 38400 tty3 </nowiki>}} </br> vi {{c| .profile}} {{cat |/root/.profile |<nowiki>mount /dev/sda1 /mnt
#tty3::respawn:/sbin/getty 38400 tty3 </nowiki>}} </br> vi {{c| .profile}} {{cat |/root/.profile |<nowiki>mount /dev/sda1 /mnt
mount /dev/sda /mnt
cd /mnt
cd /mnt
VIDEO=$( ls | sort )
VIDEO=$( ls | sort )

Revision as of 16:21, 17 November 2019

Warning:

Be careful !

Spy backdoors China/Huawei !

Spy backdoors USA/Microsoft: Archive, Source, ThreadX



  1. https://alpinelinux.org/downloads/
    • alpine-rpi-3.10.3-armhf.tar.gz
    • alpine-rpi-3.10.3-armhf.tar.gz.sha256
      • sha256sum --check alpine-rpi-3.10.3-armhf.tar.gz.sha256

  2. find / -name setup* -print | sort
    • setup-alpine

  3. omxplayer ?
    • vi /etc/apk/repositories
    • apk update && apk upgrade
    • apk add omxplayer

  4. vi /etc/inittab

    Contents of /etc/inittab

    tty1::respawn:/bin/login -f root tty2::respawn:/sbin/getty 38400 tty2 #tty3::respawn:/sbin/getty 38400 tty3

    vi .profile

    Contents of /root/.profile

    mount /dev/sda1 /mnt mount /dev/sda /mnt cd /mnt VIDEO=$( ls | sort ) for i in $VIDEO do omxplayer $i done

    lbu include /root/.profile
    lbu commit