Archives For November 30, 1999

Cawbird is a modern lightweight Twitter client for GNOME 3. It features inline image and video preview, creation of lists and favorites, filtering of tweets and full text search.

Cawbird is a fork of Corebird, which became unsupported after Twitter disabled the streaming API. Cawbird works with the new APIs and includes a few fixes and modifications that have historically been patched in to IBBoard’s custom Corebird build on his personal Open Build Service account.

Cawbird has the following limitations due to changes in the Twitter API (imposed by Twitter, not the fault of the client):

  • Cawbird will update every two minutes
  • Cawbird does not get notified of the following, which will be refreshed on restart:
    • Unfavourite
    • Follow/Unfollow
    • Block/Unblock
    • Mute/Unmute
    • DM deletion
    • Some list changes

How to Install Cawbird in Ubuntu:

The easiest way is simply search for and install cawbird from Ubuntu Software.

This is a Snap package runs in sandbox. And it’s maintained by the community.

For those prefer native .deb package, go to the developer maintained repository at the link below:

Select Ubuntu, then click ‘Grab binary packages directly‘ and download the .deb package for your system.

Finally install the .deb via Gdebi package installer (available in Ubuntu Software) and enjoy!

This simple tutorial is going to show how to set two different screen brightness levels for AC adapter or on battery.

So Ubuntu 18.04 (or Ubuntu 19.10) laptop with the default Gnome 3 desktop will automatically dim screen when the charger is unplugged.

1.) Open Ubuntu Software, search for and install ‘dim on battery power’ (without quote).

2.) Then launch the extension settings either in Ubuntu Software or via Gnome Tweaks > Extensions (install Gnome Tweaks via Ubuntu Software).

When it opens, change the values of screen brightness on battery or AC power.

That’s it. Enjoy!

This simple tutorial shows how to speed up the downloading process of snap application package by associating IP address with the snapcraft server in Ubuntu.

Snap is a containerized package format, that makes many great applications (e.g., Spotify, Skype, the latest Blender, and more) easy to install in Ubuntu 18.04 and higher.

However snap is LARGE in file size. Due to slow international network speed, downloading a snap in 20MB even take more than half an hour in my case.

1.) Open terminal either via Ctrl+Alt+T keyboard shortcut or by searching for ‘terminal’ from application menu. When terminal opens, run command:

dig fastly.cdn.snapcraft.io

In the terminal output, copy the IP address under ‘ANSWER SECTION’:

2.) Then run commands to edit the hosts file:

sudo gedit /etc/hosts

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

When the files opens in gedit text editor, paste following line:

151.101.42.217 fastly.cdn.snapcraft.io

Replace the IP address with which you got in step 1, and finally save the file.

That’s it. Enjoy!

Linux 5.4 Kernel was released today. Here’s how to install it in Ubuntu and Linux Mint.

Linus Torvalds announced the 5.4 Kernel on lkml.org:

Not a lot happened this last week, which is just how I like it. And as expected, most of the pull requests I got were for the 5.5 merge window, which I’ll obviously start working through tomorrow.

Linux 5.4 Kernel brings a lot of new hardware support,including AMD Arcturus GPU, Navi 12 and Navi 14 GPUs, AMD Dali and Renoir APU support,Intel Tiger Lake “Gen 12” graphics,Qualcomm Snapdragon 855 SoC, Intel Ice Lake Thunderbolt support. The new release also features Logitech Linux LOCKDOWN LSM, Lightspeed receiver support, Microsoft exFAT support, and a plethora of other new features and improvements.

How to Install Linux Kernel 5.4 in Ubuntu:

The mainline kernel packages for Linux 5.4 are available for download at the link below:

Depends on your OS type, download and install the packages in turns:

  1. linux-headers-5.4.0-xxxxxx_all.deb
  2. linux-headers-5.4.0-xxx-generic(/lowlatency)_xxx_amd64.deb
  3. linux-modules-5.4.0-xxx-generic(/lowlatency)_xxx_amd64.deb
  4. linux-image-xxx-5.4.0-xxx-generic(/lowlatency)_xxx_amd64.deb

Select generic for common system, and lowlatency for a low latency system (e.g. for recording audio), amd64 for 64bit system, i386 for 32bit system, or armhf, arm64, etc for other OS types.

Alternatively you can download and install the kernel binaries via terminal commands ( open terminal via Ctrl+Alt+T):

For 64-bit OS:

cd /tmp/

wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.4/linux-headers-5.4.0-050400_5.4.0-050400.201911242031_all.deb

wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.4/linux-headers-5.4.0-050400-generic_5.4.0-050400.201911242031_amd64.deb

wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.4/linux-image-unsigned-5.4.0-050400-generic_5.4.0-050400.201911242031_amd64.deb

wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.4/linux-modules-5.4.0-050400-generic_5.4.0-050400.201911242031_amd64.deb

sudo dpkg -i *.deb

No 32-bit packages so far as build for 32-bit failed.

Once installed, restart your computer and enjoy!

Uninstall Linux Kernel 5.4:

Restart your machine and select boot with the previous kernel in boot menu ‘Grub2 -> Advanced Option for Ubuntu’. Then run command to remove Linux Kernel 5.4:

sudo dpkg --purge linux-image-unsigned-5.4.0-050400-generic

Glimpse, a downstream fork of the GNU Image Manipulation Program (GIMP in short), released version 0.1 a few days ago. It can be installed in Ubuntu 18.04 and higher via either Snap or Flatpak.

Due to the problematic word “gimp”, Glimpse forked the well known image editor so there are no potential barriers to using the software in businesses and educational institutions.

“If English is not your first language, then you may not have realised that the word “gimp” is problematic. In some countries it is considered a slur against disabled people and a playground insult directed at unpopular children. It can also be linked to certain “after dark” activities performed by consenting adults.

…”

Glimpse 0.1 is based on GIMP 2.10. So far they just look like same application with different names (in my own opinion).

How to Install Glimpse in Ubuntu:

For Ubuntu 18.04 and higher, you can easily install the community build Snap package of Glimpse image editor from Ubuntu Software.

If you’re familiar with command line, run command in terminal to install the Snap package:

sudo snap install glimpse-editor

The software also offers official Flatpak package available in Flathub repository:

This quick tutorial shows how to install RTL8814AU and RTL8812AU/21AU drives in Ubuntu 19.10 with Kernel 5.13.

First plug your Ubuntu machine into a wired internet connection. Then open terminal either from application menu or by pressing Ctrl+Alt+T on keyboard. When it opens, run commands:

1. Run command to install dkms, git, and building tools:

sudo apt install git build-essential dkms

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

2. Grab the source code via git command:

git clone https://github.com/aircrack-ng/rtl8812au.git

The command will take a few minutes depends on your internet connection.

3. Once the cloning process is done. Navigate to the source folder and install the driver via dkms.

cd rtl8812au && sudo ./dkms-install.sh

When everything’s done. Reboot your machine with the Wifi device inserted and your wireless should be working.

4.(Optional) The source folder also contains an uninstall script. For any reason, you can remove the Wifi driver via command:

cd ~/rtl8812au && sudo ./dkms-remove.sh

Audacity audio editor released version 2.3.3 a few hours ago. Here’s how to install it in Ubuntu 18.04, Ubuntu 19.04, and Ubuntu 19.10.

Audacity 2.3.3 features over 150 bug-fixes, and following improvements:

  • Equalization effect now split into two effects, Filter Curve and Graphic EQ.
    • Presets (using manage button) now active/working.
    • Can now have two points at same frequency for steep steps.
  • ‘What you hear is what you get’ for exports.
  • Leading silence (blank space) not skipped over in exports.
  • Quality setting on AAC/M4A exports.
  • Some confusing functionality removed.

How to Install Audacity 2.3.3 in Ubuntu:

The unofficial PPA has built the 2.3.3 packages for Ubuntu 18.04, Ubuntu 19.04, Ubuntu 19.10, and their derivatives, e.g., Linux Mint 19.x.

1. Open terminal either via Ctrl+Alt+T keyboard shortcut or by searching for ‘terminal’ from application menu. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/audacity

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

2. If you have a previous version installed, you can upgrade Audacity via Software Updater after adding the PPA.

or run following commands one by one to check updates and install (or upgrade) audacity 2.3.2:

sudo apt-get update

sudo apt-get install audacity

Uninstall:

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

To remove Audacity audio software, either use system package manager or run command in terminal:

sudo apt-get remove --autoremove audacity audacity-data

Gnome image viewer and organizer gThumb 3.8.2 was released a few days ago with app menu improvements. Here’s how to install it in Ubuntu 18.04 and higher.

gThumb 3.8.2 uses menu instead of popovers for menu buttons on the header bar, so the drop-down menu now has icons, and accelerator keys.

Gnome shows focused application’s icon and name with a drop-down menu in the top panel. In gThumb 3.8.2, the top panel app menu options are merged into the header bar menu button.

The new release also improved webp support. You can now open webp image from files’ context menu (‘Open With Other Application’). Or simply set gThumb as default image viewer to open webp in file’s Properties dialog (‘Open With’ tab.).

gThumb 3.8.2 changelog:

  • Use menus instead of popovers for menu buttons on the header bar.
  • Align menus to the right for menu buttons on the right side.
  • Search: show the matching files during the search operation.
  • Rename dialog: activate on enter.
  • Added image/webp support in .desktop file.
  • Translation updates and some bug-fixes.

How to Install gThumb 3.8.2 in Ubuntu:

While gThumb in Ubuntu main repository is always old, Dariusz Duma’s PPA maintains the latest software packages for Ubuntu 18.04, Ubuntu 19.04, Ubuntu 19.10, and Linux Mint 19.x.

1.) Open terminal either via Ctrl+Alt+T keyboard shortcut or by searching for terminal from application menu. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:dhor/myway

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

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

or run commands in terminal to install or upgrade the image viewer:

sudo apt update && sudo apt install gthumb

Uninstall:

To remove the PPA, either open Software & Updates and navigate to Other Software tab, or run command in terminal:

sudo add-apt-repository --remove ppa:dhor/myway

And you can remove gThumb via command:

sudo apt remove gthumb gthumb-data

CopyQ, an open-source clipboard manager with editing and scripting features, released version 3.9.3 a few days ago. Here’s how to install it in Ubuntu 16.04, Ubuntu 18.04, Ubuntu 19.04, and Ubuntu 19.10.

CopyQ 3.9.3 features new loadTheme() script function loads theme from INI file. And there are also following changes in the release:

  • Currently selected item stays on top on PageUp/Down
  • Skips using a command from a disabled plugin
  • Logs information on slow menu filters and display commands
  • Fix taking screenshots on multiple monitors
  • Fix duplicate show/hide tray menu items
  • Fix moving synchronized items to top when activated
  • Performance improvements and other fixes.

How to Install Copyq 3.9.3 in Ubuntu:

The official PPA repository has made the latest packages for Ubuntu 16.04, Ubuntu 18.04, Ubuntu 19.04, Ubuntu 19.10, and Linux Mint 18.x, 19.x.

1. To add the PPA, open terminal (Ctrl+Alt+T) from application menu and run command:

sudo add-apt-repository ppa:hluk/copyq

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

2. Then install CopyQ either via Synaptic package manager or by running commands in terminal:

sudo apt-get update

sudo apt-get install copyq

Once installed, start the clipboard manager from application menu and you’ll see the icon in system tray area.

Uninstall:

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

sudo apt-get remove --autoremove copyq

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