Archives For jimingkui

Catfish is a versatile file searching tool. It is a search GUI powered by locate and find behind the scenes, with autocompletion from Zeitgeist and locate. The advanced options allow filtering by date and file type. The interface is intentionally lightweight and simple, using only GTK+.

catfish file search ubuntu

Features:

  • search files anywhere on your computer, include mounted partitions.
  • search hidden files
  • search files by modified time
  • search files by type

Install Catfish File Search:

You can install Catfish file searching tool in Ubuntu 13.04 Raring, Ubuntu 12.10 Quantal, Ubuntu 12.04 Precise and their derivatives, such as Linux Mint and Elementary OS.

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

sudo add-apt-repository ppa:catfish-search/catfish-stable

sudo apt-get update

sudo apt-get install catfish

Once done, you can open it from Unity Dash:

catfish file search ubuntu unity

Here are the 137 Wallpapers of Ubuntu 13.10 Saucy Salamander Wallpaper Contest. You can download all of them by the link at bottom.

Below are a few of them:

Ubuntu 13.04 Wallpaper Contest 1 Ubuntu 13.10 Wallpaper Contest 2
Ubuntu 13.10 Wallpaper Contest 3 Ubuntu 13.10 Wallpaper Contest 4
Ubuntu 13.10 Wallpaper Contest 5 Ubuntu 13.10 Wallpaper Contest 6
Ubuntu 13.10 Wallpaper Contest 7 Ubuntu 13.10 Wallpaper Contest 8
Ubuntu 13.10 Wallpaper Contest 9 Ubuntu 13.10 Wallpaper Contest 10
Ubuntu 13.10 Wallpaper Contest 11 Ubuntu 13.10 Wallpaper Contest 12
Ubuntu 13.10 Wallpaper Contest 13 Ubuntu 13.10 Wallpaper Contest 14
Ubuntu 13.10 Wallpaper Contest 15 Ubuntu 13.10 Wallpaper Contest 16

You can download and install the DEB, which will save all the wallpapers into /usr/share/backgrounds/, the default location for Ubuntu Wallpapers.

You can also download the tar.gz pack

Touchpad Indicator has been updated to 0.9.5 with the ability to change touchpad status using Mouse Wheel. The developer announced in his blog:

“It is certainly much more comfortable turning the mouse wheel (regardless of whether it is up or down) to do two clicks to change the status of the touchpad, first to display the menu and the second to select the option.”

touchpad indicator ubuntu

In the new release, keyboard shortcuts now reside in dconf instead of gconf, specifically in org.gnome.desktop.wm.keybindings. To set a specific keyboard shortcut for toggling Touchpad-Indicator, go to org.gnome.settings-daemon.plugins.media-keys.custom-keybindings in Dconf Editor

Touchpad indicator custom shortcust

Touchpad Indicator 0.9.5 also fixes below bugs:

  • # 1036808 Ubuntu 12.04 Suffers suspension after an internal error
  • # 1062694 Touchpad status resets to ‘ON’ when laptop lid is closed.
  • # 1075029 watchdog.py got some problem
  • # 1099821 keyboard shortcut does not work well
  • # 1111784 watchdog fails to enable touchpad on mouse removal
  • # 1192930 indicator Touchpad not working correctly.
  • # 1197984 Unable to save preferences
  • # 1198003 Cant enable Autostart
  • # 1036529 When unplug enable Wont get my External mouse
  • # 1131179 enabled touchpad indicator shows when it is disabled
  • # 1114511 Touchpad-indicator has gone berserk and Enables and disables randomly

Install Touchpad Indicator:

The PPA has been updated for Ubuntu 13.10, Ubuntu 12.10, Ubuntu 13.04 users. Press Ctrl+Alt+T on your keyboard to open terminal. When it opens, run below commands one by one to install Touchpad Indicator:

sudo add-apt-repository ppa:atareao/atareao

sudo apt-get update

sudo apt-get install touchpad-indicator

For Ubuntu 12.04 and its derivatives, you may download and install the DEB package (didn’t test).

The Qt-based Multimedia Player Qmmp released version 0.7.2 a few hours ago. It fixed some bugs and removed unimplemented function. Here’s how to install / upgrade to this release in Ubuntu 13.04, Ubuntu 12.10, Ubuntu 12.04 and their derivatives.

qmmp ubuntu

As you may know, Qmmp is a Qt audio player with WinAmp-like interface. It supports MPEG1 layer 2/3, Ogg Vorbis, Ogg Opus, Native FLAC, Ogg FLAC, Musepack, WavePack, tracker modules (mod, s3m, it, xm, etc), ADTS AAC, CD Audio, WMA, Monkey’s Audio (and other formats provided by FFmpeg library), PCM WAVE (and other formats provided by libsndfile library), midi, chiptune formats (AY, GBS, GYM, HES, KSS, NSF, NSFE, SAP, SPC, VGM, VGZ, VTX)

Changes in Qmmp 0.7.2:

  • fixed queue update bug
  • fixed track length formatting
  • fixed api documentation
  • fixed gcc warnings
  • fixed memory leaks
  • fixed wildmidi config path
  • fixed playlist autosave feature
  • fixed possible segmentation fault
  • fixed title format update bug
  • removed unimplemented function

Install or Upgrade the Qmmp via PPA:

The PPA has updated for Ubuntu 13.04 Raring, Ubuntu 12.10 Quantal and Ubuntu 12.04 Precise users. Press Ctrl+Alt+T on your keyboard to open terminal. When it opens, run following 3 commands one by one:

sudo add-apt-repository ppa:forkotov02/ppa
sudo apt-get update
sudo apt-get install qmmp qmmp-plugin-pack

There are a few Qmmp skins, you can use them by place the extracted folders under “$user Home/.qmmp/skins/” folder. You may press Ctrl+H to see hidden file folders.

Want GCC 4.8 with c++11 complete feature? Well here’s how to install it in Ubuntu 12.04, Ubuntu 13.04, Ubuntu 12.10 via the PPA.

The PPA provides both GCC 4.7.3 and GCC 4.8.1 for Ubuntu users. In this tutorial, you can follow below steps to upgrade gcc version in your system.

1.) Press Ctrl+Alt+T on your keyboard to open terminal. When it opens, run below commands to add the ppa:

sudo add-apt-repository ppa:ubuntu-toolchain-r/test

2.) Then install gcc 4.8 and g++ 4.8:

sudo apt-get update; sudo apt-get install gcc-4.8 g++-4.8

3.) Once installed, run following commands one by one to use gcc 4.8 instead of previous version.

sudo update-alternatives --remove-all gcc 

sudo update-alternatives --remove-all g++

sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20

sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20

sudo update-alternatives --config gcc

sudo update-alternatives --config g++

Now you have the gcc 4.8 with c++11 complete feature in your system. Check out by:

gcc --version

gcc (Ubuntu 4.8.1-2ubuntu1~13.04) 4.8.1
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Classic Menu Indicator 0.08 Has Been Released

Last updated: August 26, 2013

After about one year and a half, Classic Menu Indicator finally released a new version 0.08. It brings a few improvements and adds support for more languages.

As you may know, ClassicMenu Indicator is a indicator applet for Unity, that provides the main menu of Gnome2/Gnome Classic.

classic menu indicator 0.08

New features in ClassicMenu indicator 0.08:

  • ClassicMenu Indicator has its own icon now
  • added support for some configuration options
  • improved handling of missing/unusable icons
  • extended “ClassicMenu Indicator” submenu
  • added Estonian, French, Croatian, Japanese, Malay, Brazilian, Portuguese, Russian, Chinese (Simplified) language support
  • changed the way commands are run

To install Classic Menu Indicator 0.08, just download and double-click to install the DEB:

ClassicMenu_indicator_0.08_all.deb

The source code is also available for downloading from here.

The Cloud Based Nuvola Music Player has reached 2.1.0. It brings new features for users as well as for service maintainers and many bug fixes.

As you may know, Nuvola Player runs a web interface of cloud music services – Google Play Music, Amazon Cloud Player, 8tracks, Grooveshark, Hype Machine, Pandora, Rido – in its own window and provides integration with a Linux desktop.

nuvola player ubuntu unity

The new release Nuvola 2.1.0 brings following changes:

  • Added information about format support.
  • New service Deezer.
  • Extensions: Almost all extensions are enabled by default.
  • Notifications extension: Added support for actions and resident notifications.
  • Last.fm extension: Added switches to disable scrobbling for particular services.
  • Added a few keyboard shortcuts: Go back Left and go forward Right.
  • Service selector is opened in a separate window and uses native GTK+ widgets instead of web view. GTK+ zoom level is respected and non-free screenshots are not loaded.
  • User interface: Added option to prefer dark GTK+ theme.
  • Context menu of a web view is populated with custom actions.
  • Removed UI modes “toolbar only” and “both toolbar and menubar”. Main menu reorganized.
  • MPRIS extension: Renamed to Remote Player Interface.
  • Install / Upgrade Nuvola Player in Ubuntu

    For Ubuntu and its derivatives, press Ctrl+Alt+T to open terminal. When it opens, run below commands one by one:

    sudo add-apt-repository ppa:nuvola-player-builders/stable
    
    sudo apt-get update
    
    sudo apt-get install nuvolaplayer

    Nvidia DriverThe latest Long Lived Nvidia driver has reached 319.49, which added support for new GPUs and fix a few bugs. Here’s how to install or upgrade it in Ubuntu 13.04, Ubuntu 12.10, Ubuntu 12.04.

    What’s new in Nvidia 319.49:

  • Added support for the following GPUs: GeForce GT 740A, GeForce GT 745A, GeForce GT 755M, GeForce GT 625, GeForce GTX 645, GRID K340, GRID K350, NVS 315, Quadro K500M
  • Fixed a bug that caused DisplayPort monitors connected to Quadro FX 3800, 4800, or 5800 to remain off after DPMS.
  • Added the NVIDIA OpenGL-based Inband Frame Readback (NvIFROpenGL) library to the Linux driver package. This library provides a high performance, low latency interface to capture and optionally encode an individual OpenGL framebuffer. NvIFROpenGL captures pixels rendered by OpenGL only and is ideally suited to application capture and remoting.
  • Fixed a bug that caused applications using CUDA-GL interop to crash when run on X servers with Xinerama enabled.
  • Fixed a bug that could prevent some double-bit ECC errors from being properly reported.
  • Fixed a bug which could cause a blank screen when changing house sync settings on Quadro Kepler GPUs with Quadro Sync boards.
  • Fixed a bug that prevented nested loops with identical loop conditions in GLSL shaders from terminating correctly. This could cause hangs in applications such as Exa PowerVIZ.
  • Fixed a bug that resulted in corrupt texels when a previously empty texture image was specified with glXBindTexImageEXT. In GNOME 3, this caused gnome-screenshot to produce garbled window screenshots.
  • Fixed a bug that caused the X server to crash when querying the current mode of disabled displays.
  • Download & Install Nvidia Driver:

    NOTE 1: At the moment when you’re reading this tutorial, you may check out the latest version of Nvidia driver for Linux at this page.

    NOTE 2: Below installation guide works for all Nvidia Linux Drivers (.run file) downloaded from the Official Website.

    1.) Download the driver:

    Download Nvidia 319.49 for Linux 32-bit

    Download Nvidia 319.49 for Linux 64-bit

    2.) Open file browser and navigate to the downloaded package. Right-click on it and go to its Properties window. In Permissions tab, check the box where is says “allow executing file as program”

    all execute as program

    3.) Now, you need to switch to command console by pressing Ctrl+Alt+F1. Log in with your username and password. When login, stop the graphic session by running below command.

    sudo stop lightdm

    4.) Finally, start the installer and follow the on screen prompts. Change the filename to yours if you’re going to install another version.

    sudo sh ~/Downloads/NVIDIA-Linux-*-319.49.run

    When done, restart your computer by sudo reboot command.

    If for some reason the new drivers do not work properly, re-do step 3.) and followed by below command to unintall the Nvidia Driver:

    sudo ~/Downloads/NVIDIA-Linux-*-319.49.run --uninstall

    Enjoy!

    R Statistical PackageIf you have problem installing R statistical package via the official document. Here’s easy guide with pictures shows you how to install R package in Ubuntu 13.04, Ubuntu 12.04, Ubuntu 12.10, Ubuntu 10.04.

    R Package is available in Ubuntu Software Center by default, but it’s old. This tutorial will install the latest verson – so far it is 3.0.1 – in Ubuntu via the via official repository.

    Add R Statistical Package Repository:

    Search for and open Software & Updates from unity dash home.

    software&updates

    Navigate to Other Software tab, click Add and paste below line in pop-up window.

    For Ubuntu 12.04: deb http://cran.stat.ucla.edu/bin/linux/ubuntu precise/

    For Ubuntu 13.04: deb http://cran.stat.ucla.edu/bin/linux/ubuntu raring/

    For Ubuntu 12.10: deb http://cran.stat.ucla.edu/bin/linux/ubuntu quantal/

    For Ubuntu 10.04: deb http://cran.stat.ucla.edu/bin/linux/ubuntu lucid/

    add r package repository

    You can change “cran.stat.ucla.edu” to other mirrors.

    Install R Statistical Package:

    After added the repository, press Ctrl+Alt+T on your keyboard to open terminal. When it opens, run below command to get the key:

    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9

    add r package keyring

    Finally, you can use Synaptic Package Manager (install it from Ubuntu Software Center) to install R Package.

    install r package ubuntu

    Indicator-terminal is an applet in Ubuntu top panel that shows a terminal window for running commands when you click on the icon.

    terminal indicator

    Install Indicator-terminal in Ubuntu:

    NOTE: This project is still in early development. It has bugs and may break you system. Use it at your own risk!

    There’s a PPA for Ubuntu 13.10 Saucy, Ubuntu 13.04 Raring, Ubuntu 12.10 Quantal. Press Ctrl+Alt+T to open terminal, when it opens, run below commands one by one:

    sudo add-apt-repository ppa:erasmo-marin/indicator-terminal
    
    sudo apt-get update
    
    sudo apt-get install indicator-terminal

    Once installed, restart you machine.

    To remove this indicator, run below commands in terminal:

    sudo apt-get install ppa-purge
    
    sudo ppa-purge ppa:erasmo-marin/indicator-terminal
    
    sudo apt-get remove indicator-terminal