Remove Jetson NVIDIA_Login_logo from Ubuntu Login Page

Hi,
I am using Orin NX 16GB Module with waveshare carrier board. Flashed the custom logo , 6.2.1(rev 1) Jetpack. And also suppressed all the logs. I tried to disable the Ubuntu login logo which is /usr/share/backgrounds/NVIDIA_Login_Logo.png. I added (option “NoLogo“ “true“) in the /etc/X11/xorg.conf . For reference I am adding the file content.

# Disable extensions not useful on Tegra.
Section “Module”
 Disable     "dri"
 SubSection  "extmod"
    Option  "omit xfree86-dga"
 EndSubSection
EndSection

Section “Device”
 Identifier  "Tegra0"
 Driver      "nvidia"
# Allow X server to be started even if no display devices are connected.
 Option      "AllowEmptyInitialConfiguration" "true"
EndSection

Section “ServerFlags”
 Option "NoLogo" "true"
EndSection

And also tried to create nosplash.config inside the xorg.config.d

Section “Device”
Identifier “Nvidia Card”
Driver “nvidia”
VendorName “NVIDIA Corporation”
Option “NoLogo” “true”
EndSection

please let me know the solution for this.

Hi,

Please try below steps

vim ~/.xsessionrc 
+#logo_path="/usr/share/backgrounds/NVIDIA_Login_Logo.png"
# Set NVIDIA Logo on all displays after user login to desktop
+#if [ -x "/usr/bin/feh" ] && [ -r "${logo_path}" ]; then
+#       feh --no-fehbg --bg-scale "${logo_path}"
+#fi

Thanks