Which version of system do you use? Khadas official images, self built images, or others?
The official Khadas image for Ubuntu 24.04
Please describe your issue below:
when opening chromium there is always a message popping up that there is a security issue because there it was started with the --no-sandbox flag.
I checked wheter me personally needed the --no-sandbox flag and came to the conclusion I dont. Is there any reason to have it in the file “/etc/chromium.d/default-flags”?
Should I just comment the line under Sandbox related flags to run in sandbox mode ?
Is there anything, I am missing why the following line shouldn’t be deleted/commented out ?
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-sandbox --gpu-sandbox-start-early --ignore-gpu-blocklist --enable-unsafe-webgpu"
Post a console log of your issue below:
cat /etc/chromium.d/default-flags
# A set of command line flags that we want to set by default.
# Do not hide any extensions in the about:extensions dialog
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --show-component-extension-options"
# Enable GPU rasterization.
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --enable-gpu-rasterization"
# Don't display any warnings about not being the default browser
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-default-browser-check"
# Disable pinging
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --disable-pings"
# Disable the builtin media router (bug #833477)
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --media-router=0"
# GPU related flags
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --use-gl=angle --use-angle=gles-egl --use-cmd-decoder=passthrough --ozone-platform-hint=wayland"
# Sandbox related flags
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-sandbox --gpu-sandbox-start-early --ignore-gpu-blocklist --enable-unsafe-webgpu"
# Enable HW accelerated encode and decode
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --enable-accelerated-video-decode --enable-features=VaapiVideoDecoder,VaapiVideoEncoder"