Archives For November 30, 1999

Mumble, open source, low-latency, high quality voice chat software, released version 1.3.3 a few days ago. PPA updated for Ubuntu 16.04, Ubuntu 18.04, and Ubuntu 20.04.

Changes in Mumble 1.3.3 include:

  • Fix chat box invisble (zero height)
  • Fix handling of invalid packet sizes
  • Fix race-condition leading to loss of shortcuts
  • Link in About dialog is now clickable again
  • Fix sizing issues in ACL-Editor
  • PulseAudio now always samples at 48 kHz
  • Fix server crash due to problems when using PostgreSQL

How to install Mumble 1.3.3 in Ubuntu:

The official release PPA has made the packages for all current Ubuntu releases.

1. Open terminal either from system application launcher or by pressing Ctrl+Alt+T on keyboard. When it opens, paste below command and hit Enter:

sudo add-apt-repository ppa:mumble/release

Type user password (no asterisk feedback) when it prompts and hit Enter to continue adding the PPA.

2. If an old release was installed, simply upgrade Mumble via Software Updater:

Or run commands one by one in terminal to check updates and install the chat utility for gamer:

sudo apt-get update

sudo apt-get install mumble mumble-server

Uninstall Mumble:

You can purge the PPA which also downgrade the VoIP chat app to the stock version via command:

sudo apt-get install ppa-purge && sudo ppa-purge ppa:mumble/release

To simply remove mumble, either use system package manager or run command in terminal:

sudo apt-get remove mumble mumble-server

Python programming language 3.9.0 was released with new features and optimizations. Here’s how to install it in Ubuntu 16.04, Ubuntu 18.04, and Ubuntu 20.04 via PPA.

Python 3.9.0 is the first version default to the 64-bit installer on Windows. Windows 7 is unsupported.

Python 3.9.0 release highlights:

  • Module State Access from C Extension Methods
  • Union Operators in dict
  • Type Hinting Generics In Standard Collections
  • Flexible function and variable annotations
  • Python adopts a stable annual release cadence
  • Relaxing Grammar Restrictions On Decorators
  • Support for the IANA Time Zone Database in the Standard Library
  • String methods to remove prefixes and suffixes
  • New PEG parser for CPython
  • Garbage collection does not block on resurrected objects;
  • os.pidfd_open added that allows process management without races and signals;
  • Unicode support updated to version 13.0.0;
  • when Python is initialized multiple times in the same process, it does not leak memory anymore;
  • A number of Python built-ins (range, tuple, set, frozenset, list, dict) are now sped up using PEP 590 vectorcall;
  • A number of Python modules (_abc, audioop, _bz2, _codecs, _contextvars, _crypt, _functools, _json, _locale, operator, resource, time, _weakref) now use multiphase initialization as defined by PEP 489;
  • A number of standard library modules (audioop, ast, grp, _hashlib, pwd, _posixsubprocess, random, select, struct, termios, zlib) are now using the stable ABI defined by PEP 384.

How to Install Python 3.9.0 in Ubuntu:

1.) Open terminal either by pressing Ctrl+Alt+T on keyboard, or by searching for ‘terminal’ from system application launcher.

When terminal opens, run command to add the “deadsnakes” team PPA:

sudo add-apt-repository ppa:deadsnakes/ppa

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

2.) Then run commands to refresh system package cache, and install Python 3.9:

sudo apt update

sudo apt install python3.9

3.) Once successfully installed, check your system Python versions (python –version):

4.) (NOT Recommended) To use Python 3.9 as the default python3, run commands:

sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1

sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 2

For Ubuntu 16.04 and Ubuntu 18.04, replace python3.8 in the code with system’s default python3 version..
And you can then switch between the two Python3 versions via command:

sudo update-alternatives --config python3

NOTE: Due to known bug, terminal won’t open if you changed python3 symlink. An workaround is recreate a symlink via command (Replace python 3.8 with your system default python3 version):

sudo rm /usr/bin/python3; sudo ln -s python3.8 /usr/bin/python3

Uninstall:

To uninstall the Python3.9 packages, run command:

sudo apt remove --autoremove python3.9 python3.9-minimal

To remove the Deadsnakes PPA, launch Software & Updates and go to Other Software tab, then remove the repository line and close the window.

GIMP image editor 2.10.22 available to install in Ubuntu 18.04 and Ubuntu 20.04, though it’s not officially announced at the moment.

GIMP 2.10.22 was ready to download in its website last night. Release highlights in the new release inlcude:

  • HEIF support improvements: optional exporting with high bit depth, AVIF importing and exporting
  • Multiple improvements in Corel PaintShop Pro support
  • “Sample merged” now available in GEGL operation tool options
  • “Sample merged” is now enabled by default for color picking
  • The option enabling OpenCL support has been moved to the Playground tab in Preferences
  • Matting Levin is now the default engine of Foreground Select tool as it performs a lot better
  • New progressive performance logs and dashboard updates
  • Verbose debug now shows Flatpak info when relevant
  • Various bug fixes

How to Install GIMP 2.10.22 in Ubuntu:

The GIMP flatpak is recommended for Linux, and you can get it in flathub repository.

For those prefer installing deb package via apt, the unofficial PPA contains the packages for Ubuntu 18.04 and Ubuntu 20.04.

There’s known issue of the PPA packages: translations won’t install, so GIMP will always work in English.

1.) Open terminal from system application launcher. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/gimp

Type user password (no asterisk feedback) for sudo prompts and hit Enter to continue.

2.) If an old version of GIMP .deb package was installed, upgrade it via Software Updater (Update Manager) utility.

or run apt commands in terminal to install GIMP:

sudo apt update

sudo apt install gimp gimp-gmic

If an old version was installed, it’s recommended to run sudo apt upgrade which will also update the required babl, gegl libraries.

How to Restore:

To restore GIMP to the stock version in main Ubuntu repository, run command to purge the PPA:

sudo apt install ppa-purge && sudo ppa-purge ppa:ubuntuhandbook1/gimp

FreeFileSync 11.2, folder comparison and synchronization software to create and manage backup copies of all your important files, was released a few days ago.

Changes in FreeFileSync 11.2 include:

  • Improved grid layout with file icons hidden
  • Improved rendering of inactive and disabled grid items
  • Remember last user-selected paths for file and folder pickers
  • Fixed folder name hidden in “item name” view type
  • Fixed determination of unsupported trash folder (Linux)
  • Fixed copying broken symlinks (macOS)
  • Fixed default action when pressing Enter in popup dialogs
  • Fixed default popup dialog size (macOS)
  • Use localized start of week for %WeekDay% (Linux, macOS)
  • Swap sides using CTRL+W instead of F10
  • Show confirmation dialog before swapping sides

How to Install FreeFileSync in Ubuntu:

The software offers official Linux package (portable tarball contains executable and most run-time libraries) available to download at the link below:

Simply grab the Linux package, extract, and run the executable. You may also read this step by step guide to create an app launcher for this program.

Want to play games or control any desktop application with a gamepad on Ubuntu Linux? There’s a graphical tool AntiMicroX that may help.

AntiMicrox is program used to map keyboard buttons and mouse controls to a gamepad. Useful for playing games with no gamepad support.

The program can be also used for generating SDL2 configuration (useful for mapping atypical gamepads to generic ones like xbox360).

Install AntiMicroX

The software offers both .deb and .appimage packages in the release page:

You can either grab the single executable .appimage package that runs the program without install, or download the .deb package and install it by opening terminal (Ctrl+Alt+T) and run command:

sudo apt install ./Downloads/antimicrox*.deb

Pale Moon, an open-source Goanna-based web browser, released version 28.14.0 (and 28.14.1 with quick fix) with stability and security improvements.

Pale Moon 28.14.0 release highlights:

  • Updated the browser identity code for website security to more clearly indicate website status.
  • Updated unofficial branding to be more generic and more clearly separate unofficial builds from Pale Moon as a product.
  • Added a preference (signon.startup.prompt) to give users the option to ask for the Master Password the moment the application starts.
  • Changed the way download sources are displayed to always use the actual domain downloads are from.
  • Implemented the CSS flow-root keyword.
  • (Re-)implemented percentage-based CSS opacity values according to the updated spec.
  • Implemented the last few missing bits for a standards-compliant implementation of JavaScript modules.(preloading, resource: scheme, etc.)
  • Implemented the ResizeObserver DOM API.
  • Updated script handling inside SVGs to only run scripts if they are enabled and permitted, avoiding a potential XSS pitfall.
  • Updated the MediaQueryList interface to the updated spec.
  • Removed support for the archaic and non-standard <marquee> element.
  • Removed some leftovers and cleaned up the Windows widget code.
  • Security issues fixed: CVE-2020-15676 and CVE-2020-15677
  • Unified XUL Platform Mozilla Security Patch Summary: 2 fixed, 1 defense-in-depth, 7 not applicable.

How to Install Pale Moon via apt repository:

The opensuse repository offers the new release packages for Debian, Ubuntu 18.04, Ubuntu 20.04, and Ubuntu 16.04.

1.) Open terminal from your system application launcher. When it opens, run command to add the repository for Ubuntu 20.04:

echo 'deb http://download.opensuse.org/repositories/home:/stevenpusser/xUbuntu_20.04/ /' | sudo tee /etc/apt/sources.list.d/home:stevenpusser.list

Depends on your Ubuntu edition, replace xUbuntu_20.04 to xUbuntu_18.04 or xUbuntu_16.04.

2.) Download and install the repository key by running command:

wget -O - https://download.opensuse.org/repositories/home:stevenpusser/xUbuntu_20.04/Release.key | sudo apt-key add -

Also replace xUbuntu_20.04 in the commands depends on your Ubuntu edition.

3.) Finally refresh system package cache and install the web browser by running 2 commands:

sudo apt update

sudo apt install palemoon

Uninstall:

To remove the apt repository, launch Software & Updates and navigate to Other Software tab:

To remove the web browser, open terminal and run command:

sudo apt remove palemoon

OBS Studio 26.0, free open-source streaming and recording program, was released with many new features, improvements, and numerous bug-fixes.

The new released added Virtual Camera feature, allowing you to use the OBS output as a camera in other apps. So far, it’s only for Windows.

Other changes include:

  • Add a Source Toolbar to access to relevant controls for selected source.
  • Add media controls on the source toolbar.
  • Ability to take screenshots of the previews, sources, or scenes with hotkeys
  • Add percentage toggle to the volume controls in advanced audio properties
  • Add more audio capture support for BSD operating systems
  • Add option to disable antialiasing for text sources
  • Add a right-click context menu option to projectors.
  • See here for more details.

How to Install OBS Studio 26.0 in Ubuntu 20.04, 18.04:

The official PPA offers the latest release packages for Ubuntu 18.04 and Ubuntu 20.04:

1. Open terminal either by pressing Ctrl+Alt+T on keyboard or by searching for “terminal” from app launcher. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:obsproject/obs-studio

Type user password (no asterisk feedback) when it prompts and hit Enter.

2. Then either upgrade OBS Studio from an existing version via Software Updater, or run command in terminal to install the software:

sudo apt-get update

sudo apt-get install obs-studio

Once installed, launch the software from your system application launcher and enjoy!

Uninstall:

To remove the software, either use Synaptic package manager or run command in terminal:

sudo apt-get remove --autoremove obs-studio

To remove PPA repositories, launch Software & Updates and navigate to ‘Other Software’ tab.

HPLIP 3.20.9, HP print, scan, and fax drivers for Linux, now is available to download.

Though the release note is not ready at the moment of writing, HPLIP 3.20.9 package is already available to download in its website.

New printers supported in the release:

  • HP LaserJet MFP M234dw
  • HP LaserJet MFP M234dwe
  • HP Color LaserJet Managed MFP E57540dn
  • HP Color LaserJet Managed Flow MFP E57540c
  • HP Color LaserJet Enterprise MFP M578dn
  • HP Color LaserJet Enterprise MFP M578f
  • HP Color LaserJet Enterprise Flow MFP M578c
  • HP Color LaserJet Enterprise Flow MFP M578z
  • HP Color LaserJet Managed E55040dw
  • HP Color LaserJet Managed E55040dn
  • HP Color LaserJet Enterprise M554dn
  • HP Color LaserJet Enterprise M555dn
  • HP Color LaserJet Enterprise M555x

This release also added support Linuxmint 20, OpenSuse 15.2, and Debian 10.4

How to Get HPLIP 3.20.9:

1. To install the software, download the package “hplip-3.20.9.run” from the link below:

2. Then open terminal either via Ctrl+Alt+T or by searching for “terminal” from app launcher. When it opens, run command to give executable permission:

chmod +x ~/Downloads/hplip-3.20.9.run

3. Finally run command to start installing the driver:

./Downloads/hplip-3.20.9.run

Follow the terminal output and answer some questions. If everything goes OK, plug or re-plug your HP devices and enjoy!

Free-software planetarium Stellarium 0.20.3 was released a day ago with numerous changes. Here’s how to install it in Ubuntu 18.04, Ubuntu 20.04 via PPA.

Stellarium 0.20.3 fixed nutation and, with it, season beginning times, included many changes in AstroCalc tool, Oculars and Satellites plugins, and updated DSO catalog.

Changes in the new release include:

  • Add B pass band for compute photometric values of nebulae
  • Add show standard magnitude and RCS info for satellites in the GUI of Satellites plugin
  • Add new filters for satellites
  • Add GUI buttons to define object information font color at daylight and for overwrite mode
  • Add 2 new columns for AstroCalc/Positions tool
  • Add editable keyboard shortcut for buttons in AstroCalc tools
  • Add new initial time steps in AstroCalc/Phenomena tool
  • Add option to use on the screen star designations only
  • Add option in the GUI to define color of text in Equation of Time plugin
  • Add new button into Shortcut Editor and Add new tool to restoring defaults
  • Add action to restart trails
  • Add “current vertical” line
  • Add support custom time steps for ephemeris in AstroCalc/Ephemeris tool
  • Add ability to show several objects’ ephemerides in AstroCalc/Ephemeris tool
  • Add using texture for satellite, when he crossing of the Moon or the Sun
  • Add new groups of satellites: all new groups of satellites based on their orbital properties
  • Add pixel grid for sensors to Ocular plugin
  • Add show a binning info for CCD to Oculars GUI Panel
  • Add option into GUI to toggle drawing halo around the Moon
  • Add new names for planetary features
  • Add star names for Western (O. Hlad) sky culture
  • Add CLI option to start Stellarium in scaling GUI mode
  • Add note to S&T sky culture
  • Add support of new type of labels (labelEquatorial) for scripting engine
  • Add 3 new groups of satellites
  • Add buttons to define special colors for satellites in Satellites plugin
  • Add International Designator info into the GUI of Satellites plugin
  • Add epoch of the TLE info into GUI of Satellites plugin

How to Install Stellarium 0.20.3 in Ubuntu:

The official Stellarium PPA contains the latest packages for Ubuntu 18.04 and Ubuntu 20.04

1. Open terminal either by pressing Ctrl+Alt+T on keyboard or by searching for ‘terminal’ from application menu. 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 prompts and hit Enter.

2. Then either upgrade Stellarium from an old version with Software Updater utility:

Or run following commands to install or upgrade the software from terminal:

sudo apt update

sudo apt install stellarium

Uninstall:

To remove the software, either use your system package manager or run command:

sudo apt-get remove --autoremove stellarium

And remove the PPA via “Software & Updates” utility under Other Software tab.

Kid3 audio tag editor 3.8.4 was released a day ago with bug-fixes and usability improvements. Here’s how to install it in Ubuntu 16.04, Ubuntu 18.04, and Ubuntu 20.04.

Kid3 3.8.4 release highlights according to the change-log:

  • Ability to customize the section and file list shortcuts
  • Ctrl + Up/Down to activate parent/current folder
  • Left arrow key to go to parent item in file list
  • Header context menu options for custom or automatic column widths.
  • Add flatpak package support.
  • Show more details (type, bits, bitrate) for M4A, FLAC, AIFF, WAV.
  • Other improvements and bug-fixes.

How to Install Kid3 3.8.4 in Ubuntu:

The official Kid3 PPA has been updated with the new packages for all current Ubuntu releases, Linux Mint and derivatives.

1. Open terminal either from application launcher or by pressing Ctrl+Alt+T on keyboard. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:ufleisch/kid3

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

2. If an old version was installed, upgrade Kid3 using Software Updater:

or run commands one by one in terminal to install or upgrade to the latest tag editor:

sudo apt update

sudo apt install kid3-qt

You may replace kid3-qt with kid3 in the code for KDE integration, or with kid3-cli for the command-line interface

Uninstall

To remove the PPA repository, either open Software & Updates -> Other Software tab, or run command:

sudo add-apt-repository --remove ppa:ufleisch/kid3

To remove the audio tag editor, either use your system package manager or run command:

sudo apt remove --auto-remove kid3 kid3-*