版面

  • The Meta category: Organizational or general discussion.

    1k 主題
    9k 貼文
    M
    @Sander I removed and re-bridged whatsapp and messages are already decrypted so, it worked! Big thanks for the support
  • Discuss news updates from Ubuntu Touch and its related projects

    1k 主題
    5k 貼文
    UBportsNewsU
    Ubuntu Touch Q&A 165 Ubuntu Touch Q&A 165 is live this Saturday 17th May at 19:00 UTC on our YouTube Channel https://www.youtube.com/watch?v=llTkwrdxth8 We will cover all the latest news and development, and your questions and answers. Questions can be posted live during the show or using this Forum link for priority: https://forums.ubports.com/topic/10978/ubuntu-touch-q-a-165-call-for-questions Please remember that questions on porting to device **** or its status, or questions on bugs will not be answered UBports@telegram #ubports:matrix.org #UBports #UbuntuTouch #UBportsQandA #Lomiri #OTA8 #Ubuntu
  • Discuss and solve problems with other users

    4k 主題
    27k 貼文
    P
    I was looking for a solution how to fix videos corrupted during recording with Google Pixel 3A + UBPorts OTA23 (16.04). There was an issue described for example here: Re: Video recording not working on Google Pixel 3a XL which resulted with videos that had absurdly wrong FPS. I had videos that were 3 minutes long but appeared as 15 hours long. Sound was ok, but the video part was viewable about one hour later. As the phone was used as daily driver (and still is but currently with Focal) I had some important videos recorded with it that I was very motivated to repair. I didn't find anything on the internet so here is a bash script that I created with help of chatgpt, that does the job (I wouldn't know about existence of MP4Box without chatgpt, obtaining a good result was much easier with that program than with ffmpeg): #!/bin/bash # Target FPS setting FPS=29.97 # Create a directory for the fixed files mkdir -p fixed # Loop through all .mp4 files in the current directory for file in *.mp4; do echo "Processing: $file" # Base name without extension base="${file%.*}" # Demux (extract) video and audio streams MP4Box -raw 1 "$file" -out "${base}_track1.h264" MP4Box -raw 2 "$file" -out "${base}_track2.aac" # Re-mux into a new MP4 with corrected FPS MP4Box -add "${base}_track1.h264:fps=$FPS" -add "${base}_track2.aac" -new "fixed/${base}_fixed.mp4" # Clean up temporary files rm -f "${base}_track1.h264" "${base}_track2.aac" echo "Done: ${base}_fixed.mp4" done echo "All files have been processed and saved in the 'fixed/' directory." The synchronization of voice and picture is not ideal but for short videos it's ok.
  • 2k 主題
    17k 貼文
    _
    @MrT10001 @MrT10001 Hello, I found my mistake. To copy files from my Android phone to my PC using ADB, I need to execute the adb pull command directly in my PC's terminal, without accessing the ADB shell on my phone. For example, to copy the Music folder from my phone to the Music folder on my PC, I should use the following command in the terminal with a simple USB connection to the phone: Code adb pull /home/phablet/Music /home/(Your PC)/Music If it can help someone copy hidden system files, it works too.
  • Discussions on development of Ubuntu Touch

    497 主題
    6k 貼文
    alagirialagiriA
    What is the latest (May ,12 ,2025) Status update on Ubuntu 24.04-1.0 ?
  • Discuss the user experience or design of Ubuntu Touch or its apps

    165 主題
    2k 貼文
    KenedaK
    @ezst036 As already answered to you, no need dev mode on to access files via MTP.
  • Creating Ubuntu Touch apps

    727 主題
    7k 貼文
    W
    Using Oneplus Nord N10, 20.04 OTA 7: TL;DR - uNav freezes after location is acquired, Morph freezes upon clicking Allow in Permission Request for location, PureMaps will crash after location acquired the first time, then works well upon re-opening. -uNav freezes reliably with GPS, seemingly after GPS position is acquired. It will freeze with "Waiting for GPS" still visible, but not immediately, I can still shift from light to dark mode for example, until suddenly I can't click anything in the app. -Morph freezes reliably after enabling location on navigation websites (tried google maps and waze.) Specifically, I select "Your Location", Morph brings up the UT Permission Request to share location, I click Allow, the website says "Waze/GoogleMaps does not have permission to use your location", I repeat the process, and Morph freezes if I click Allow, with Permission Request still visible. -in PureMaps' Navigation menu if I use Current Position and wait for the wheel to stop scrolling (position acquired), then click to enter a destination, the app will crash, not freeze. It just closes itself. But then if I re-open the app, I can do the same and it doesn't crash and successfully navigates. I've navigated long distances using PureMaps. I think it may have crashed unexpectedly during navigation once or twice, but generally it works for me. I can't recall it ever freezing. Not sure why my experience is different, but I've spent some time testing and this all seems to happens consistently for me.
  • Porting Ubuntu Touch to new devices

    480 主題
    3k 貼文
    X
    Xda Theard: link Sources: link Working status: link
  • Lomiri, the operating environment for everywhere

    67 主題
    568 貼文
    alan_gA
    As kugiigi says, Ubuntu Touch is using an obsolete version of Mir (1.8) with dated Wayland support. Also, most of the Wayland support in Lomiri comes from Mir (the rest comes from Mir's support for "custom" Wayland extensions). The consequence of that is that there's no much prospect of improving the Wayland support in Ubuntu Touch without first updating it to use the current version of Mir. The good news is that is work currently going on to get Lomiri working with the current version (2.20) of Mir. As of today this works on the machines of the developers involved and is close to landing in both the Debian and Fedora archives. However, it will still take significant time to get the rest of Ubuntu Touch migrated over to this newer stack. That is probably the task that can most benefit from help at present. After all that is completed, it should be possible for Ubuntu Touch to track the current version of Mir, and Wayland support will follow Mir. It is also possible to contribute to Mir's Wayland support, but that won't help Ubuntu Touch at present.
  • Discussion on translating Ubuntu Touch and its core apps

    58 主題
    322 貼文
    D
    Ok. So, we've changed it to only English and Tamil are promoted from the start page and a few more are available in the navigation menu at the bottom [image: 1747234638711-8572f036-cafa-4c21-91ba-ea7b9c4de362-image.png]
  • A place to discuss ideas for promoting Ubuntu Touch

    55 主題
    712 貼文
    P
    Hi. I have cap with sign Ubuntu Linux. Can be Ubuntu Touch.
  • Other Projects

    Projects which are started by a group within the UBports community

    64 主題
    373 貼文
    ikozI
    The last step installs the rootfs usually in system partition, see the install section of the porting documention. Basically flash the latest xenial image from the CI to system. Alternatively push the image with adb to /data/system.img when booted to recovery. Otherwise you could try ubports installer with only the systemimage:install command. You can also see the halium-install source code, particularly these lines. Be sure to check if this partition exists as partition schemes can vary.
  • For things that just don't fit in the other categories.

    820 主題
    5k 貼文
    AppLeeA
    Hi @Rondarius IIRC the question was asked in a Q&A or on Telegram. There is currently no official contact between the UBports foundation and Liberux. But of course our door is open and they are welcome to try and port Ubuntu Touch to this device. The more the merrier. And if they have some issues while porting they can do the same as any porter and contact us on the forum or Telegram for help. The foundation do not have the means to kickstart ports for devices. The Fairphones are a good development base as they are rare devices to support wired external display and have very good performances. With this exception, we rely on devices contributors have and want to have working with Ubuntu Touch, in other terms a personal goal instead of something driven by the foundation.