UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. arubislander
    3. Posts
    Offline
    • Profile
    • Following 6
    • Followers 7
    • Topics 8
    • Posts 1,926
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: full python clickable app prototype

      @developerbayman There are services on UT... there is just no streamlined or officially sanctioned mechanism yet to describe and bundle services as clicks. Different apps implement different solutions to this problem when they require it.

      If the service only needs to be available when the main app is running, some apps launch the background service on startup and terminate it on shutdown. If the service needs to be running independently of the main app, then you could see the app deploying and hooking up systemd user service configurations on first run.

      posted in App Development
      arubislanderA
      arubislander
    • RE: full python clickable app prototype

      @developerbayman said in full python clickable app prototype:

      i need to learn more about clickable service mechanism

      That's easy. At the moment, there is none.

      posted in App Development
      arubislanderA
      arubislander
    • How to Get LXD Running on Ubuntu Touch (Focal & Noble)

      How to Get LXD Running on Ubuntu Touch (Focal & Noble)

      Here's a rough walkthrough on getting LXD running on UT based on my experience.

      If you're on Ubuntu Touch Focal, you’ll need to enable snap support first. Install Snapz0r from the Open Store, run it and initialize snap support. If you're on Noble you can skip this step, since snap support is already enabled.

      Next, install LXD. I used version 5.21 specifically, because newer versions gave me trouble on the JingPad. You can install it like this:

      $ sudo snap install lxd --channel=5.21/stable
      

      Once LXD is installed, initialize it with:

      $ sudo lxd init
      

      Accept all the defaults except for the storage backend. When prompted, choose dir instead of zfs, which tends to be problematic in this environment.

      After that, you need to adjust the default profile to allow nested containers and privileged access:

      $ sudo lxc profile set default security.nesting true
      $ sudo lxc profile set default security.privileged true
      

      Now you can launch your first container. For example, to create one based on Ubuntu Noble:

      $ sudo lxc launch ubuntu:noble noble-1
      

      Wait for the container to boot. You can check its status with:

      $ sudo lxc list
      

      Once it's up, you can enter the container with:

      $ sudo lxc exec noble-1 -- bash
      

      At this point, you should be inside a fully functional Ubuntu container running on Ubuntu Touch.

      posted in General
      arubislanderA
      arubislander
    • RE: How difficult is it compared to installation on a PC?

      @Alain A more pertinent question is, what do you expect from this tablet once Ubuntu Touch is installed on it? Most of the experience you gained operation Ubuntu on the desktop will not carry over to using UT.
      Installing software vai apt is not supported. Software is installed from the Open Store. https://www.open-store.io. You could browse the apps on there to see if everything you need is there.

      There are other options for installing software, but they all have their drawbacks and difficulties.

      posted in General
      arubislanderA
      arubislander
    • RE: Update port for Ubuntu Touch 20.04 on Xiaomi Mi 6

      @Moem This user is the OP of this thread and is updating the 16.04 port to 20.04.

      (I elect to attribute the somewhat condescending tone of their last post to be an artifact of translation)

      posted in Porting
      arubislanderA
      arubislander
    • RE: Backups and file sharing

      @Ida_ I use Syncthing to get files to and from my devices.

      posted in Support
      arubislanderA
      arubislander
    • RE: Update port for Ubuntu Touch 20.04 on Xiaomi Mi 6

      @kuailexs Same goes for you :-). But thanks for answering the question.

      posted in Porting
      arubislanderA
      arubislander
    • RE: Camera App suddenly not working "Capture failed"

      @Moem no, I was talking about issues some have been having with other pre-installed apps, in this particular case, the music app.

      posted in Support
      arubislanderA
      arubislander
    • RE: Update port for Ubuntu Touch 20.04 on Xiaomi Mi 6

      @dlin please use English on this channel as a courtesy to our international audience.

      posted in Porting
      arubislanderA
      arubislander
    • RE: Camera App suddenly not working "Capture failed"

      @ptrkrysik I don't use waydroid myself. But there have been some permissions issues with other users who do use it, so that is why I asked.

      posted in Support
      arubislanderA
      arubislander
    • RE: Camera App suddenly not working "Capture failed"

      @ptrkrysik Do you use Waydroid? Did you share / link your Pictures or Videos folder with the container? In any case, can you check the permissions in those directories?

      posted in Support
      arubislanderA
      arubislander
    • RE: Music app does not start; log tells lookup () called on invalid MediaSTore

      @hankschwie there are probably other files in your home folder with the wrong permission. You might want to try recursively setting all files and folders in your home directory to ownership phablet:phablet.

      Did you by any chance try to share (parts of) your home folder with the waydroid container?

      posted in Support
      arubislanderA
      arubislander
    • RE: UBports at T-Dose

      @Moem Looks like it was lots of fun indeed. I've already blocked the dates for 2026.

      posted in News
      arubislanderA
      arubislander
    • RE: Where is the trash bin ?

      @captainfunk unless those pictures were really important to you, none that are worth the hassle.

      In fact I am not sure how to go about it with a phone.

      On a laptop I would make an image of the partition I am trying to recover the photos from, and then work on that image with one of the linux file recovery tools that are available to download. But I would not really know how to get a phone partition imaged.

      You see, the thing is, the longer you use your device, the bigger the chances are that those deleted files have already been overwritten by new data, which makes it harder, and eventually impossible, to recover what has been lost.

      posted in Support
      arubislanderA
      arubislander
    • RE: Fairphone 4 can't boot into recovery

      @pineheap Boot into UT as normal. Then start the Terminal app, enter your password or pin code to gain access. Next enter

      sudo reboot -f recovery
      

      Again enter you password / pin code (you will not get any visual feedback when typing). And you should reboot into recovery mode.

      Although, I don't think that is the mode you need to be in to reinstall Android.

      To enter the bootloader (which is the mode I believe you need to be in) do:

      sudo reboot -f bootloader
      
      posted in Support
      arubislanderA
      arubislander
    • RE: Where is the trash bin ?

      @MrT10001 making the system writeable will not help with finding files that were deleted when the system was read-only.

      I am afraid there is currently no trashbin implemented in Lomiri. So those files that were deleted are unfortunately not recoverable by conventional methods.

      posted in Support
      arubislanderA
      arubislander
    • RE: app clickable nes emulator

      @developerbayman said in app clickable nes emulator:

      Clickable uses Docker as its build and execution environment. So anything you install on the host will be invisible to the container. Please check the clickable documentation for how to install additional packages in your docker container to have them available at built and / or run time. Acquiring a basic understanding of containers and Docker is also recommended.

      posted in App Development
      arubislanderA
      arubislander
    • RE: Wanting to continue Nexus 5 Dev

      @cjengle said in Wanting to continue Nexus 5 Dev:

      I reverted to clickable 7.9 in the pipx repos (the only install method that works on my Debian)

      You shouldn't have needed to revert to an earlier version of clickable. Changing the framework and policy version should have been enough.

      posted in Google Nexus 5
      arubislanderA
      arubislander
    • RE: full python clickable app prototype

      @Keneda said in full python clickable app prototype:

      However there is an option to pop up a donation proposal

      Sure, but that is optional, whereas payment would be compulsory.

      posted in App Development
      arubislanderA
      arubislander
    • RE: full python clickable app prototype

      @developerbayman said in full python clickable app prototype:

      .i have never seen a paid app on the open store ???

      The OpenStore does not include facilities for paid app. But you could always provide your own. Not saying this is easy, but that is an option. Maybe have a limited version in the OpenStore and sell licenses to unlock the premium features or something similar.

      Apps currently are not required to be open source, as long s they are fully confined. Any apps requiring special permissions need to be able to have their source audited.

      posted in App Development
      arubislanderA
      arubislander