How to change custom Logo with OEM Licence in touch screen

How to change the custom Logo with OEM Licence on the touch screen as I don't know to code?

Comments

  • The touch interface has no logo as far as I know.

    The only time it would appear is during boo tup, but that is not part of server. It is part of linux plymouth config. In folder /usr/share/plymouth/themes/pix/ the file splash.png

  • So how can we change the boot-up logo.
    please share in detail.
  • You replace the existing splash.png with your image should be all required.
  • edited July 9
    where is the splash.png file located??
    please find the below image, I can only see the below options on my terminal
    https://drive.google.com/file/d/1Nzx3MPQ0FWxjYVNrlSu7XkTs0O-ktKZy/view?usp=sharing

    Please help me to navigate to the exact folder, where I can make this change.
  • As I said in previous post it is in /usr/share/plymouth/themes/pix/ folder. You need to exit our config tool since it has no function to do that. You need to copy it with a ssh file browser somewhere where you can write to and copy it with sudo privileges e.g. if stored in pi home directory
    sudo cp splash.png /usr/share/plymouth/themes/pix/
    should do it. Then on next reboot you should see it.
  • edited July 10
    Hi,
    Thanks for your guidance here.

    pi@RepetierServer:/usr/share/plymouth/themes/pix $ ls -ltr
    total 140
    -rw-r--r-- 1 root root 44093 Mar 23  2022 splash_orig.png
    -rw-r--r-- 1 root root  1286 Sep 12  2022 pix.script
    -rw-r--r-- 1 root root   187 Sep 12  2022 pix.plymouth
    -rw-r--r-- 1 root root 36975 Sep 14  2022 splash_old.png
    -rw-r--r-- 1 root root 47899 Sep 16  2022 splash.png
    pi@RepetierServer:/usr/share/plymouth/themes/pix $ mv splash.png splash_bkp.png
    mv: cannot move 'splash.png' to 'splash_bkp.png': Permission denied
    pi@RepetierServer:/usr/share/plymouth/themes/pix $


    I don't see write permissions on this file, please advise how can I replace this .png file with my logo.png file




  • You need to execute the commands as root because only root has write permission, so gut always sudo befor manipulating commands:
    sudo mv splash.png splash_bkp.png

    or become root so you can omit that:
    sudo -i

  • ok yes! thanks that worked however once I have downloaded by my image using the command:
    sudo wget sudo wget https://drive.google.com/file/d/12SO5y1fXYYVPLhEXxGDNLyH8bIWGXFzM/view?usp=sharing

    on location : 

    pi@RepetierServer:/usr/share/plymouth/themes/pix $ ls -ltr
    total 220
    -rw-r--r-- 1 root root 44093 Mar 23  2022 splash_orig.png
    -rw-r--r-- 1 root root  1286 Sep 12  2022 pix.script
    -rw-r--r-- 1 root root   187 Sep 12  2022 pix.plymouth
    -rw-r--r-- 1 root root 36975 Sep 14  2022 splash_old.png
    -rw-r--r-- 1 root root 47899 Sep 16  2022 splash_bkp.png (existing splash.png, which I have renamed)
    -rw-r--r-- 1 root root 80095 Jul 10 16:08 splash.png (my downloaded image)
    pi@RepetierServer:/usr/share/plymouth/themes/pix

    but still after reboot, I can only see a blank white screen for fraction of second and my logo is not visible there.
  • So our boot image is now vanished, but yours does not appear?

    In that case make sure it is really a png file and nor a jpg. Original is 1280x960px size. Can not say if that is importnant as well. The official files in rasbian were 1024x768 pixel.
Sign In or Register to comment.