Monday, May 14, 2012
Thursday, February 10, 2011
Offline Gnome Dictionary on Linux mint and Ubuntu:
The dictionary tool that comes with the gnome requires Internet connection to retrieve information from the dictionary server.So without an Internet connection it is useless.We can install a dictionary server on over local machine to avoid this constraint.
Installing Dictionary on localhost:
Copy and paste the following command to install dictionary server package.
Installing Dictionary on localhost:
Copy and paste the following command to install dictionary server package.
#sudo apt-get install dictd
After installation of the above package you will need to install the database and English dictionary so enter this command.#sudo apt-get install dict-moby-thesaurus dict-gcide
After the installation of above packages you can now use command line to consult dictionary as:#dict -options ur_word
Converting Video Formats Using ffmpeg on Linux:
Installing ffmpeg on Fedora 12,13,14:
In fedora 12,13 and 14 first of all you will need to enable access to rpmfusion free and non free repositories using the following command:
Installing ffmpeg on Ubuntu 10.x/Linux Mint:
Sample Commands:
Simple conversion with ffmpeg defaults:
Changing frame rate:
Converting to mp4 using mpeg4 codec
Converting video for cell phone :)
Extracting audio in mp3 format:
In fedora 12,13 and 14 first of all you will need to enable access to rpmfusion free and non free repositories using the following command:
# su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm'
and then running command:#yum -y install ffmpeg
will install ffmpeg on your fedora machine.Installing ffmpeg on Ubuntu 10.x/Linux Mint:
sudo apt-get install ffmpeg libavdevice52 libavfilter0 libavcodec-extra-52 libavformat-extra-52
Sample Commands:
Simple conversion with ffmpeg defaults:
ffmpeg -i inputfile.format outputfile.format
Changing frame rate:
ffmpeg -i input.avi -r 24 output.avi
Converting to mp4 using mpeg4 codec
ffmpeg -i input.flv -vcodec mpeg4 -acodec copy output.mp4
Converting video for cell phone :)
ffmpeg -i input.format -s qcif -vcodec mpeg4 -r 18 -acodec copy output.mp4
Extracting audio in mp3 format:
ffmpeg -i input.avi -vn -acodec copy output.mp3
Wednesday, February 9, 2011
Installing and Configuring Conky:
conky is a popular system monitor which is light weight and is highly configurable through its own scripting interface that allows access to status of several system variables like storage,CPU consumption,memory usage, network interfaces and temperatures etc.
Installation:You can install conky from synaptic package manager or by issuing the following command in your terminal:
sudo apt-get install conky
Labels:
Linux,
Linux Desktop,
ubuntu
Tuesday, February 8, 2011
Customized Desktop for Ubuntu 10.X using AWN and Conky:
AWN (avant window navigator) is a feature rich dock application for linux based distros. It includes almost every applet that comes with default ubuntu gnome-panel and pretty more customizable with its included themes and available third party applets.
Installing AWN with lucido style:
So AWN can be a fancy as well as a more functional replacement to the default gnome-panel.
Installing AWN with lucido style:
what is lucido? Take a look at this screen shot :
Lucido is an AWN style which is now available as a part of AWN trunk, so instead of installing the stable release available in synaptic package manager ,we will install AWN trunk available through AWN trunk PPA.
Labels:
AWN,
Linux,
Linux Desktop,
ubuntu
Monday, September 27, 2010
Wordpress Installation guide for Ubuntu 10.04/Mint isadora Linux(part 2):
According to wikipedia.org:
“WordPress is an open source CMS, often used as a blog publishing application powered by PHP and MySQL. It has many features including a plugin architecture and a templating system. Used by over 12% of the 1,000,000 biggest websites, WordPress is the most popular CMS in use today.”
(source: http://en.wikipedia.org/wiki/WordPress)
For more information on wordpress visit wordpress.org.
Installation:
First download wordpress-3.0.1.tar.gz from wordpress.org and extract it using archive manager to your desktop,now open your terminal and use the following commands to copy extracted folder from desktop to your web document root folder (see part 1 for web document root directory).
Labels:
Linux,
web development
Wordpress installation guide for ubuntu 10.04 /Mint Isadora Linux(part 1):
This installation guide has two parts, this part contains instructions for installing the prerequisites: Apache,MySql,php5 and phpmyadmin.
Installing apache:
#sudo apt-get install apache2
To ensure correct installation point your browser to http://localhost/ and press enter, you will see “it works” in your browser window.
Labels:
Linux,
web development
Friday, September 24, 2010
Virtual Box Guest Additions on Fedora 13 installation guide:
Before installing guest additions on fedora 13 make sure that following packages are installed on your fedora 13 virtual machine.
- make
- automake
- gcc
- gcc-c++
- dkms
- kernel-headers
- kernel-devel
you can inquire your system for above packages using this command:
Labels:
Linux,
Virtual Box
Wednesday, September 22, 2010
Virtual Box Bridged Networking:
Bridged Networking:
In bridged networking Virtual box uses a software driver interface on the host machine that enables the virtual machines to get their IP addresses from the same source to which the physical interface of the host system is connected. When connected this way guest machines see themselves as they are physically connected to the host through a wired connection.
Labels:
Linux,
Virtual Box
Monday, September 20, 2010
Recovering Grub 2 using Ubuntu/Mint Live CD:
Most Linux distributions use Grub as default boot manager/boot loader, when we install Linux it changes the MBR(master boot record) by writing a small piece of code so that it can point to the Grub files installed inside the /boot/grub directory.
In some cases, like in a dual-boot system having both Linux and Windows, reinstalling windows overwrites the MBR, and Linux becomes no longer boot-able. To boot again into Linux we need to recover the lost link to Grub.
Here is a method for recovering Grub using Ubuntu 10.04 live CD and is only applicable to Grub version 2.
In some cases, like in a dual-boot system having both Linux and Windows, reinstalling windows overwrites the MBR, and Linux becomes no longer boot-able. To boot again into Linux we need to recover the lost link to Grub.
Here is a method for recovering Grub using Ubuntu 10.04 live CD and is only applicable to Grub version 2.
Labels:
Linux
Thursday, September 16, 2010
Linux Mint Isadora on Virtual Box installation with guest additions:
About Virtual Box and Virtual Machines:
Virtual box is a virtualization software that provides a lot of features and support for creation and installation of virtual machines .A virtual machine in every aspect is comparable to your real hardware compartment(cpu box) ,the only difference is that you just can't touch it.
In simpler words it has its own RAM ,Hard Disk,Network cards,Video capabilities ,Audio ,and processing . Actually it is an abstract layer of hardware provided by a virtuallization software, so when we run an operating system inside a virtual machine it only sees this layer as its hardware regardless of what your real hardware is.
Virtual box is a virtualization software that provides a lot of features and support for creation and installation of virtual machines .A virtual machine in every aspect is comparable to your real hardware compartment(cpu box) ,the only difference is that you just can't touch it.
In simpler words it has its own RAM ,Hard Disk,Network cards,Video capabilities ,Audio ,and processing . Actually it is an abstract layer of hardware provided by a virtuallization software, so when we run an operating system inside a virtual machine it only sees this layer as its hardware regardless of what your real hardware is.
Labels:
Virtual Box
Monday, September 13, 2010
Building Rounded corner boxes with shadows using CSS3:
With CSS3 now its easier to present the web content in more fascinating ways with less effort,the newer version includes a lot of new properties like border-radius ,text-shadow ,box-shadow,box-sizing and resizing ,word wrap and new attribute selectors etc.for more information you can visit www.w3c.org.
Here is a little example of rounded corner box with shadows :
Here is a little example of rounded corner box with shadows :
CSS3 Rocks
Labels:
CSS,
web development
Sunday, September 12, 2010
How to Add and Set Custom Display Resolutions using xrandr Command on ubuntu 10.04 (lucid lynx) Linux
You can change your monitor's display resolution from system->preferences->monitors,but in some cases Linux fails to detect the proper resolutions for your monitor,in such situations we can add and set custom resolutions with a little effort by using xrandr command.
As it is said in the man pages:
“ Xrandr is used to set the size, orientation and/or reflection of the
outputs for a screen. It can also set the screen size.
If invoked without any option, it will dump the state of the outputs,
showing the existing modes for each of them, with a '+' after the pre‐
ferred mode and a '*' after the current mode.......”
As it is said in the man pages:
“ Xrandr is used to set the size, orientation and/or reflection of the
outputs for a screen. It can also set the screen size.
If invoked without any option, it will dump the state of the outputs,
showing the existing modes for each of them, with a '+' after the pre‐
ferred mode and a '*' after the current mode.......”
Saturday, September 11, 2010
How to set up multiple workspaces on Windows xp ,vista and 7 using Nvidia nView:
You can set multiple desktops or workspaces on windows very easily in some simple steps if you have nvidia card installed on you computer systems . Here i am going to show you how will you do this.
Requirements :
1)Suitable drivers for your card
2)nView desktop manager utility
Now go to control panal->NVIDIA nView Desktop Manager
Friday, September 10, 2010
Vim Editor For Beginners : Commands and Things you should Know about VIM
A Brief History:
When UNIX was developed and emerged at Bell Laboratories in 70's,The initial version of UNIX that was distributed had a line editor called as 'ed' developed by Ken Thomson,'ed' was considered very difficult to use ,many people tried to enhance the functionality of 'ed' and an enhanced version of 'ed' was developed by George Coulouris and named it as 'em' .After some time Bill Joy a student at Berkeley merged various features of 'ed' and 'em' and produced a new version called as 'ex'. Though 'ex' had many combined features of 'ed' and 'em' it was still a line editor, then in 1976 'vi' was developed and it was a rewritten version of 'ex' .Vi was not a line editor like 'ed' or 'em' it was a screen editor and had many features of 'ex'.Vim is now improved version of Vi.
Vim as a modal editor:
Vim is known as a modal editor which means Vim will perform certain operations depending on the mode in which it is currently set. Three modes are most important to understand the working of vim.
Command mode,Insert mode and Command-line mode.
When UNIX was developed and emerged at Bell Laboratories in 70's,The initial version of UNIX that was distributed had a line editor called as 'ed' developed by Ken Thomson,'ed' was considered very difficult to use ,many people tried to enhance the functionality of 'ed' and an enhanced version of 'ed' was developed by George Coulouris and named it as 'em' .After some time Bill Joy a student at Berkeley merged various features of 'ed' and 'em' and produced a new version called as 'ex'. Though 'ex' had many combined features of 'ed' and 'em' it was still a line editor, then in 1976 'vi' was developed and it was a rewritten version of 'ex' .Vi was not a line editor like 'ed' or 'em' it was a screen editor and had many features of 'ex'.Vim is now improved version of Vi.
Vim as a modal editor:
Vim is known as a modal editor which means Vim will perform certain operations depending on the mode in which it is currently set. Three modes are most important to understand the working of vim.
Command mode,Insert mode and Command-line mode.
Labels:
Linux Editors,
Programming,
Vim
Installing Nvidia Drivers On Ubuntu 10.04(Lucid Lynx):
Last week I bought a nvidia graphics card (geforce gt 240) for watching HD movies and casual gaming as i spent my spare time playing games like call of duty,crysis etc.
Now to be specific I found It very easy to install nvidia drivers on my PC running ubuntu 10.04 so I decided to share my experience with you. I am assuming that you have a working internet connection.
First of all make sure that you are fulfilling all requirements like,minimum power supply as recommended by nvidia for your card ,and your card is properly inserted to the required slot I.e PCI Express.
Labels:
Nvidia Drivers,
ubuntu
Thursday, September 9, 2010
Cool 3D Desktop Effects on Ubuntu 10.04 (LTS) using Compiz and Compiz-fusion:
By default ubuntu uses metacity as its default windowing manager that provides us with some lighter and smoother Desktop effects, but when it comes to real 3D support for the Desktop Environment compiz has much more support as compared to the metacity .
Ubuntu comes with the compiz installed by default on it all we need is to turn it on .
Ubuntu comes with the compiz installed by default on it all we need is to turn it on .
Labels:
compiz,
Linux Desktop,
ubuntu
Wednesday, September 8, 2010
Understanding X Window System and Desktop Environment of Linux
In this post I will try to explain you how a Linux Desktop Environment works, and I hope after going through this post you will have a batter understanding of the mechanism used by the Linux Systems.
To achieve a full fledge Desktop, Linux systems use following major components :
1) X Windowing System
2) A Desktop Manager
3) A Windowing Manager
Now lets have a step by step look on each of the above components.
X window System :
X window system (also know as X) was developed in 1980s at MIT by researchers working on a distributed computing project , and was the first windowing system for UNIX that was widely adopted and accepted. X window system was built to work over the network where other computers can communicate with each other and remote applications can receive and send information to other client applications on the network using X protocols .
To achieve a full fledge Desktop, Linux systems use following major components :
1) X Windowing System
2) A Desktop Manager
3) A Windowing Manager
Now lets have a step by step look on each of the above components.
X window System :
X window system (also know as X) was developed in 1980s at MIT by researchers working on a distributed computing project , and was the first windowing system for UNIX that was widely adopted and accepted. X window system was built to work over the network where other computers can communicate with each other and remote applications can receive and send information to other client applications on the network using X protocols .
Labels:
Linux Desktop
Tuesday, August 24, 2010
Privacy Policy
myit-solutions.blogspot.com take your privacy seriously. This policy describes what personal information we collect and how we use it.
Routine Information Collection
All web servers track basic information about their visitors. This information includes, but is not limited to, IP addresses, browser details, timestamps and referring pages. None of this information can personally identify specific visitors to this site. The information is tracked for routine administration and maintenance purposes, and lets me know what pages and information are useful and helpful to visitors.
Cookies and Web Beacons
Where necessary, this site uses cookies to store information about a visitor's preferences and history in order to better serve the visitor and/or present the visitor with customized content.
Advertising partners and other third parties may also use cookies, scripts and/or web beacons to track visitors to our site in order to display advertisements and other useful information. Such tracking is done directly by the third parties through their own servers and is subject to their own privacy policies.
Controlling Your Privacy
Note that you can change your browser settings to disable cookies if you have privacy concerns. Disabling cookies for all sites is not recommended as it may interfere with your use of some sites. The best option is to disable or enable cookies on a per-site basis. Consult your browser documentation for instructions on how to block cookies and other tracking mechanisms.
Special Note About Google Advertising
Any advertisements served by Google, Inc., and affiliated companies may be controlled using cookies. These cookies allow Google to display ads based on your visits to this site and other sites that use Google advertising services. Learn how to opt out of Google's cookie usage. As mentioned above, any tracking done by Google through cookies and other mechanisms is subject to Google's own privacy policies.
About Google advertising: What is the DoubleClick DART cookie? The DoubleClick DART cookie is used by Google in the ads served on publisher websites displaying AdSense for content ads. When users visit an AdSense publisher’s website and either view or click on an ad, a cookie may be dropped on that end user’s browser. The data gathered from these cookies will be used to help AdSense publishers better serve and manage the ads on their site(s) and across the web. Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy.
Routine Information Collection
All web servers track basic information about their visitors. This information includes, but is not limited to, IP addresses, browser details, timestamps and referring pages. None of this information can personally identify specific visitors to this site. The information is tracked for routine administration and maintenance purposes, and lets me know what pages and information are useful and helpful to visitors.
Cookies and Web Beacons
Where necessary, this site uses cookies to store information about a visitor's preferences and history in order to better serve the visitor and/or present the visitor with customized content.
Advertising partners and other third parties may also use cookies, scripts and/or web beacons to track visitors to our site in order to display advertisements and other useful information. Such tracking is done directly by the third parties through their own servers and is subject to their own privacy policies.
Controlling Your Privacy
Note that you can change your browser settings to disable cookies if you have privacy concerns. Disabling cookies for all sites is not recommended as it may interfere with your use of some sites. The best option is to disable or enable cookies on a per-site basis. Consult your browser documentation for instructions on how to block cookies and other tracking mechanisms.
Special Note About Google Advertising
Any advertisements served by Google, Inc., and affiliated companies may be controlled using cookies. These cookies allow Google to display ads based on your visits to this site and other sites that use Google advertising services. Learn how to opt out of Google's cookie usage. As mentioned above, any tracking done by Google through cookies and other mechanisms is subject to Google's own privacy policies.
About Google advertising: What is the DoubleClick DART cookie? The DoubleClick DART cookie is used by Google in the ads served on publisher websites displaying AdSense for content ads. When users visit an AdSense publisher’s website and either view or click on an ad, a cookie may be dropped on that end user’s browser. The data gathered from these cookies will be used to help AdSense publishers better serve and manage the ads on their site(s) and across the web. Users may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy.
Sunday, August 22, 2010
INSTALLING CAIRO DOCK 2.1.3 ON UBUNTU 10.04 (LUCID LYNX) WITHOUT INTERNET CONNECTION:
Ok here we go, to install cairo dock you will need a computer with dual boot having another operating system I.e Windows or any other OS with working internet connection.
All you need to install cairo-dock are the following Packages:
All you need to install cairo-dock are the following Packages:
Labels:
cairo dock,
Linux,
ubuntu
Subscribe to:
Posts (Atom)
Translate
Labels
- AWN (1)
- cairo dock (1)
- compiz (1)
- CSS (1)
- Linux (11)
- Linux Desktop (4)
- Linux Editors (1)
- Nvidia (1)
- Nvidia Drivers (1)
- Programming (1)
- ubuntu (8)
- Vim (1)
- Virtual Box (3)
- web development (3)
- windows (1)
