UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • S

      What do you use to root Oneplus Nord N10? SuperSU, Magisk, or something else?

      Watching Ignoring Scheduled Pinned Locked Moved Oneplus Nord N10
      5
      0 Votes
      5 Posts
      55 Views
      R
      OnePlus phones are very hard to brick. They can be recovered using the msmDownloadtool usually included with the image on the UT device's webpage. If it isn't, xda-developers has them, for every OnePlus model.
    • pparentP

      Support for Hotspot wifi captive portal via RFC 8910 and RFC 8908

      Watching Ignoring Scheduled Pinned Locked Moved OS
      8
      5 Votes
      8 Posts
      468 Views
      G
      @pparent said: this is kind of hard yes
    • H

      Has video/media playback improved?

      Watching Ignoring Scheduled Pinned Locked Moved Lenovo
      16
      0 Votes
      16 Posts
      2k Views
      G
      @hlbkv UT system is based on QT, whose graphic support on Linux is based on gstreamer libraries. Unfortunately by itself while wide, gstreamer support for advanced formats is not limitless. You can find mkv sample files here On Ubuntu 24.04 all files can be played by ffplay, even the invalid ones test4 and test7, while the standard gstreamer player (gst-play-1.0) can play 4 of them (2,3,5,7) if ffmpeg support (ffmpeg itself and the link library gstreamer1.0-libav) are not installed, and can play test1 and test6 if this support is enabled. Ubuntu Touch can play 4 of these sample files (the same as desktop Ubuntu can play if ffmpeg support is not enabled) gst-discoverer-1.0 test1.mkv (...) Properties: Duration: 0:01:27.336000000 Seekable: yes Live: no container #0: Matroska video #1: Microsoft MPEG-4 4.2 this 'Microsoft MPEG-4 4.2' is probably the same thing as your '10 bit support'. You can install mpv with snap, it can probably play your mkv files. Note that hardware support is not involved except when it comes to performance of course.
    • S

      Waydroid: no internet inside

      Watching Ignoring Scheduled Pinned Locked Moved Waydroid
      11
      0 Votes
      11 Posts
      4k Views
      I
      @malditobastardo Hello, I'm having the same issue on the OP5 / OP5T. So I tried the “rp_filter” solution : echo 0 > /proc/sys/net/ipv4/conf/eth0/rp_filter echo 0 > /proc/sys/net/ipv4/conf/all/rp_filter That fixed the problem. Could you please tell me how to fix this issue permanently? Thanks in advance.
    • BollyB

      New item in the UBports store

      Watching Ignoring Scheduled Pinned Locked Moved General
      4
      1
      2 Votes
      4 Posts
      249 Views
      BollyB
      Let's see if I can be quick and snag one of them. We're eagerly awaiting new products.
    • N

      ProtonVPN on UT24.04-1.2

      Watching Ignoring Scheduled Pinned Locked Moved Solved Support
      7
      0 Votes
      7 Posts
      681 Views
      PrometheusP
      @kugiigi Hello, Thank you for the inspiration to help others. Below are instructions for installing a single ProtoVPN Wireguard and multiple ProtonVPN Wireguard configurations along with method for mitigating autoconnect conflicts between them. INSTRUCTIONS TO INSTALL PROTON VPN WIREGUARD ON UBUNTU TOUCH 24.04 DOWNLOAD WIREGUARD CONFIG FILES FROM PROTON VPN WEBSITE https://account.protonvpn.com/downloads Give simple name (i.e. wg0, wg5, wg9, etc) to config file Select platform: GNU/Linux Select VPN options: (Block malware, ads & trackers) Select: VPN Accelerator Select either "Standard" or "Secure Core" configs Scroll down to choose and select "Create" Download conf file and make copy with simple name (i.e wg0.conf) WIREGUARD CONFIG INSTALL ON UBUNTU TOUCH 24.04 Manually Toggle WiFi OFF Open Terminal where wg0.conf file is located Execute following terminal commands: A. nmcli connection import type wireguard file wg0.conf B. nmcli connection modify wg0 ipv4.dns "" ipv4.dns-search "" ipv4.dns-priority "" C. nmcli connection modify wg0 ipv4.dns-priority -50 D. nmcli connection down wg0 && nmcli connection up wg0 Manually Toggle WiFi ON Check IP Address: https://protonvpn.com/what-is-my-ip-address MULTIPLE WIREGUARD CONFIG INSTALLS ON UBUNTU TOUCH 24.04 Manually Toggle WiFi OFF Open Terminal where wg0.conf file is located Execute following terminal commands: A1. nmcli connection import type wireguard file /path/to/wg0.conf A2. nmcli connection down wg0 B1. nmcli connection import type wireguard file /path/to/wg1.conf B2. nmcli connection down wg1 C1. ... C2. nmcli connection down wg# D1. nmcli connection import type wireguard file /path/to/wg9.conf D2. nmcli connection down wg9 To prevent conflicts with wg0 and all other wg# connections: A. nmcli connection modify wg0 autoconnect yes B. nmcli connection modify wg1 autoconnect no C. nmcli connection modify wg2 autoconnect no D. ... no E. nmcli connection modify wg9 autoconnect no nmcli connection down wg0 && nmcli connection up wg0 Manually Toggle WiFi ON TROUBLE-SHOOTING VIA TERMINAL To check wg0 connectino status: A. nmcli device status To delete wg0 and start over: A. nmcli connection delete wg0 To start wg0 connection A. nmcli connection up wg0 To stop wg0 connection A. nmcli connection down wg0