Subcategories

  • This section is specifically useful for new contributors on the project

    7 Topics
    27 Posts
    libremaxL
    @wqyeo There is a telegram group dedicated to quality assurance: https://t.me/ubports_qa_team Hope it may be useful for you
  • Discuss and solve problems with other users

    99 Topics
    690 Posts
    H
    The issue was me not having a screen lock passcode defined. Not sure if this is the best way to approach this, a settings page for editing user information (including name and root password) would be useful, that one could then opt out for the screenlock.
  • 161 Topics
    1k Posts
    MoemM
    @klh I'll edit it.
  • Where can i find a IMG or iso for Ubuntu touch?

    Moved
    3
    0 Votes
    3 Posts
    3k Views
    KenedaK
    @techgeekunited There is not one IMG for Ubuntu Touch. There is as much images as there are ported devices. And those images are managed by UBports installer when installing to a device.
  • Default sudo password

    23
    1 Votes
    23 Posts
    15k Views
    A
    Thanks! I was wondering what default sudo password was.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • Unable to update to OTA-5 on Focal - Fairphone 4

    Solved
    3
    2
    0 Votes
    3 Posts
    404 Views
    C
    @arubislander Resolved. Thank you
  • Crypt /home/phablet with Gocryptfs

    Unsolved
    1
    1 Votes
    1 Posts
    438 Views
    No one has replied
  • Undo OTA update?

    Unsolved
    3
    0 Votes
    3 Posts
    535 Views
    AppLeeA
    Hello, It's not possible to revert OTA update on the same channel. So if you updated to OTA5 on RC channel, you can go back to OTA4 on stable. But once released on stable there is no coming back except if you saved the system.img files so you can manually go back. That's why it's important to have as many testers as possible for a release candidate versions. So the release could be stopped in case of a blocking point. But in this case, an issue with a specific application on Waydroid will not qualify as a blocking point, but at least people would know before the stable release.
  • Help installing openvpn3 client on UT

    Unsolved
    4
    0 Votes
    4 Posts
    937 Views
    LuksusL
    @Plarde maybe have a look here: https://forums.ubports.com/post/80411
  • Oura Ring App

    Unsolved
    3
    0 Votes
    3 Posts
    957 Views
    D
    @AppLee Yes, I found the APK and tried to download it....but it says it is downloading and never does!
  • Accessibility option for disabled people

    Unsolved accessibility zoom
    6
    0 Votes
    6 Posts
    1k Views
    KenedaK
    https://open-store.io/app/ut-tweak-tool.sverzegnassi
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    38 Views
    No one has replied
  • Busy line issue

    Unsolved
    1
    1 Votes
    1 Posts
    226 Views
    No one has replied
  • Has anyone tried to configure 'distcc cluster' from Ubuntu Touch phones?

    Unsolved
    1
    0 Votes
    1 Posts
    257 Views
    No one has replied
  • Locking 4G LTE

    Unsolved
    3
    0 Votes
    3 Posts
    639 Views
    GermanAizekG
    @Keneda yes, but now with 2g/3g/4g mode, modem eats a lot of battery by scanning different bands. I previously suggested editing the modes and adding "3G only" and "4g only" to oFono. But I was told that it is not a fact that it will work on all modems.
  • Calendar freezes on winter...

    Unsolved
    4
    0 Votes
    4 Posts
    815 Views
    N
    @lduboeuf I'm running 20.04 OTA-5 rc. But the problem arose last winter, when I was on OTA-2. This year (I have three young children and many activities) I didn't want to make the calendar if it wasn't going to be useful. I'll try a couple of events and change the time manually to see what happens...
  • Pro1 X keyboard backlight

    Unsolved
    6
    0 Votes
    6 Posts
    899 Views
    A
    @arubislander Excellent news, not least because the script I linked to earlier doesn't work as is, and will need further work
  • Problem on Fx pro1 Azerty keybord layout

    Unsolved
    4
    0 Votes
    4 Posts
    534 Views
    AppLeeA
    Hi @dovakin_poulet No problem. I was just saying... I don't know how to work around this issue, but if you know your way around Linux, I would try remapping the keys but I don't think xmodmap is available on the device...
  • Devices connected to 'hotspot' use the VPN established on phone

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    MrT10001M
    @icmp15 it should work. I haven't used a VPN on a hotspot, but used it for WiFi and data. The hotspot should go to the VPN first.
  • USB DAC not recognized

    Unsolved usb dac driver
    5
    0 Votes
    5 Posts
    1k Views
    H
    Hey I tried the following: make / writable. check Vendor ID and Product ID with after you have plugged in the USB DAC : dmesg | grep Vendor for me => "New USB device found, idVendor=05ac, idProduct=110a, bcdDevice=26.50" (it is a: Apple, Inc. USB-C to 3.5mm Headphone Jack Adapter) (for another product with another Vendor and Product ID icould also get another DAC work) in cd /etc/udev/rules.d create: # USB-DAC plug in ATTRS{idVendor}=="05ac", ATTRS{idProduct}=="110a", ACTION=="add", RUN+="/usr/local/bin/load_dac_module.sh" # USB-DAC unplug ATTRS{idVendor}=="05ac", ATTRS{idProduct}=="110a", ACTION=="remove", RUN+="/usr/local/bin/unload_dac_module.sh" reload udev rules: sudo systemctl daemon-reload sudo udevadm trigger check aplay -l for me: => card 1 and Device 0 in /usr/local/bin/ create the scripts: 1. /usr/local/bin/load_dac_module.sh #!/bin/bash sleep 1 sudo -u phablet pactl --server "unix:/run/user/32011/pulse/native" load-module module-alsa-sink device=hw:1,0 /usr/local/bin/unload_dac_module.sh #!/bin/bash # search for loaded module sleep 1 USER="phablet" #USERID from phablet= "32011 PULSE_SERVER="unix:/run/user/32011/pulse/native" MODULE_ID=$(sudo -u $USER pactl --server "$PULSE_SERVER" list short modules | grep module-alsa-sink | awk '{print $1}' ) # unload PulseAudio-Module , if it was loaded before if [ -n "$MODULE_ID" ]; then # pactl unload-module $MODULE_ID sleep 1 sudo -u phablet pactl --server "unix:/run/user/32011/pulse/native" unload-module $MODULE_ID fi make the files writable: sudo chmod +x /usr/local/bin/load_dac_module.sh sudo chmod +x /usr/local/bin/unload_dac_module.sh unplug USB DAC reboot (if the USB DAC was plugged at boot it seem that the DAC does not work than.) on a FP4 it took nearly 4 sec till the sound comes from the DAC Could somebody test and verify it? PS: this helped me: https://wiki.archlinux.org/title/PulseAudio/Examples#Automatically_switch_audio_to_HDMI
  • This topic is deleted!

    Unsolved
    0
    0 Votes
    0 Posts
    19 Views
    No one has replied
  • exporting a sound file

    Solved
    3
    0 Votes
    3 Posts
    511 Views
    F
    @Schlicki2808 Thanks- that worked! -Fizz