Skip to main content

Posts

Showing posts from March, 2014

Google2Ubuntu speech recognition tool for linux Ubuntu 13.10

Google2Ubuntu is a tool that lets you control your computer using voice commands via the Google speech recognition API. Install Google2Ubuntu Google2Ubuntu is available in a PPA for all supported Ubuntu versions. Add the PPA and install it using the following commands: sudo add-apt-repository ppa:benoitfra/google2ubuntu sudo apt-get update sudo apt-get install google2ubuntu I tested the application under Ubuntu 13.10 and 14.04 so I'm not sure if it works properly with older Ubuntu versions. How to configure and use Google2Ubuntu 1. Once installed, you need to set up a keyboard shortcut for triggering Google2Ubuntu. When you use this keyboard shortcut, the Google2Ubuntu speech recognition will be activated, listening for your command (a sound and a notification will be displayed, telling you when to speak). Let's add the keyboard shortcut: - in Unity/GNOME , open System Settings > Keyboard > Shortcuts , then click on Custom Shortcuts on the

Play Song From Terminal

1) sudo apt-get install sox For formating to mp3 and other extension we need decoder of Sox 2 ) sudo apt - get install libsox - fmt - mp3 Now go to the directory of your Music and give command as play *.mp3 it will play music and if you want to go to another song then press `ctrl + c`  To terminate press `ctrl+c+c` Thanks For seeing and i hope you like this  ENJOY ------------------------------------- Please if you like this Post so do not Forget to Comment and like 

BOOT-REPAIR From Grub Resuce

Boot-Repair is a simple tool to repair frequent boot issues you may encounter in Ubuntu like when you can't boot Ubuntu after installing Windows or another Linux distribution, or when you can't boot Windows after installing Ubuntu, or when GRUB is not displayed anymore, some upgrade breaks GRUB, etc. Boot-Repair lets you fix these issues with a simple click, which (generally reinstalls GRUB and) restores access to the operating systems you had installed before the issue. Boot-Repair also has advanced options to back up table partitions, back up bootsectors, create a Boot-Info (to get help by email or forum), or change the default repair parameters: configure GRUB, add kernel options (acpi=off ...), purge GRUB, change the default OS, restore a Windows-compatible MBR, repair a broken filesystem, specify the disk where GRUB should be installed, etc. Boot-Repair is a free software, licensed under GNU-GPL. Boot-Repair should be soon included in Ubuntu officia

Linux Commands

1. tar command examples Create a new tar archive.  $ tar cvf archive_name.tar dirname/   Extract from an existing tar archive.  $ tar xvf archive_name.tar View an existing tar archive.  $ tar tvf archive_name.tar 2. grep command examples Search for a given string in a file (case in-sensitive search). $ grep -i "the" demo_file   Print the matched line, along with the 3 lines after it. $ grep -A 3 -i "example" demo_text   Search for a given string in all files recursively $ grep -r "ramesh" * 3. find command examples Find files using file-name ( case in-sensitve find) $ find -iname "MyCProgram.c"   Execute commands on files found by the find command $ find -iname "MyCProgram.c" -exec md5sum {} \;   Find all empty files in home directory $ find ~ -empty 4. awk command examples Remove duplicate lines using awk $ awk '!($0 in array) { array[$0]; print }' temp   Print all lines from /etc/passwd

Difference between CLI and GUI

Topic Command line (CLI) GUI Ease Because of the memorization and familiarity needed to operate a command line interface, new users have a difficult time navigating and operating a command line interface. Although new users may have a difficult time learning to use the mouse and all GUI features, most users pick up this interface much easier when compared to a command line interface. Control Users have much more control of their file system and operating system in a command line interface. For example, users can copy a specific file from one location to another with a one-line command. Although a GUI offers plenty of control of a file system and operating system, the more advanced tasks may still need a command line. Multitasking Although many command line environments are capable of multitaski

Service From Terminal Of Ubuntu

Hello Friends , Now you can access your favorite mail service -gmail form terminal in a linux system with a command line interface. People may wonder why anyone would want to use gmail from the command line, when Google has created such a nice user friendly interface for its users. There are a lot of reasons why one would want to use a CLI (command-line interface) for sending mail. One of the main reasons being the power of shell scripting in a Linux machine. You can automate the entire process by writing small shell scripts and make life much easier. The other reason why I use the command line way is because it uses very less bandwidth. Due the recent D-DOS (Distributed Denial-of-Service) attack on the domain name system by a group of really talented Hackers my computer seemed to take ages to load even Facebook that was when the terminal way of sending mails came in handy. Lets get started. I use Ubuntu (current version) I’m having issues with this method. If you hav