Archives For November 30, 1999

Visual Studio Code IDE

Visual Studio Code has reached the 1.16 release earlier today. Here’s how to install it in Ubuntu.

Visual Studio Code 1.16 release highlights:

  • Easily extract JavaScript or TypeScript code into methods or functions with new code actions.
  • Improved editor productivity with automatic close tags.
  • You can now use the VS Code color picker in HTML files.
  • The Integrated Terminal can now be launched in Quick Open.
  • Drag and drop from Search results and Problems panel
  • Support for having multiple source control providers simultaneously
  • New online documentation and more.

How to Install VS Code 1.16 in Ubuntu:

The official .deb package for Debian/Ubuntu is available for download at the link below:

Download VS Code (.deb)

Install the package via either Gdebi package manager or command (Ctrl+Alt+T):

sudo dpkg -i ~/Downloads/code_*.deb; sudo apt -f install

For those who want to receive updates for VS Code via Software Updater utility, add the Microsoft repository via following steps (64bit only):

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

sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'

2. Download and install the repository key via commands:

curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg

sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg

Install VS Code Snap app in Ubuntu:

Microsoft Visual Studio Code is available via Snap app in Ubuntu, though it’s not updated to version 1.16 at the moment of writing, see how to install VS Code vis Snap in Ubuntu.

OpenShot 2.4 Released! How to Install it in Ubuntu

Last updated: September 11, 2017

OpenShot Video Editor

The openshot video editor has reached the 2.4 release earlier today with stability improvements. Here’s how to install it in all current Ubuntu releases.

OpenShot 2.4 mainly features following changes:

  • Vastly improved stability, improved undo/redo history (now being saved inside each project file).
  • Fixed Image Sequence exporting. Supports PNG, JPG, PPM, BMP and a few others.
  • Added ‘Audio Only’ and ‘Video Only’ export options.
  • New freeze and zoom menu
  • Prevent crashes related to too many threads
  • Fix many crash issues and other bugs.
  • See the release note for details.

openshot 2.4

How to Install OpenShot 2.4 in Ubuntu:

A 64-bit AppImage is available for download at the link below. Just download, make executable and run the file to launch OpenShot:

Download OpenShot AppImage

For traditional packages, OpenShot’s official PPA contains the .deb packages for Ubuntu 14.04, Ubuntu 16.04, and Ubuntu 17.04, though OpenShot 2.4 build it not ready at the moment of writing.

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

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

Input your password (no visual feedback while typing) when it prompts and hit Enter.

2. Then upgrade the editor via “Software Updater”, if you have a previous openshot-qt package installed.

Or run commands to check updates and install / upgrade OpenShot:

sudo apt-get update

sudo apt-get install openshot-qt

Uninstall:

To uninstall openshot video editor, run following command in terminal:

sudo apt-get remove --autoremove openshot-qt

And remove the PPA by launching “Software & Updates” and navigating to Other Software tab.

Shotcut, a free, open-source, and cross-platform video editor application, has reached the 17.09 release earlier today.

Shotcut 17.09 contains various bug fixes and translation updates, it also contains following changes:

  • Renewed the code signing certificate for the Windows installer and executable.
  • Updated SDL to v2.0
  • Updated FFmpeg to v3.2
  • Updated x264, x265, and vp8/9 to the latest stable versions.
  • Add the ability to turn off the welcome message

How to Install Shotcut 17.09 in Ubuntu:

The software offers portable Linux package available for download at the link below:

Download Shotcut

Simply extract the Linux tarball, and run executable to launch the editor.

For better Ubuntu integration, install the Shotcut snap app via following commands:

1. For Ubuntu 14.04 & Ubuntu 16.04 who’ve never installed a snap app, open terminal (Ctrl+Alt+T) and run command to install snapd daemon:

sudo apt-get install snapd snapd-xdg-open

Input your password (no visual feedback while typing) when it prompts and hit Enter.

2. Then install Shotcut snap app via command:

sudo snap install shotcut --classic

Once installed, launch it from your application launcher and enjoy!

Uninstall:

The snap app will be upgrade automatically once a new release is published. To remove it, open terminal and run command:

sudo snap remove shotcut

Linux Kernel

After 7 release candidates, Linux Kernel 4.13 was finally released yesterday afternoon. Linus Torvalds announced that:

So last week was actually somewhat eventful, but not enough to push me to delay 4.13.

Most of the changes since rc7 are actually networking fixes, the bulk of them to various drivers. With apologies to the authors of said patches, they don’t look all that interesting (which is definitely exactly what you want just before a release). Details in the appended shortlog.

Note that the shortlog below is obviously only since rc7 – the _full_ 4.13 log is much too big to post and nobody sane would read it. So if you’re interested in all the rest of it, get the git tree and limit the logs to the files you are interested in if you crave details.

New Features in Kernel 4.13:

  • Initial Intel Cannonlake and Coffeelake support
  • Nouveau has HDMI 3D / stereoscopic support.
  • Radeon/AMDGPU DRM updates
  • New HID, audio hardware support
  • New input drivers support.
  • And lots of more other changes and improvements.

How to Install Kernel 4.13 in Ubuntu / Linux Mint:

The mainline kernels do not include any Ubuntu-provided drivers or patches. They are not supported and are not appropriate for production use.

The mainline kernel PPA has made the new kernel binaries for Ubuntu, available for download at the link below:

Download Kernel 4.13 (.deb)

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

  1. linux-headers-4.13.0-xxxxxx_all.deb
  2. linux-headers-4.13.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
  3. linux-image-4.13.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).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.

To get the Kernel 4.13 from the command console, run the commands below one by one:

For 64-bit OS:

cd /tmp/

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.13/linux-headers-4.13.0-041300_4.13.0-041300.201709031731_all.deb

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.13/linux-headers-4.13.0-041300-generic_4.13.0-041300.201709031731_amd64.deb

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.13/linux-image-4.13.0-041300-generic_4.13.0-041300.201709031731_amd64.deb

sudo dpkg -i *.deb

for 32-bit OS:

cd /tmp/

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.13/linux-headers-4.13.0-041300_4.13.0-041300.201709031731_all.deb

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.13/linux-headers-4.13.0-041300-generic_4.13.0-041300.201709031731_i386.deb

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.13/linux-image-4.13.0-041300-generic_4.13.0-041300.201709031731_i386.deb

sudo dpkg -i *.deb

After installed these .debs, restart and enjoy!

Uninstall Linux Kernel 4.13:

Start/restart your machine and select boot with the previous kernel in Grub2 -> Advanced menu. Then use Ubuntu Tweak, or other system tool to remove the Kernel 4.13, or you may see this how to remove old kernels tutorial.

shutter screenshot

Shutter, a feature-rich screenshot tool, got a new release recently after 2 years and 9 months since the last.

Shutter 0.94 is a bug-fix release with following fixes:

  • A crash issue when launching a second instance of Shutter
  • Shutter screenshots uploaded to Dropbox expires
  • Imgur uploaded links dialog shows links in random order on every upload
  • “Send by email” (ctrl+shft+E) error.
  • Insecure use of system() allows arbitrary code execution via “Show in Folder”
  • ‘Window’ does not show non-latin characters
  • imgur upload plugin no longer works due to now unsupported API 1 and 2
  • Linux software store metadata

shutter 0.94

How to install Shutter 0.94 in Ubuntu 16.04, 17.04:

Shutter has an official PPA repository, but it does not update the new 0.94 packages at the moment of writing, though it has been released for more than 2 weeks.

For Ubuntu 16.04 and Ubuntu 17.04, you can upgrade to Shutter 0.94 via following steps using the unofficial PPA:

1. Open terminal via Ctrl+Alt+T or from app launcher. When it opens, run commands to add PPA:

sudo add-apt-repository ppa:ubuntuhandbook1/shutter

Input your password (no visual feedback while typing) when it prompts and hit Enter.

2. Then upgrade the screenshot tool via Software Updater:

or simply run commands to check updates and install shutter:

sudo apt-get update

sudo apt-get install shutter

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

How to Remove:

To downgrade Shutter to previous 0.93.1, purge the PPA repository via command:

sudo apt-get install ppa-purge && sudo ppa-purge ppa:ubuntuhandbook1/apps

To just remove the unofficial PPA and keep Shutter 0.94, launch “Software & Updates” utility and navigate to Other Software tab.

Bookworm is a simple eBook reader with a modern user interface. It’s so far supports EPUB, PDF, MOBI, CBR, and CBZ file formats.

Bookworm ebook reader so far features:

  • Toggle between a grid view and a list view for the library.
  • An info button provides “Contents”, “Bookmarks”, and “Search Results” in three tabs.
  • Dark theme, cache support.
  • Keyboard shortcuts to navigate pages, change font size, enter/exist full screen.
  • And see its web page for more.

How to Install Bookworm in Ubuntu:

The ebook reader has an official PPA repository for Ubuntu 16.04, Ubuntu 17.04, and derivatives.

1. Open terminal via Ctrl+Alt+T or by searching it from app launcher. When it opens, run command to add the PPA:

sudo add-apt-repository ppa:bookworm-team/bookworm

Input your password (no visual feedback while typing) when it prompts and hit Enter.

2. (For ubuntu 16.04 only) While Bookworm was originally designed for Elementary OS. Ubuntu 16.04 needs following PPA to install the libgranite3 library:

sudo add-apt-repository ppa:elementary-os/stable

3. Finally check updates and install Bookworm as well as all its dependencies via commands:

sudo apt-get update

sudo apt-get install bookworm

4. And remove the dependency PPA after all:

sudo add-apt-repository --remove ppa:elementary-os/stable

Uninstall:

To remove Bookworm ebook reader, run command:

sudo apt-get remove --autoremove bookworm

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

Ubuntu 17.10 Beta 1 Released for Opt-in Flavors

Last updated: September 1, 2017

Ubuntu 17.10

The first Beta of Ubuntu 17.10 Artful Aardvark was announced last night. The beta features images for Kubuntu, Lubuntu, Ubuntu Budgie, Ubuntu Kylin, Ubuntu MATE, Ubuntu Studio and Xubuntu.

It was announced in the Ubuntu-release mailing list:

The first beta of the Artful Aardvark (to become 17.10) has now been released!

This milestone features images for Kubuntu, Lubuntu, Ubuntu Budgie, Ubuntu Kylin, Ubuntu MATE, Ubuntu Studio and Xubuntu.

Pre-releases of the Artful Aardvark are *not* encouraged for anyone needing a stable system or anyone who is not comfortable running into occasional, even frequent breakage. They are, however, recommended for Ubuntu flavor developers and those who want to help in testing, reporting, and fixing bugs as we work towards getting this release ready.

Ubuntu 17.10 Beta 1 features:

  • Plasma desktop 5.10.5 in Kubuntu 17.10.
  • Change from ifupdown to netplan for networking in Lubuntu 17.10 Beta1
  • Budgie Desktop 10.4, replace GNOME Photos with gThumb, Nautilus 3.24 support etc. in Ubuntu Budgie
  • Ubuntu MATE 17.10: Different panel layouts to mimic Unity 7, macOS, Windows interface.
  • Ubuntu MATE 17.10: Complete Super key support, improvements to Global Menu, Heads-Up Display, and more.

Download Ubuntu 17.10:

LUbuntu 17.10: cdimage.ubuntu.com/lubuntu/releases/artful/

KUbuntu 17.10: cdimage.ubuntu.com/kubuntu/releases/artful/

Ubuntu Kylin 17.10: cdimage.ubuntu.com/ubuntukylin/releases/artful/

Ubuntu Budgie 17.10: cdimage.ubuntu.com/ubuntu-budgie/releases/artful/

Ubuntu MATE 17.10: cdimage.ubuntu.com/ubuntu-mate/releases/artful/

XUbuntu 17.10: cdimage.ubuntu.com/xubuntu/releases/artful/

UbuntuStudio 17.10: cdimage.ubuntu.com/ubuntustudio/releases/artful/

According to the release schedule, there will be a final beta on September 28th, Final Freeze (Release candidate) on October 12th, and Ubuntu 17.10 will be finally released on October 19th.

Skype for Linux

Microsoft announced the next generation of Skype in preview for Linux a day ago.

The new Skype Preview, version 8.5, is released to unstable channel in official Skype repositories. It will receive regular updates and eventually becomes the new Skype.

The new Linux client is going to get the same features as the Windows and Mac versions for the first time, so that is the reason for changing the client version number.

Starting today, the next generation of Skype is available in preview on Linux shortly after it was introduced for Windows and Mac. It’s not yet complete and we need your feedback. We’re committed to providing a Skype experience you love, enhancing the way you talk, text, and experience the world—all from the comfort of your desktop.

Skype Preview delivers most of the great features of our next generation mobile experience but is specifically designed with desktop in mind, to take full advantage of the larger screen. Skype Preview puts chat front and center—making this the most expressive Skype ever. You can also do more together in group calls, with real-time screen and photo sharing.

Skype preview

The official download link for Skype Preview is available at:

Download Skype Preview (.deb)

For those who want to keep updating the new Skype in preview, add the unstable repository via following steps:

1. Open terminal via Ctrl+Alt+T, and run command to make sure ‘apt-transport-https’ is installed:

dpkg -s apt-transport-https > /dev/null || bash -c "sudo apt-get update; sudo apt-get install apt-transport-https -y"

Type in your password (no visual feedback while typing) when it prompts and hit Enter.

2. Grab and install the repository keyring via command:

curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -

3. Add Skype apt repository to your system via command:

echo "deb [arch=amd64] https://repo.skype.com/deb unstable main" | sudo tee /etc/apt/sources.list.d/skype-unstable.list

Finally upgrade Skype via “Software Updater” utility, or run commands to check updates and install the client:

sudo apt-get update && sudo apt-get install skypeforlinux

Uninstall:

To uninstall skype preview, simply run command in terminal:

sudo apt-get remove --autoremove skypeforlinux

And remove the Skype unstable repository using “Software & Updates” utility, under Other Software tab.

JetBrains IntelliJ IDEA 2017.2.3 was release one day ago with some new features, usability improvements, and numerous bug-fixes.

According to the release note, IntelliJ IDEA 2017.2.3 fixed bugs and improved usability to SQL database, docker, UML, CSS modules, JavaScript, and more.

IntelliJ IDEA 2017.2 splash

Download / Install IntelliJ IDEA 2017.2.3:

The official source tarballs (non-install) are available for download at the link below:

IntelliJ IDEA for Linux

Just extract and run executable file to launch the IDE.

An unofficial PPA is also available which contains an install script that automatically:

  • downloads the official source tarball via wget.
  • extracts to /opt/ for global use.
  • installs icon and application shortcut for Ubuntu integration.

1. To add the PPA, open terminal via Ctrl+Alt+T and run command:

sudo add-apt-repository ppa:ubuntuhandbook1/apps

Input your password (no visual feedback while typing) when it prompts and hit Enter.

2. Then check updates and install the script:

sudo apt-get update

sudo apt-get install intellij-idea-community

For the ultimate edition, use intellij-idea-ultimate in the last command.

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

Uninstall:

To uninstall IntelliJ IDEA installed via the script in PPA, run command:

sudo apt-get remove intellij-idea-community intellij-idea-ultimate

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

Budgie Desktop 10.4 for Ubuntu and Debian users was released earlier today. It has been made into main repositories of Ubuntu 17.10. And here’s how to install it in Ubuntu 16.04, Ubuntu 17.04 via PPA.

Budgie 10.4 is considered a major release on our 10.x series, with significant improvements to applets, panels, and personalization of Budgie. This release also introduces polish to Alt+Tab, animations, and Budgie Menu!

Budgie 10.4 features:

  • maximize and unmaximize animations for applications.
  • Alt+Tab switcher now prefer the theme icon instead of the X11 icon
  • New ‘Night Light’ applet which can help reduce eye strain
  • Places indicator, workspace applet, and other applet improvements.
  • Searching in App Launcher has been completely overhauled.
  • vertical panels can be set on the left or right.
  • Budgie panel now has dock mode.
  • Budgie Settings now is a dedicated application
  • See other more changes in the release note.

How to Install Budgie 10.4 in Ubuntu via PPA:

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

  • For Ubuntu 16.04, run command:
    sudo add-apt-repository ppa:budgie-remix/ppa
  • For Ubuntu 17.04, use another PPA:
    sudo add-apt-repository ppa:ubuntubudgie/backports

Input your password (no visual feedback while typing) when it prompts and hit Enter.

2. Then check updates and install budgie desktop 10.4 via commands:

sudo apt-get update

sudo apt-get install budgie-desktop

Once installed, log out and select login with Budgie Desktop session:

Uninstall:

To remove Budgie desktop, run command:

sudo apt-get remove --autoremove budgie-desktop budgie-indicator-applet

The PPA can be removed via “Software & Update” utility under Other Software tab.