Subcategories

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

    3 Topics
    5 Posts
    J
    Wow, thanks a lot for the quick help! The merge request is up now.
  • Discuss and solve problems with other users

    94 Topics
    673 Posts
    pparentP
    @CatWithUT Thank you for your work it seems very interesting to me! Just a quick question: do you think it would be feasible to create a .click package and have it in the Openstore? In a similar fashion that uWolf and uFirefox does? Can we avoid libertine containers? Do you think upcoming Mir2.0 will change anything in this regard as it supports Wayland? Do you use Mobian build scripts for ARM, for signal-desktop? https://github.com/0mniteck/Signal-Desktop-Mobian/releases And also note: if we can get an initial version to build and make an UT package I'm willing to work on making patches to make the interface responsive as I have done with whatsapp web. I think this is the easy part. But we should first make a set of scripts to build automatically a binary, and then a click package that can run on UT.
  • 151 Topics
    1k Posts
    C
    @Vlad-Nirky Hello, thank you for this information. Of course it's stupid for me, but it makes things clear! My two most important apps establish data connections to devices via Bluetooth. It's about solar and LFP batteries I can probably forget that now. Have a nice evening & best regards Charly
  • TELEports freezes on enter of a group

    Unsolved
    10
    0 Votes
    10 Posts
    1k Views
    G
    I think it's not the image file, but the textual content of the messages itself. I catched one of the messages with the telegram-cli client, wrote it into a simple text file and sent it with cut&paste with telegram-cli to a tg account. When I then go with TELEports into the account from where I've sent the text(!!!), it blocks also. The textual content is between the "cut here" lines: -----cut here---------------- RT @TheCubanTech: @golrenier @FIDE_chess @mbejeranoj @Antonio_Sevila @dreg2k @WRV212 @aceraltos2001 @DeportesTeleSUR @InderCuba @Fedeajedrezsv @CirculodEspera @RadioCOCOnline @anavrin_rob @calamartinez86 @IPG1111 @diaz_capote @davidlahera15 @ReynierBatista @radiorebeldecu @jit_digital @TalanconNiurka @tele_rebelde @RadioRelojCuba @Daily_CVI @PortalCubaSi @lisychess @FedEcuAjedrez @CubaMES @CMontiller @CanalCaribeCuba @JuventudRebelde @Granma_Digital @USAChess @cvihdezlujan @caup_peru @DiegoLondo @chessbase_es @chesscom_es @GMJulioGranda @SabrinaVegaGut2 @chess24es @profesorajedrez @portalA21 @illescasmiguel @circulocapa @Fecodazajedrez Se está jugando #HOY #live la última ronda de @NorwayChess . Con 4 victorias seguidas @MagnusCarlsen🇳🇴 llegó a 18 pts y está de líder. @AlirezaFirouzja🇫🇷 , por su desempeño, es #1 ranking @FIDE_chess #top100 jr Partidas de la ronda anterior https://t.co/Zba6p9jxoW (via Twitter http://twitter.com/TheCubanTech/status/1438905423965392896) ------cut here-------- It takes TELEports some minutes to render this text into the screen. The problem is fully reproducible. I will sent an example to the UBports_[ENGLISH] group. Just check this with the TELEports client.
  • Encryption of a MicroSD card neccessary?

    Unsolved
    2
    0 Votes
    2 Posts
    380 Views
    arubislanderA
    @eclku0 said in Encryption of a MicroSD card neccessary?: Since the device is mounted inside of phablet, doesn't that mean that everything I write to it is encrypted? To start with your last question. No. Even if you would mount your SD card under the phablet home directory, it would still be unencrypted. What filesystem did you format your SD card with? There is a files size limit to the FAT32 filesystem. But since you intend to mount an image file with an encrypted filesystem anyhow, you might want to format your SD card as ext4.
  • 0 Votes
    3 Posts
    487 Views
    E
    @kristatos This worked great. Thank you. (I did have to delete the cache, then restart to rebuild it.)
  • How to manually change brightness options through adb or ssh

    Unsolved
    7
    1 Votes
    7 Posts
    1k Views
    E
    @bolly thanks !
  • Windowed and Staged

    Solved
    17
    0 Votes
    17 Posts
    2k Views
    KenedaK
    @kugiigi It is in UTTT also, along with launcher scaling.
  • Keyboard CTRL + Key

    Solved
    7
    0 Votes
    7 Posts
    800 Views
    magdesignM
    @kugiigi Thanks, I will try with my "hacking only" skillz https://gitlab.com/ubports/apps/terminal-app/-/blob/master/src/app/qml/KeyboardRows/Layouts/Nano.json
  • Disabling Bluetooth

    Locked Solved
    8
    0 Votes
    8 Posts
    694 Views
    arubislanderA
    @magdesign This is a very old thread, and in the interim this issue has long been solved on the PinePhone. I am marking this as solved and locking the thread.
  • Display questions

    Solved
    3
    0 Votes
    3 Posts
    568 Views
    B
    Yes, Thank you!!
  • Waydroid crashes my phone

    Solved
    8
    1 Votes
    8 Posts
    1k Views
    R
    @luksus I actually bought a Pinephone, but the OnePlus 3 is so much faster and also has more memory. The only thing the pinephone has over it is the hardware kill switches. I will try and install anbox and see if if performs. Thanks!
  • cannot install waydroid new anbox

    Solved
    19
    0 Votes
    19 Posts
    4k Views
    LakotaubpL
    There may also be help available here https://t.me/anbox_halium
  • 3g gone Nexus 5

    Unsolved
    6
    0 Votes
    6 Posts
    784 Views
    D
    @davenothere According to this link, you should still be fine data-wise even if 3G bands will be phased out: https://www.frequencycheck.com/carrier-compatibility/zLtEl/google-nexus-5-lg-d820/cricket-wireless-united-states
  • Auto Execute Startup Scripts

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    D
    The script is: #!/bin/bash while [ "true" ] do VPNCON=$(nmcli con status) if [[ $VPNCON != *MyVPNConnectionName* ]]; then echo "Disconnected, trying to reconnect..." (sleep 1s && nmcli con up uuid d******c-d***-4***-b***-3**********4) else echo "Already connected !" fi sleep 30 done The UUID of your personal VPN can be found with: nmcli con If I run this script in the terminal with bash script.sh or just copy/paste, it works great. My VPN toggles 'on' automatically, and if I turn off my VPN it toggles itself back 'on' so long as I keep my terminal open. However, if I run the script as any kind of startup script, after I reboot, the VPN will toggle 'on' then 'off' and I get a VPN Failed message. And this will keep happening at whatever duration you have set in the script. This generic script is 30secs, I set my personal one to 5secs and it toggles 'on' fails then toggles 'off' every 5secs.
  • Sony xperia xz ubuntu touch bootloop issues

    Unsolved
    4
    0 Votes
    4 Posts
    355 Views
    arubislanderA
    @3ncode The instructions here mention some things that can be tried additionally.
  • Nexus 5 - can't enable developers mode due to bootloop.

    Unsolved
    19
    0 Votes
    19 Posts
    2k Views
    MrT10001M
    It looks like the phone has a hardware issue with the eMMC (Solid state drive). If you have tried multiple USB cables and the device won't allow writing to certain sectors, the storage has failed.
  • WhatsApp Anbox apps permissions

    Unsolved
    4
    0 Votes
    4 Posts
    700 Views
    KenedaK
    @somannak No, it's more complicated than that. Use forum search function to see what is waydroid. But i think OPO is not compatible with waydroid anyway.
  • [GUIDE] VPN always active

    vpn openvpn nmcli question
    3
    1 Votes
    3 Posts
    1k Views
    D
    @bigb The script from the gabsoftware link works great when run straight in the terminal, but when put in startup, the vpn tries to reconnect but can't for some reason.
  • Video low resolution mode not retained

    Unsolved
    1
    0 Votes
    1 Posts
    129 Views
    No one has replied
  • Where does Podbird store it's podcasts?

    Moved
    3
    0 Votes
    3 Posts
    560 Views
    E
    @Jimpson , for me it was in ~/.local/share/ubuntu-download-manager/com.mikeasoft.podbird but if its not there, try using the du command to search for large directories. I started from the very top at ~ and started using this: du -d 1 --block==1G ^this command shows the size of each directory/file in ur current location in terms of gigabytes. podbird should be up there in size, so just start working ur way down
  • 3g gone, Nexus 5 still work

    Locked Unsolved
    3
    0 Votes
    3 Posts
    381 Views
    LakotaubpL
    @davenothere One thread is enough on this and not sure any UT works with 5g which is not fullu rolledout in many places anyway.
  • How to port touch to my nexus 5 using a chromebook

    Moved
    5
    0 Votes
    5 Posts
    338 Views
    AppLeeA
    @keneda Probably ChromeOS but you can install standard Linux apps as it runs a Linux kernel. Or even a standard Linux, I doubt Windows can run on a Chromebook.