Archives For November 30, 1999

This tutorial shows how to install Oracle VirtualBox in Ubuntu 22.04 and/or Ubuntu 24.04

VirtualBox is a popular free open-source tool for running different operating systems in virtual machines.

The tool is available in Ubuntu system repositories, but old. So, here’s the step by step how to install guide for latest version for beginners.

VirtualBox VM Manager

NOTE: VirtualBox so far only support x86_64 (amd64) CPU architecture type. Meaning for modern Intel & AMD CPUs.

Step 1: Download & Install the .deb package (Optional)

Oracle provides official .deb & .rpm packages for installing the software in Debian/Ubuntu & Fedora based systems.

User can select download the package by going to its website via the link below:

Next, open the Downloads folder, then either double click on the package or use right-click menu “Open With Other Application” and select open the .deb package you just downloaded via Software Install (or App Center). Finally, click install button to install it.

NOTE: The installing process may fail sometimes due to old package in your system, in the case, just uninstall the old one (go to bottom for how) then try to re-install again.

Once installed, search for and launch it either from start menu or ‘Activities’ overview depends on your desktop environment.

Step 2: Add VirtualBox repository to keep it up-to-date

The .deb package you installed via ‘Step 1’ used to automatically add the repository. However, it does NO longer do the trick in recent versions.

So, here’s how to do it step by step via the new Ubuntu PPA policy.

1. Download & install the key

First, press Ctrl+Alt+T on keyboard to open up a terminal window.

When it opens, run command to make sure “/etc/apt/keyrings” directory exist:

sudo mkdir -p /etc/apt/keyrings

Then, run command to use wget to download key, dearmor it (so unreadable), and finally save it to that directory:

wget -q -O- https://www.virtualbox.org/download/oracle_vbox_2016.asc | sudo gpg --dearmor --yes --output /etc/apt/keyrings/oracle-virtualbox-2016.gpg

You can finally verify the key file, by running command:

cat /etc/apt/keyrings/oracle-virtualbox-2016.gpg

As the screenshot above shows you, it should outputs unreadable text.

2. Add VirtualBox repository

Before adding the source repository, first run command to get system code name:

cat /etc/os-release

The apt repository so far only support Debian Stable (& old stable), Ubuntu 22.04 & 20.04 LTS (focal, jammy). For all their based systems, use the code-name you got via this command.

Then, in terminal window, run command to create & edit a sources file:

sudo nano /etc/apt/sources.list.d/virtualbox.sources

Then in the terminal window, paste following lines:

Types: deb
URIs: https://download.virtualbox.org/virtualbox/debian
Suites: jammy
Components: contrib
Architectures: amd64
Signed-By: /etc/apt/keyrings/oracle-virtualbox-2016.gpg

Replace jammy (for 22.04, Mint 21.x) according to last command output, such as noble for 24.04/Mint 22, focal for 20.04/mint20.

When done, press either Ctrl+S or Ctrl+O and hit Enter to save file, then press Ctrl+X to exit.

Finally, verify the sources file by running command:

cat /etc/apt/sources.list.d/virtualbox.sources

It should outputs the content you just added into that file.

3. Update system package cache

After setup the source repository, run command to refresh your system package cache:

sudo apt update

The terminal output should print a line looks like:

“Hit:5 https://download.virtualbox.org/virtualbox/debian jammy InRelease”

4. Install or Update Virtualbox

If you skipped the “Step 1”, then you can install it (7.0.x series at the moment) by running command in terminal:

sudo apt install virtualbox-7.1

Finally, when a newer release is out, you’ll be able to update it through Software Updater (Update Manager) tool.

Uninstall

To remove VirtualBox, open terminal (Ctrl+Alt+T) window and run command:

sudo apt remove --autoremove virtualbox virtualbox-7.1

And, remove the source repository by simply deleting the key & sources files:

sudo rm /etc/apt/keyrings/oracle-virtualbox-2016.gpg /etc/apt/sources.list.d/virtualbox.sources

Also, run sudo apt update to refresh package cache.

This simple tutorial shows how to install and setup the rEFInd boot manager in your Ubuntu 22.04, and/or Ubuntu 24.04 computer.

Most Linux uses Grub2 as default boot-loader. Though, there’s a good alternative called rEFInd. It’s a free open-source boot manager for EFI/UEFI enabled computers, such as all Intel-based Macs and recent (most 2011 and later) PCs.

rEFInd with Matrix theme

Why rEFInd:

Compare to Grub2, rEFInd has a more eye candy boot interface, and a simple and easy to tweak config file.

No need to update something, it auto-scans for all boot-able systems on every boot, and displays you the OS menu entries from both local disk and removable device, such as USB drive and CD-R.

It’s more reliable at booting Windows with Secure Boot active. And, it provides handy options to shutdown, restart, and/or go to BIOS settings.

How to Install rEFInd:

The boot manager is quite easy to install in Debian, Ubuntu, and Linux Mint, since it’s available in system repositories.

1. First, launch terminal (press Ctrl+Alt+T on keyboard) and run command to verify if UEFI enabled on your machine:

ls /sys/firmware/efi

The command will list content of ‘/sys/firmware/efi‘. It will show you No such file or directory, if UEFI not enabled.

2. To install rEFInd from system repository, simply run command:

sudo apt install refind

The package in system repository may be old. To install the most recent version, use the official PPA maintained by software developer.

  • Run command to add the PPA:
    sudo add-apt-repository ppa:rodsmith/refind
  • Update system package index:
    sudo apt update
  • Finally, re-run apt install command to install the package:
    sudo apt install refind

Remove duplicate icons in boot menu

After installing rEFInd, you can now restart your machine to see the new boot menu.

In menu, use left/right arrow keys to switch menu entries, hit Enter to boot, or press Tab (or F2) for more options.

For duplicate icons issue, simply use left/right arrow to select the icon (menu entry), and hit Delete key on keyboard, finally answer yes to remove that icon (menu entry). Though, deleting icon may NOT work when 3rd party theme is in use.

Install Themes

The menu interface is easy to tweak by editing the refind.conf file under “/boot/efi/EFI/refind/” directory. Every option has description text telling what does it do and how it works.

To be more straightforward, you can install third-party themes. And, here are some rEFInd themes in Github.

Most themes have how to install steps in Readme file, they are usually:

    • Open “Files”, and navigate to “Other Location -> Computer (or system, root, etc) -> boot -> efi -> EFI -> refind”. (Some Desktop may need to open File Manager as root first!)
    • Create “themes” folder in that directory if not exist.
    • Drag and drop the themes you downloaded (extract & re-name first) into that “themes” folder.

Finally, apply new theme by editing the refind.conf file under “/boot/efi/EFI/refind/“, and adding new line in the end (replace rEFInd-glassy accordingly):

include themes/rEFInd-glassy/theme.conf

NOTE: the theme folder name, rEFInd-glassy in the case, is unique according to the PATH to icons/imgs in ‘theme.conf’ file.

In case the boot menu screen resolution is low, you may also add (or uncomment by removing #) resolution max line to set the maximum available resolution, or use resolution 1024 768 for certain resolution (Note that not all resolutions are supported).

Uninstall:

To uninstall refind in Debian and Ubuntu based systems, open terminal and run command:

sudo apt remove --autoremove refind

Also remove the PPA (if added) by running command:

sudo add-apt-repository --remove ppa:rodsmith/refind

To get rid of the refind boot menu, you also need to remove all the related files:

sudo rm -r /boot/efi/EFI/refind

For more, see rEFInd in its official website.

 

HandBrake, the popular free open-source video transcoder, released a new update for the new 1.7 series yesterday.

The new release fixed encoding issue for AMD VCN, MPEG-2, MPEG-4, NVIDIA NVENC, and VP9 encoders, which could cause the creation of an excessive number of keyframes.

It fixed unintentional automatic pass through of closed caption side data when using NVIDIA NVENC encoder.

For Linux, the release includes performance improvements by removing duplicate graphic assets and reducing file size, as well as fixes to Flatpak file chooser, file destination path, and memory leaks in the graphical interface.

Other changes include:

  • Improved automatic selection of Dolby Vision Level
  • Fixed crash opening an empty folder, and crash using VideoToolbox encoders on Apple Silicon Ultra.
  • Workaround to prevent issues decoding H.264 video on Mac OS.
  • Added Automation Properties to some controls on the audio tab to assist screen readers for Windows.
  • Fixed NVIDIA NVDEC option being ignored in Windows.
  • Miscellaneous bug fixes and improvements

How to Install HandBrake 1.7.2

HandBrake provides official Windows, MacOS, and Linux packages available to download at Github releases page under Assets

For Linux users, it’s Flatpak package which also available in Flathub repository, though NOT updated at the moment of writing.

For Ubuntu & Linux Mint users who prefer the classic .deb package, I’ve uploaded the package into this unofficial PPA for Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.04, and Ubuntu 23.10.

1. First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/handbrake

Type user password (no asterisk feedback) when it asks and hit Enter to continue.

2. Linux Mint users need to manually update the system package cache, after adding PPA, by running command:

sudo apt update

3. Finally, install the new HandBrake package via command:

sudo apt install handbrake

For choice, you may also run sudo apt install handbrake-cli to install the command line tool

When installation done, search for and launch the video transcoder from either start/application menu or ‘Activities’ overview depends on your desktop environment.

Uninstall:

To uninstall the Ubuntu PPA, either open terminal (Ctrl+Alt+T) and run command:

sudo add-apt-repository --remove ppa:ubuntuhandbook1/handbrake

or, just remove the source line using ‘Software & Updates’ tool under “Other Software” tab.

To remove the HandBrake video transcoder, use command:

sudo apt remove --autoremove handbrake handbrake-cli

That’s all. Enjoy!

Enlightenment window manager announced new 0.26.0 release few days ago.

The new release added some new features, including DDC option to backlight control of external monitors, bigger task previews, and watermark to wl mode to indicate E is in experimental wl mode.

Enlightenment 0.26.0 also added new APIs, including new eet disk sync API to ensure config it stored, logind’s lock/unlock dbus apis, API to play sound samples and support in notifications, and new eina API for EFL libraries.

Other changes include:

  • Support action desktop files in EFM to add file actions
  • Add org.freedesktop.ScreenSaver inhibit support
  • Add and enabl watchdog thread by default to detect mainloop hangs
  • Add option to Randr X11 support to use xrandr cmdline not direct API
  • Be agressive about forcing E’s blank settings if apps override them
  • Add params to mixer actions to allow to set amount up/down
  • Add option for input settings for flat accel + hires scrolling
  • Add option to set hidden state in netwm or not

There are also EFL 1.27 changes include JXL Evas loader/saver, QOI Evas image loader/saver, LibreSSL 3.5.x, remove GNUTLS support due to in favor of openssl3, and support ecore exe terminate with parent on windows. See more in the News page.

Get Enlightenment 0.26.0

Besides building from source, there seems no PPA or any 3rd repository for installing new release in Ubuntu.

To download the source, just go to its website via the link below:

 

Stellarium, the free open-source planetarium software, announced new 23.4 release few days ago.

The new release added experimental support for new plugin: Lens Distortion Estimator, and new sky culture: Tibetan Lunar Mansions.

With new release, user can now change the look of GUI through normalStyle.css config file. For Windows, it added new MESA for Windows packages, and package for ARM64 CPU architecture type.

Other changes include:

  • Support the origins of nomenclature names
  • Performance improvements on macOS with ARM64
  • Add script “Jupiter Moons”
  • Add filter, based on SATCAT Operational Status in Satellites plugin
  • Add AppImage package based on Qt6.
  • more simple calendar-based time steps (esp. for RemoteControl)
  • wrapper for too long star names
  • Temporary workaround for overlapping indicator and text in lists
  • Optional sorting rule for Search Tool
  • Text wrapper for pulsar notes, Modern (H.A. Rey) SC, and long origins of nomenclature names
  • Ability to make observing lists directory configurable via GUI
  • Add dpiAwareness option to manifest and send physical viewport size to Spout
  • Add DSO names
  • Add 2 new time steps for AstroCalc/Ephemeris tool
  • Remote control command to change window size
  • And various bug-fixes. See release note for details.

How to Install Stellarium 23.4

The software provides official packages for Linux, Windows, MacOS, as well as source code, available to download at Github release page:

Ubuntu user can search for and install Stellarium from either Ubuntu Software or App Center (for 23.10), though it’s Snap package runs in sandbox.

For Ubuntu & Linux Mint users who prefer the classic .deb package, the official PPA has built the package for Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.04, and Ubuntu 23.10.

1. First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:stellarium/stellarium-releases

Type user password (no asterisk feedback) when it asks and hit Enter to continue.

2. Linux Mint users need to manually refresh the package cache after adding PPA:

sudo apt update

3 Finally either update Stellarium using Software Updater (Update Manager) if an old version was installed.

Or, run command in terminal to install it for the first time.

sudo apt install stellarium

Uninstall

To remove the planetarium software software, simply open terminal and run command:

sudo apt install --autoremove stellarium

And, remove the Ubuntu PPA either by running command:

sudo add-apt-repository --remove ppa:stellarium/stellarium-releases

or use “Software & Updates” to remove source line under ‘Other Software’ tab.

This simple tutorial shows how to install Chatterino, a Twitch Chat app with enhanced features, in Ubuntu 22.04, 20.04, 23.10 via PPA.

Chatterino is a free and open-source chat app for Twitch.tv. With it, you can connect as many channels as you like to, either in tabs or in single tab side-by-side.

The client supports features, such as Chat Replies by right-clicking a message and choose “Reply to message”.

Left clicking a user will open dialog for user info, message history, as well as buttons to block, ignore highlight, etc. And, right-click on user allows to @ mention him/her in message.

It supports emotes from BetterTTV, FrankerFaceZ, and 7TV, allows to drag’n’drop image or paste image from clipboard to upload to custom service, such as imgur.com, though not enabled by default.

Other features include:

  • Hotkeys (customizable)
  • Link preview (not enabled by default)
  • Ignore or highlight messages
  • Search, filters, regular expressions
  • And more.

How to Install Chatterino via Ubuntu PPA

The app provides Windows .exe, macOS .dmg, Ubuntu .deb and Linux .AppImage packages for downloading in its Github releases page.

For Ubuntu/Linux Mint users, the official PPA is a better choice to keep the app up-to-date. Which, so far supports Ubuntu 20.04, Ubuntu 22.04, Ubuntu 23.04, & Ubuntu 23.10 on amd64 (Intel/AMD) and arm64/armhf (Apple M1/M2, Raspberry Pi) devices.

1. First, press Ctrl+Alt+T on keyboard to open terminal. Then, run command to add the PPA:

sudo add-apt-repository ppa:chatterino/chatterino2

Type user password (no asterisk feedback) when it asks and hit Enter to continue.

2. Then, run command to install the chat client:

sudo apt install chatterino

Linux Mint user needs to run sudo apt update first to refresh system package cache.

After installation, you can launch the app from start menu, app grid, or Gnome overview depends on your desktop environment. And, use “Software Updater” (Update Manager) to receive updates.

Then, you can join Twitch channel by their names (the part after www.twitch.tv/ in channel URL). And, see the wiki for more usage.

Uninstall:

To uninstall the Twitch chat app, simply open terminal (Ctrl+Alt+T) and run command:

sudo apt remove --autoremove chatterino

Also remove the Ubuntu PPA, either by running command in terminal:

sudo add-apt-repository --remove ppa:chatterino/chatterino2

Or, use “Software & Updates” to remove source line under “Other Software” tab.

 

Darkable, the popular photography app and raw developer, released new major 4.6.0 version a day ago!

The new release introduced auto-save feature for editing history. By default, it save changes every 10 seconds. User can go to ‘Preferences -> storage‘ to change the time interval, or set it to 0 to disable it.

Darktable 4.6.0 also features new rgb primaries processing module. It allows delicate color corrections and creative color grading, by moving the red, green and blue primary colors around using “hue” and “purity” controls.

Darktable 4.6.0

The release also has a big performance improvements. OpenCL is now initialized in the background to speed up the app launching. Image display speed in the map view has been increased by 25%. And, the chromatic aberrations module is now approximagely 10% faster when run on the CPU.

Other changes in Darktable 4.6.0 include:

  • sigmoid module now includes a new primaries section, to gracefully handle difficult lighting situations (e.g. LEDs) and tune the overall look of the image
  • The full uncropped image is now always shown when working with the liquify and retouch modules.
  • The hot pixels module now supports monochrome images.
  • long-running import session can now be canceled.
  • built-in “Display P3” color profile
  • And much more! See the official release note for details

How to Install Darktable 4.6.0 in Ubuntu Linux

Option 1: Snap

Darktable is easy to install as Snap package, which runs in sandbox, using Ubuntu Software (or App Center for 23.10).

Option 2: Official deb package

The developer team offers official RPM and DEB packages for Debian, Fedora, Ubuntu, openSUSE, through the OBS building repository.

Also, it’s NOT updated to v4.6.0 at the moment of writing. Keep an eye on this page if you prefer the official package.

Option 3: Flatpak package

Darktable is also available to install as Flatpak package, another universal Linux package format runs in sandbox!

Linux Mint 21 user can directly search for and install the Flatpak package from Software Manager.

While, Ubuntu user can open terminal (Ctrl+Alt+T) and run the 2 commands below one by one to install the Flatpak:

  • Enable flatpak support:
    sudo apt install flatpak
  • Install Darktable as Flatpak package:
    flatpak install https://dl.flathub.org/repo/appstream/org.darktable.Darktable.flatpakref

Option 4: Ubuntu PPA

Besides using the official DEB package (See Option 2), I’ve also upload the package into this unofficial PPA for Ubuntu 22.04, Ubuntu 23.04, and Ubuntu 23.10.

NOTE: The PPA includes updated libheif (1.16.2) library for Darktable to support HEIF in Ubuntu 22.04. Please report if it’s running into conflict with other packages in your system!!

1. First, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to add PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/darktable

2. Linux Mint needs to update system package cache manually after adding PPA:

sudo apt update

3. Finally, install Darktable 4.6.0 via command:

sudo apt install darktable

In addition for old Ubuntu 20.04, 18.04, & 16.04, keep an eye on this PPA. However, it has tons of updated libraries that MAY run into dependency hell and/or package conflict!

Uninstall Darktable

Depends on which package your installed, remove Darktable via one of the commands below:

  • For Snap package, just remove it from Ubuntu Software.
  • For Flatpak package, run command:
    flatpak uninstall --delete-data org.darktable.Darktable

    Then run flatpak uninstall --unused to remove unused runtime libraries.

  • To remove official package or PPA package, run command:
    sudo apt remove --autoremove darktable

    And remove the Ubuntu PPA repository if you want via command:

    sudo add-apt-repository --remove ppa:ubuntuhandbook1/darktable

This is a step by step beginner’s guide shows how to install iTunes in Ubuntu 22.04 and Ubuntu 24.04 LTS.

Windows app is easy to install in Ubuntu & other Linux, thanks to Wine. However, it’s not so easy for beginners to install & setup Wine.

So, here I’m going to show how to install iTunes using Bottles (a wine runner) to make things as easy as possible.

NOTE that, iTunes running with wine does NOT detect iPhone, at least not for me. But, it’s OK for syncing music via iCloud! For just transferring music files, VLC is a good alternative.

iTunes 12.8.0.150 in Ubuntu 22.04 LTS

NOTE 1: This tutorial is tested and works in Ubuntu 22.04. Though, it should work in most other Linux!

NOTE 2: In this tutorial I installed iTunes 12.8.0.150! Newer versions either crash frequently or run into blank window.

Step 1: Install Bottles

As mentioned above, Bottles is a wine runner to make running Windows apps in Linux super easy. The only downside could be that it’s only available as Flatpak runs in sandbox.

Firstly, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run command to enable Flatpak support:

sudo apt install flatpak

Other Linux can follow official setup guide to enable Flatpak support.

Then, install Bottles as Flatpak by running command:

flatpak install https://dl.flathub.org/repo/appstream/com.usebottles.bottles.flatpakref

This command may have more than a thousand MB download due to run-time libraries. Don’t be worried about it. Installing Wine directly from its website will also has quite a few hundred MB files to download.

 

Step 2: Setup Permission for Bottles

Bottles is installed as Flatpak which runs in sandbox. By default, it has only file access to your user ‘Downloads‘ folder.

If you want to make apps, that are installed through Bottles, visible in start menu and/or dock, and access music files in other folders (such as ‘Music’ folder), then you have manually grant permissions.

Option 1: Use command to grant file access permission:

To allow Bottles to add apps into start menu, run command in terminal:

flatpak override com.usebottles.bottles --user --filesystem=xdg-data/applications

To allow Bottles (iTunes) to access your user Music folder, use command:

flatpak override com.usebottles.bottles --user --filesystem=xdg-music

Option 2: Use Flatseal, graphical tool.

Flatseal is a popular graphical tool to manage permissions for Flatpak applications.

First, open terminal (Ctrl+Alt+T) and run command to install Flatpseal:

flatpak install https://dl.flathub.org/repo/appstream/com.github.tchx84.Flatseal.flatpakref

After installed the tool, launch it. Choose “Bottles” from left, and click add “Filesystem -> Other files” permission for:

  • xdg-music
  • xdg-data/applications

Step 3: Download iTunes (exe)

Apple website only shows the download for the latest version of iTunes, which is NOT working good (even not work so far) with current version of Wine.

For the old versions, there’s a 3rd party website that provides a large list of downloads. All download URLs in that page are official (point to apple.com), the website only lists them out for you.

In my tests, iTunes 12.9.x is the most recent version that installs, which however CRASH quite often. The iTunes 12.8.0.150 is the last that’s working good.

NOTE: Wine and Bottles keep updating with new features and bug-fixes. So, newer iTunes versions might be working in future when you see this tutorial. Try for your self.

Step 4: Install iTunes

Now, search for and launch “Bottles” from start menu or ‘Activities’ overview depends on your desktop environment.

NOTE: first time installing a Flatpak app, need a log out and back in to make app icon visible in start menu. For choice, you may run flatpak run com.usebottles.bottles command to start it from terminal.

In the first launch, follow the wizard to run the initial setup.

When done, click either “Create New Bottle…” button or the top-left “+” icon to get started.
Then, in next window type a name (‘iTunes’ in the case), select “Application” as environment type, and click “Create”.

Next, it automatically generate configuration and config Wine for the new ‘Bottle’ you just created.

When done, click to open the ‘Details’ page for the new bottle you just created. Click on “Run Executable” button, then browse and choose the “iTunes64Setup.exe” file you downloaded in last step.

Note in the file chooser dialog, you may need to switch bottom filter to “All Files“, so to make the .exe file visible.

After that, the installer wizard for iTunes should start. Just follow to install it until done.

Step 5: Launch iTunes

To launch iTunes, either go to ‘Details’ page for the Bottle in Bottles, and click the triangle icon “▸”.

Or, click the 3 dots “⋮” icon right after it, and select “Add Desktop Entry” menu option (need to done Step 2 first).

After that, you can start iTunes from start menu, just like other apps installed from Ubuntu Software.

Uninstall

To remove iTunes only, simply launch ‘Bottles’ and go to Details page for iTunes. Then use the top-right corner “⋮” menu option to delete bottle.

To remove Bottles app, open terminal (Ctrl+Alt+T) and run command:

flatpak uninstall --delete-data com.usebottles.bottles

In command, skip --delete-data will keep the apps installed through Bottles

After removing Bottles, also run the command to remove useless run-times to free up disk space:

flatpak uninstall --unused

Got local music files in your Ubuntu PC/laptop? Here’s how to transfer them to your iPhone.

It’s NOT hard to install iTunes in Ubuntu using Wine in today’s Linux. However, iTunes running in wine does not detect my iPhone, at least in my case in 22.04.

If you just want to transfer music from PC to your iOS device, then you don’t have to struggle with iTunes in Linux. There are easy alternatives! And, VLC is a very popular one of them.

This tutorial is tested on iPhone with iOS 16.1.1, and Ubuntu 22.04 with default GNOME.

Transfer Music from PC to iOS via VLC

1. First, go to “App Store” and install the free open-source VLC media player in your iPhone or other iOS device.

VLC media player in App Store

2. Not sure if it required, but you may launch VLC in iOS for the first time to generate app folder.

3. Now, connect your iPhone or other iOS device into Ubuntu. Then, open “Files” and go to the mounted folder from left panel.

In my case, it’s a phone icon with text “Document on iphone”. In that folder, click VLC icon. Finally, drag’n’drop your music files into the VLC sub-folder.

When done, you can now open VLC in iphone/iOS, and find out the local music files under “Audio” bottom tab.

4. (Optional) If you want to use Apple Music or other app for music playback, then you can save songs to files.

First, navigate to “Songs” tab in VLC. Then, tap top right “circle with 3 dots” icon, and click “Select” to choose all the files.

Finally, use the bottom right icon to open menu to “Save to Files” for all selected music files.

 

Firefox web browser announced the new monthly 121.0 release this Tuesday!

For Linux, the release finally default to Wayland session when available, meaning for Ubuntu 22.04 and higher (exclude Snap), Fedora Workstation, and other Linux with recent GNOME Desktop.

With Wayland, it has better support for touchscreen & touchpad.

User can use 2-finger swipe left/right to navigate forward and backward, and 2-finger pinch gesture to zoom in/out. It as well has per-monitor DPI settings, better graphics performance, and more.

Sadly, this feature does NOT enabled for Firefox Snap in my case for Ubuntu. User can choose to either install Firefox as .deb package, or manually enable Wayland support for the Snap pacakge.

Besides Wayland for Linux, Firefox 121.0 also adds Voice Control commands support on macOS systems, and prompts Windows users to install the Microsoft AV1 Video Extension to enable hardware decoding support.

Other features in Firefox 121.0 include:

  • Option to force links to always be underlined
  • New PDF viewer floating button to simplify deleting drawings, text, and images.
  • Option to disable the debugger; keyword on the current page.
  • Support :has() selector, the hanging and each-line keywords, balance keyword, lazy loading iframes.
  • tail call elimination support in WebAssembly language
  • Various security fixes.

How to Get Firefox 121.0

Most Linux that pre-installs Firefox, will build the latest package soon and publish into system repositories.

For Ubuntu, the snap package has been updated to v121.0. It should update to the new release automatically.

If NOT, press Ctrl+Alt+T on keyboard to open terminal, and run command to do the update manually.

snap refresh firefox

For the portable Linux tarball, as well as the official release note, go to the link below: