Archives For November 30, 1999

avidemux video editor ubuntu 14.04

Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks. While Ubuntu repositories still have version 2.5.x, this tutorial will show you how to install the latest release Avidemux 2.6.8 in Ubuntu 14.04 Trusty Tahr.

First see changes in v2.6.8:

  • Image/export: Proper initialization of Qz for jpeg export
  • UI : Add an override menu to force language
  • tinypy : Add support for os.environ
  • x264 : Improved settings (tobias)
  • Win32 : Fix crash when having an audio problem
  • Win32 : Re-add mp4v2 to installer files
  • Audio/FAAC : Fix channel mapping when source is mono
  • Audio/AMR : Re-enabled AMR
  • Audio/lavc : Fixed encoding for codec not supporting planar (MP2)
  • Audio : Fixed importing MP2 audio detected as MP3
  • Editor : Fix deleting chunks of the video leading to seek errors
  • Editor : Initial copy/paste support
  • Editor/audio: Fix issue when source has more than 4 tracks
  • Editor : Better detection of double fps input files
  • TS/Demux : Brute force eac3 probe
  • TS/Demux : Better initialization, avoid dropping audio
  • MP4/Demux : Fix management of PCM audio
  • Mkv/Demux : Proper re-indexing for mpeg2 in mkv
  • Mp4v2/Mux : Add fast start mode back
  • OpenSolaris : Some fixes by pfelecan
  • Subtitles : Update libass + very simple srt2ssa converter
  • OsX : Enables more optional codecs…
  • avsfilte : Performance Improvements (fahr)

Install:

Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, run the commands below one by one:

sudo add-apt-repository ppa:rebuntu16/avidemux+unofficial

sudo apt-get update

sudo apt-get install avidemux2.6-gtk avidemux2.6-qt4

Once installed, start it from app menu or Unity dash. Enjoy!

Install Komodo Edit 8 in Ubuntu 14.04

Last updated: April 23, 2014

This simple tutorial shows you how to install Komodo Edit, the free and Open-Source counterpart of Komodo IDE, in Ubuntu 14.04 Trusty Tahr via PPA.

Komodo Edit offers sophisticated support for all major scripting languages, including in-depth autocomplete and calltips, multi-language file support, syntax coloring and syntax checking, Vi emulation, Emacs key bindings. It provides dynamic language expertise for Perl, PHP, Python, Ruby, and Tcl, plus JavaScript, CSS, HTML, and XML, and template languages like RHTML, Template-Toolkit, HTML-Smarty and Django.

Install Komodo Edit:

Because the editor is available in Launchpad PPA, you can easily install it by running the commands below one by one in a terminal window (Press Ctrl+Alt+T to open the terminal):

sudo add-apt-repository ppa:mystic-mirage/komodo-edit

sudo apt-get update

sudo apt-get install komodo-edit

Once installed, open the app from Unity Launcher or App Menu.

This simple tutorial is going to show you how to set a different desktop wallpaper for each workspace in Ubuntu 14.04 Unity.

Only have one desktop? Well, you may first enable workspaces by going to System Settings -> Appearance -> Behavior and check the box as the below picture shows.

Now click the new icon on Unity Launcher and you’re able to switch between workspaces.

To set different wallpapers:

1. Open Ubuntu Software Center, search for and install both the Compizconfig Settings Manager and compiz-plugins-extra

The package “compiz-plugins-extra” contains the plugin Wallpaper which allows you to assign multiple wallpapers to your workspaces, with the added bonuses of proper transparency handling and desktop icons (with patches to Nautilus, etc).

2. Open CCSM (CompizConfig Settings Manager) from Unity Dash. Enable Wallpaper plugin and click to go into its settings page.

3. Click the New button and add some wallpapers. Enable Images plugin when it prompts.

Result:

To revert back, just disable the plugin or read how to reset Unity and Compiz Settings.

Install Gnome Classic Desktop in Ubuntu 14.04

Last updated: April 20, 2014

 

This simple tutorial is going to show you how to install the Gnome Classic desktop environment in Ubuntu 14.04 Trusty Thar.

Ubuntu 14.04 gets new window decorations inside Unity and so far it does not support changing window control buttons to the right of title bar. So if you want your window buttons on the right, you may switch to the Gnome Classic desktop.

Alt + right-click

Install Gnome Classic:

Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, paste the command below and hit run. Type in your password when prompt.

sudo apt-get update; sudo apt-get install gnome-session-fallback

Once installed, log out the current session. When you’re in log-in screen, click the logo icon and select log in to Gnome Flashback (Compiz) or Gnome Flashback (Metacity).

Ubuntu Tweak, the popular Ubuntu configuration tool, has just released version 0.8.7 a few hours ago. According to the changelog, the new release added or fixed:

  • add support for Ubuntu 14.04 Trusty Tahr
  • add Support for Minimize from Unity Launcher
  • add toggle for Nautilus Recursive Search
  • Fix the nautilus scripts support for Ubuntu 13.10 and later
  • Going to workspace adjustement automatically add keyboard shortcut for fade screen
  • Missing options: fonts, desktop icons,window, file manager
  • Never crash when sources.list is not parsable

Install Ubuntu Tweak 0.8.7 in Ubuntu 14.04:

Ding Zhou, the app developer, has built this release into PPA for Ubuntu 14.04, Ubuntu 13.10, Ubuntu 12.10 and Ubuntu 12.04.

To install it, press Ctrl+Alt+T on keyboard to open terminal. When it opens, run the commands below one by one:

sudo add-apt-repository ppa:tualatrix/ppa

sudo apt-get update

sudo apt-get install ubuntu-tweak

If you don’t want to add the PPA, download & install the deb at here.

Save Screen Brightness Settings In Ubuntu 14.04

Last updated: September 24, 2014

Laptop users still have the backlight issue in Ubuntu 14.04. Every time Ubuntu boots up you get the maximum level of screen brightness.

Here’s a workaround by adding a startup script which will automatically adjust screen brightness when Ubuntu boots up.

To get started:

Preparation: Open your file browser and navigate to “Computer-> sys -> class -> backlight” directory. You’ll see two or three folders there:

Find Out Actual Backlight Settings Folder

In each folder there’s a file called actual_brightness, you can see its content (brightness value) through the thumbnail icon.

Remember them and do:

  • Change your screen brightness through Fn + Arrow key.
  • Check out the actual_brightness files in each folder (Re-open each folder to refresh the value).
  • Does the value change?
  • Remember the folder name in which the value of actual_brightness changes.
  • Replace acpi_video0 in below commands with that folder name

1. Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, run the command below will give you the maximum level of your laptop backlight:

cat /sys/class/backlight/acpi_video0/max_brightness

Mine is 9, so I can set backlight level from 0 to 9.

2. Run the command below one by one. You’ll get the super user privilege and open the /etc/rc.local file, a script executed at the end of each multiuser runlevel, with gedit editor.

sudo -i

gedit /etc/rc.local

Add the line below before the last. Change the number 0 to the brightness level you want.

echo 0 > /sys/class/backlight/acpi_video0/brightness

That’s it. Enjoy!

Ubuntu 14.04 LTS is Out! One of the first things to do after upgraded to or installed the Trusty Tahr is disable the Guest Session. Here I’ll show you how.

In Ubuntu 14.04 Trusty, the configuration files for LightDM has been moved to /usr/share/lightdm directory. I could only guess that the previous location “/etc/lightdm” is in preparation for giving the login option of logging in to a Unity 8 preview session running on Mir/Xmir.

Anyhow, you can follow the below steps to remove Guest Session in Ubuntu 14.04:

1. Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, run the command below to edit the config file:

gksudo gedit /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf

Type in your user password when it asks. You may need to install gksu first from Ubuntu Software Center.

2. When the file opens, add this line in the end of file and save it.

allow-guest=false

That’s it. Guest Login will disappeared at next boot.

Grub Customizer is a graphical tool for managing the Grub boot entries in Ubuntu Linux.

With it, you can set the default OS, add/remove boot entries, change boot order, set an background image, and more.

This simple tutorial is going to show you how to install the Grub Customizer in Ubuntu 14.04 Trusty Tahr from the developer’s PPA.

To get started:

press Ctrl+Alt+T on keyboard to open the terminal. When it opens, paste the commands below and run one by one:

sudo add-apt-repository ppa:danielrichter2007/grub-customizer

sudo apt-get update

sudo apt-get install grub-customizer

Once done, you’re able to open this tool from the Unity Dash or application menu. Enjoy!


 
One of my favorite Unity features was that we can click on an Unity Launcher icon to minimize an opened application window.

The feature was last supported in Ubuntu 12.04 Precise LTS. Now it comes back in Ubuntu 14.04 Trusty LTS and here is how to enable it.

Once screencast is enough:

To get started:

  1. Search for and install compizconfig settings manager via Ubuntu Software Center. Or install it via terminal (Ctrl+Alt+T) command:
    sudo apt-get install compizconfig-settings-manager
  2. Open CCSM from Unity Dash.
  3. Click “Ubuntu Unity Plugin” and then navigate to the Launcher tab.
  4. Enable “Minimize Single Window Applications (Unsupported)” by check the box after that line

That’s it. Enjoy!