Jump to content

Orange Pi 5 Max Ubuntu 24.04 (Armbian Linux v6.1) - web browser problem


Recommended Posts

Posted

I installed the Desktop images with Armbian Linux v6.1 (Ubuntu 24.04 (Noble), build Date: Feb 20, 2025), found that Chrome does not exist. Then I used the Synaptic Package Manager to install it, but the following error appeared: 

 

Firefox also not work nor cannot update.

 

If anyone experencied the same? Thanks.

 

 

20250227_203719.jpg

Posted

Try an image with mesa-vpu extension present or build one. I think that ships a modified version to make use of hw acceleration better than stock.

Posted

Thanks. I did apt upgrade, then the firebox was updated and can use. But, after I reboot it, the wifi adapter disappeared. Checked by the command: lshw -C network, the wifi adapter was disappeared. How can I fix?

 

Thank you very much for your help.

 

Posted

I searched on the https://github.com/Joshua-Riek/ubuntu-rockchip/releases, there is a mentioning: v2.3.2 Fixed wireless interface not showing up after a reboot on the Orange Pi 5 Pro.

 

I already tried this build and there is really no wifi adapter missing problem, but the rknpu driver is of version 0.9.7, where the one got problem, the driver version is 0.9.8, which seems to be better. So, I want to run the AI processes by using the new npu driver.

 

Thank you very much.

 

 

Posted

i can solve it in orange pi 5 plus
i wrote this script
it can use the latest stable firefox and add it to gnome menu
 

#!/bin/bash

# Define necessary paths
APP_DIR="$HOME/firefox"
APP_PATH="$APP_DIR/firefox"
ICON_URL="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a0/Firefox_logo%2C_2019.svg/220px-Firefox_logo%2C_2019.svg.png"
ICON_PATH="$APP_DIR/firefox.png"
DESKTOP_FILE_PATH="$HOME/.local/share/applications/firefox.desktop"
PACKAGE_NAME="firefox-deb"

# Create necessary directories
mkdir -p "$APP_DIR"
mkdir -p "$PACKAGE_NAME/usr/local/bin"
mkdir -p "$PACKAGE_NAME/usr/share/icons/hicolor/256x256/apps"
mkdir -p "$PACKAGE_NAME/usr/share/applications"

# Download Firefox tarball (if not already downloaded)
if [ ! -f "$HOME/Downloads/firefox-136.0.tar.xz" ]; then
    wget https://ftp.mozilla.org/pub/firefox/releases/136.0/linux-aarch64/fa/firefox-136.0.tar.xz -P "$HOME/Downloads"
fi

# Extract Firefox
tar -xf "$HOME/Downloads/firefox-136.0.tar.xz" -C "$APP_DIR"

# Move Firefox to proper directory
cp -r "$APP_DIR/firefox" "$PACKAGE_NAME/usr/local/bin/"

# Download Firefox icon
wget "$ICON_URL" -O "$PACKAGE_NAME/usr/share/icons/hicolor/256x256/apps/firefox.png"

# Create the .desktop file
echo "[Desktop Entry]
Name=Firefox
Comment=Browse the World Wide Web
Exec=/usr/local/bin/firefox/firefox %u
Icon=$ICON_PATH
Terminal=false
Type=Application
Categories=Network;WebBrowser;
MimeType=x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;" > "$PACKAGE_NAME/usr/share/applications/firefox.desktop"

# Make the .desktop file executable
chmod +x "$PACKAGE_NAME/usr/share/applications/firefox.desktop"

# Build the .deb package
dpkg-deb --build "$PACKAGE_NAME"

# Install the .deb package
sudo dpkg -i "$PACKAGE_NAME.deb"

# Update GNOME menu
sudo update-desktop-database

echo "Firefox package has been successfully installed and added to GNOME menu."

Posted

Hi seyed.mostafa ziaei,

 

I followed your script and applied, but some errors resulted as attached.

 

I tried to find out, but do not have any idea why there is error in 'dpkg-deb --build "$PACKAGE_NAME'. Would you please help again?

 

Thank you very much.

 

 

Screenshot from 2025-03-07 00-26-36.png

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines