Archives For November 30, 1999

utorrent ubuntu 16.04

Quick tutorial for beginners how to install μTorrent (uTorrent) in Ubuntu 16.04, by setting up μTorrent server in Ubuntu so you can easily access and control your BitTorrent downloading any where (over LAN or internet) using a web browser.

1. Download μTorrent for Ubuntu:

The latest packages in Linux download page are said for Ubuntu 13.04, however, it works on all current Ubuntu releases including Ubuntu 16.04:

Download uTorrent server for Ubuntu 13.04

For Ubuntu server, grab the package via wget command:

Download utserver for 32-bit system:

wget http://download-new.utorrent.com/endpoint/utserver/os/linux-i386-ubuntu-13-04/track/beta/ -O utserver.tar.gz

Download utserver for 64-bit system:

wget http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/ -O utserver.tar.gz

2. Install uTorrent sever to /opt/, and create symlink

Open terminal (Ctrl+Alt+T) or login to Ubuntu server, and run command to extract the downloaded server to /opt/:

sudo tar -zxvf utserver.tar.gz -C /opt/

For Ubuntu Desktop user who downloaded uTorrent server package using a web browser, you may replace the command with:

sudo tar -zxvf ~/Downloads/utserver.tar.gz -C /opt/

Then you may change the ownership via command:

sudo chown root:root -R /opt/utorrent-server-alpha-v3_3/

And finally create a symlink to the executable via command:

sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver

3. Install the required libssl library via command:

sudo apt-get install libssl1.0.0 libssl-dev

4. Finally start uTorrent server:

utserver -settingspath /opt/utorrent-server-alpha-v3_3/ &

Login μTorrent web client:

Open a web browser and go to http://server-ip-address:8080/gui or http://yourdomain.com:8080 to get into the login screen. (get you ip via ifconfig command).

For the first login, type admin as username and leave the password box empty.

  • username: admin
  • password: none

uTorrent Web UI

Once you’re in, go to Settings -> Web UI to change username and password, remote access IPs. And you may enable Remote Access to allow remote access from anywhere on the internet.

adobe-flash-icon245

By releasing the 23 Beta flash, Adobe announced that it starts supporting NPAPI Flash for Linux again.

Today we are updating the beta channel with Linux NPAPI Flash Player by moving it forward and in sync with the modern release branch (currently version 23). We have done this significant change to improve security and provide additional mitigation to the Linux community.

In the past, we communicated that NPAPI Linux releases would stop in 2017. This is no longer the case and once we have performed sufficient testing and received community feedback, we will release both NPAPI and PPAPI Linux builds with their major version numbers in sync and on a regular basis.

Adobe says it will release both the NPAPI and PPAPI (used in Chrome) versions of Flash Player for Linux. However, the NPAPI version will not support or add any advanced features and capabilities, like DRM, GPU acceleration, Stage 3D, etc.

Users who require this functionality are recommended to use Pepper (PPAPI) Flash for Linux.

About Flash 23

Install Adobe Flash 23 Beta for Firefox in Ubuntu:

Flash sucks! But since many websites still use it, we have to use flash to view the content.

So far only 32-bit and 64-bit binaries of the 23 release are available for download at the link below:

Flash Player 23 Beta for Linux (NPAPI)

For Linux, the binary is just a file called: libflashplayer.so. To use it, do:

1. Install Flash Player 11.2 from Canonical Partners repository:

  • Launch Software & Updates, and enable Canonical Partners repository in Other Software tab. Then close it.

    enable canonical partners

  • Open terminal (Ctrl+Alt+T) and run command to install Adobe-flashplugin:
    sudo apt update; sudo apt install adobe-flashplugin

2. Move the libflashplayer.so file you just downloaded to /usr/lib/adobe-flashplugin/ folder by running the command:

sudo mv ~/Downloads/libflashplayer.so /usr/lib/adobe-flashplugin/

Finally restart Firefox browser and check your flash version:

Adobe Flash 23 for Firefox

Twitter App Corebird 1.3.1 Released with some Fixes

Last updated: September 6, 2016

Corebird Twitter Client

The open-source desktop twitter client Corebird has reached the 1.3.1 release with some fixes to 1.3 release. For those who prefer this modern twitter app, it’s available for upgrade in my PPA (unofficial) for Ubuntu 16.04 and Ubuntu 16.10.

Changes in Corebird 1.3.1:

  • Fix muted and/or blocked tweets still showing up in timelines
  • Fix accounts not getting saved when first created
  • Fix retweets of the authenticating user not getting theiry correct seen status
  • Fix profiles descriptions containing ampersand characters and links
  • Fix profile banner fade-in transition
  • Fix doubly-escaped ampersands in link tooltips
  • Fix missing underlines in @screen_names in the profile popover
Corebird 1.3.1

Corebird with Numix GTK theme

How to install Corebird 1.3.1 in Ubuntu:

For Ubuntu 16.04, and/or Ubuntu 16.10, you can either download the .deb binary from the PPA file archive, or run the commands below one by one in terminal to add PPA and install Corebird:

sudo add-apt-repository ppa:ubuntuhandbook1/corebird

sudo apt update

sudo apt install corebird

Tip: The GetDeb repository also maintains Corebird packages for Ubuntu 16.04, now it contains Corebird 1.3 and the 1.3.1 release should be available soon.

With the PPA added, you can upgrade Corebird along with other system updates via Software Updater when a new release is out and uploaded into PPA.

upgrade corebird 1.3.1

And the PPA can be easily disabled or removed via Software & Updates utility under Other Software tab.

How to install Gambas 3.9.0 in Ubuntu 16.04, 14.04

Last updated: September 4, 2016

gamebas3-icon245

Gambas has recently reached the 3.9.0 release. Available in its official PPA repository for Ubuntu 16.04, Ubuntu 14.04, and Ubuntu 12.04.

Gambas 3.9.0 brings hundreds of new features, bug fixes and optimizations. The main feature is gb.web.form, a new component that allows to make the GUI of your web application from the Gambas IDE. Other features are:

  • gb.form.terminal, a new component providing a full-featured terminal emulation.
  • A new IDE output console based on the previous component.
  • A new and better project argument list interface.
  • Project creation is now based on project templates. Custom templates can be defined.
  • New library management system.
  • The Expression class is now inheritable and allows to customize the interpreter evaluator.
  • FileView and DirView controls automatically refresh themselves if your project uses the gb.inotify component.
  • TextEditor now can display thin vertical lines to emphasize indentation.
  • Menu can have a proxy, i.e. pop up the children of another menu.
  • Paint.StretchImage() is a new method that scales an image to fit a rectangle, keeping the image proportions.
  • gb.net.smtp component support PLAIN and CRAM-MD5 authentication.

Gambas 3.9.0

How to install Gambas 3.9.0 in Ubuntu via PPA:

1. Before installing Gambas 3.9.0, remove the previous release if installed:

sudo apt remove gambas3 && sudo apt autoremove

Type in your password when it asks and hit Enter

2. Add Gambas PPA via command:

sudo add-apt-repository ppa:gambas-team/gambas3

gambas3 ppa

3. Update and install the new Gambas 3.9.0 release via:

sudo apt update

sudo apt install gambas3

Revert to original Gambas in Ubuntu:

ppa-purge will not downgrade the software due to a package conflict. So to undo changes:

  • remove the current release via the command in step 1:
    sudo apt remove gambas3 && sudo apt autoremove
  • remove the PPA via command:
    sudo add-apt-repository --remove ppa:gambas-team/gambas3
  • finally reinstall the stock version of gambas in Ubuntu:
    sudo apt update && sudo apt install gambas3

Spotify light theme

For those who prefer light skins in desktop applications, ‘spotio‘ is open-source project offers a proof-of-concept Rdio-inspired skin for Spotify desktop app.

The project provides a setup script that automatically downloads the latest Spotify client binary from its official repository, extracts it, and rebuilds the package with Spotio theme so your Spotify app looks like:

spotify light theme

To get started:

1. Download Spotio from the link below:

Download Spotio master (.zip)

2. Extract the package, and go to the result directory in terminal by:

  • either right-clicking on the folder and choosing “Open in terminal”.
  • or launching terminal (Ctrl+Alt+T) and running cd ~/Downloads/spotio* command

spotio folder

3. Now run the setup script to download Spotify for its official repository and repack it with spotio theme:

./setup-linux.sh

run-spotio-setup

4. The new package will be generated in dist/ folder and named spotio.deb, install it when done:

cd dist/ && sudo dpkg -i spotio.deb

install-spotio-package

It will replace previous Spotify version you installed.

Restore Spotify with Dark UI:

So far the easiest way to restore changes is to download and re-install the official package

converseen batch image resizer

Converseen, a free and open-source batch image resizer and converter, has reached the 0.9.5 a few days ago.

Converseen 0.9.5 is the first Qt5 port release written in C++. It works on Windows, Linux, and FreeBSD. With Magick++ image libraries it supports more than 100 image formats.

Features:

  • Convert an unlimited number of images
  • Create thumbnails to any of the most popular formats
  • Carry out a single or a multiple conversion
  • Resize, compress images.
  • Rotate and flip images.

Converseen 0.9.5

How to install Converseen 0.9.5 in Ubuntu 16.04, 14.04

While Ubuntu offers the 0.9.2 release in its main repository, you can install or upgrade Converseen from an third-party PPA.

1. Open terminal (Ctrl+Alt+T) and run command to add PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/apps

converseen ppa

2. To upgrade from a previous release, launch Software Updater and install available updates after checking for updates:

upgrade converseen

Or just run the commands below in terminal to install or upgrade the software:

sudo apt update && sudo apt install converseen

For those who don’t want to add PPA, grab the .deb package from the file archive.

3. (Optional) To remove converseen image processor, run:

sudo apt remove converseen && sudo apt autoremove

And the PPA can be disabled or removed via Software & Updates utility in Other Software tab.

OpenShot Video Editor

OpenShot video editor finally reached the new major 2.1 stable release. Here’s how to install it in Ubuntu 16.04, Ubuntu 14.04 via PPA.

OpenShot 2.1 adds support for displaying audio waveforms on clips, improves property editing, provides a new selection dropdown, supports user-configurable keyboard mapping, Windows 64-bit support, timeline improvements, a new startup tutorial, performance gains for effects, improved transitions, and much more.

The OpenShot Stable PPA has made the 2.1 release packages (Qt5 built) for Ubuntu 16.04, Ubuntu 14.04. To install it, do:

1. Launch terminal (Ctrl+Alt+T) and run command to add PPA:

sudo add-apt-repository ppa:openshot.developers/ppa

openshot-stable-ppa

2. You may have both 1.4.3 and 2.1 releases installed on your system since the new release is built against Qt5 and uses different application icons.

Just run the commands below in terminal to update and install Shotwell 2.1:

sudo apt update

sudo apt install openshot-qt

And finally launch the video editor from Unity Dash and enjoy!

launch OpenShot video editor

OpenShot 2.1

KDE Connect 1.0

KDE Connect has officially reached the first stable 1.0 release after a year of development. And now it’s made into Kubuntu Backports Landing PPA.

KDE Connect is a project that aims to communicate all your devices. For example, with KDE Connect you can receive your phone notifications on your computer, or just use your phone as a remote control for your desktop.

New features in KDEConnect 1.0:

  • Trigger custom commands from your phone
  • Reply to SMS messages from your desktop
  • Receive desktop notifications on your phone
  • TLS encryption

For more details, read the official announcement.

KDE Connect 1.0

How to install KDE Connect 1.0 in Ubuntu 16.04:

Kubuntu Backports Landing PPA is a test repository for packages that will land in KUbuntu Backports PPA.

1. Don’t install it in Unity Desktop, the required Qt 5.6 library will break Unity Web Apps
2. For a stable system, please wait the packages to be landed in KUbuntu Backports PPA.

1. Open terminal and add the PPA

sudo add-apt-repository ppa:kubuntu-ppa/backports-landing

Kubuntu Backports Landing PPA

2. This build uses the old packaging, you need to remove the old kdeconnect-plasma package before installing the new release:

sudo apt remove kdeconnect-plasma

3. Update and install KDEConnect 1.0:

sudo apt update && sudo apt install kdeconnect

And also install the latest KDE Connect in Android device from Google Play.

Undo / Restore the changes:

To downgrade installed packages and libraries from that repository, run command the purge the PPA:

sudo apt install ppa-purge && sudo ppa-purge ppa:kubuntu-ppa/backports-landing

In addition, the maintainer offers a separate PPA with KDEConnect 1.0 packages for Ubuntu 16.10, and Ubuntu 16.04. However, the 16.04 build requires Qt5 core libraries >= 5.6.0.

FocusWriter

FocusWriter, a simple, feature-riched, and distraction-free word processor, has now reached the 1.6.0 release with some great enhancements and fixes.

FocusWriter 1.6.0 adds 4 new background themes, headings (h1 to h6) format, ODT Flat XML files and high DPI displays support.

Other Changes in FocusWriter 1.6.0:

  • Option to always show scrollbar, topbar, bottom bar.
  • Allow removing user-installed dictionaries
  • Add shortcut for typographical apostrophe
  • Switched to QSoundEffect
  • Update dictionaries
  • Bug fixes and translation updates:
    • Daily progress did not reset when run longer than a day
    • Printer margins were too big
    • Was replacing session files with command-line files
    • Did not add new default symbol shortcuts
FocusWriter 1.6.0 with Spy Games theme

FocusWriter 1.6.0 with Spy Games theme (fullscreen mode)

How to install FocusWriter 1.6.0 in Ubuntu:

The official Ubuntu PPA has been updated with Ubuntu 16.04 and Ubuntu 16.10 support, the new release also available for Ubuntu 14.04 and derivatives.

1. Open terminal (Ctrl+Alt+T) and add the PPA:

sudo add-apt-repository ppa:gottcode/gcppa

focuswriter-ppa

2. To upgrade from a previous release, just launch Software Updater and install the updates after checking for updates.

upgrade to focuswriter 1.6

Or you may install the program via command:

sudo apt update && sudo apt install focuswriter

For those who don’t want to add PPA, grab the latest .deb package directly from the PPA archive.