Skip to main content

Posts

How to get Ubuntu to detect the SATA drive, so that you could proceed and install Ubuntu

Some of you might face this situation. Ubuntu’s Ubiquity Installer could not detect SATA drive, although  sudo fdisk -l  lists the drive. It even appeared in gparted. It seems that the SATA drive had left over raid configuration information that was telling the installer to skip the drive (as if it was unsupported). In the following tutorial, I will show you how to get Ubuntu to detect the SATA drive, so that you could proceed and install Ubuntu. Read the full post here…

How to password protect files and folders in Ubuntu 10.10 Maverick Meerkat

I have been using this little applet called cryptkeeper for a while now, it is a beautifully simple power user application that will help you keep your private information safe and secure. In this simple how to I will assist you in installing and using cryptkeeper. Basically Cryptkeeper is a Linux system tray applet that manages EncFS encrypted folders. Installing it is as easy as running a single command. I nstallation: Open terminal and execute command: sudo apt-get install cryptkeeper That will install all the necessary files. (Alternatively you can install it from synaptic package manager) Now log out and log back in. Once you are logged back in, you can start Cryptkeeper from the menu Applications->System Tools->Cryptkeeper. You should see an icon in your System Tray that looks like a pair of keys. This can vary a bit based on your current icon theme. This is the Cryptkeeper icon. And now H ow to use it. Click on the Cryptkeeper icon and select New encrypted ...

How to install skype in ubuntu 10.10 Maverick Meerkat

Skype is a simple software which enable you to make free calls(Audio,video and conference ) over the Internet by using VoIP protocol.It is available for all platform i.e you can use it from Ubuntu,windows or MacOS.It is very simple to use and graphical interface is also very user friendly with a lot of advanced features. The Command Line Way 1. Add the partner repository to the sources.list. sudo gedit /etc/apt/sources.list Uncomment the following lines: deb http://archive.canonical.com/ubuntu maverick partner deb-src http://archive.canonical.com/ubuntu maverick partner If you don’t see the above two lines, then you must add them. Now save and close the file. 2. Now, retrieve the updated package lists from the newly added repositories by issuing the following command: sudo apt-get update 3. Now install skpe sudo apt-get install skype The Graphical Way 1. Go to Applications –> Ubuntu Software Center. 2. Then select Edit –> Software Sources… 3. Select ‘O...

Ubuntu 10.04.1 LTS released

The Ubuntu team has announced the release of Ubuntu 10.04.1 LTS, the first maintenance update to Ubuntu's 10.04 LTS release.  This release includes updated server, desktop, and alternate installation CDs for the i386 and amd64 architectures.  Numerous updates have been integrated, and updated installation media has been provided so that fewer updates will need to be downloaded after installation. These include security updates and corrections for other high-impact bugs, with a focus on maintaining stability and compatibility with Ubuntu 10.04 LTS. To Get Ubuntu 10.04.1 LTS ------------------------- To download Ubuntu 10.04.1 LTS, or obtain CDs, visit: http://www.ubuntu.com/ getubuntu/download We recommend that all users read the release notes, which document caveats and workarounds for known issues. They are available at: http://www.ubuntu.com/ getubuntu/releasenotes/1004 About Ubuntu 10.04.1 LTS ------------------------ This is the first maintenance release of ...

The official guide to Slackware Linux

Slackware Linux Essentials Slackware Linux Essentials is an indispensible resource that you will want to have by your side at all times. It contains the most complete and up-to-date information available on the Slackware Linux Operating System. A must-have reference guide you have been waiting for, it delivers everything you need to get started with Slackware Linux, including straightforward explanations of important programs and step-by-step instructions to guide you through the Slackware installation process. You too can become an expert on this powerful OS by reading about its history and capabilities.   Get it Here

Build custom Linux systems from Scratch

Linux from Scratch describes the process of creating your own Linux system from scratch from an already installed Linux distribution, using nothing but the source code of software that you need. This 318 page eBook provides readers with the background and instruction to design and build custom Linux systems. This eBook highlights the Linux from Scratch project and the benefits of using this system. Users can dictate all aspects of their system, including directory layout, script setup, and security. The resulting system will be compiled completely from the source code, and the user will be able to specify where, why, and how programs are installed. This eBook allows readers to fully customize Linux systems to their own needs and allows users more control over their system. Check current availability! 

Advanced Bash-Scripting Guide

An in-depth exploration of the art of shell scripting. This guide assumes no previous knowledge of scripting or programming, but progresses rapidly toward an intermediate/advanced level of instruction . . . all the while sneaking in little nuggets of UNIX® wisdom and lore. It serves as a textbook, a manual for self-study, and a reference and source of knowledge on shell scripting techniques. The exercises and heavily-commented examples invite active reader participation, under the premise that the only way to really learn scripting is to write scripts. This book is also suitable for classroom use as a general introduction to programming concepts. The Advanced Bash Scripting Guide is both a reference and a tutorial on shell scripting. This comprehensive book (the equivalent of 974 print pages) covers almost every aspect of shell scripting. It contains 364 profusely commented illustrative examples, a number of tables, and a cross-linked index/glossary. Not just a shell ...

Reveal or find (view) your invisible friends in your Gtalk(gmail chat) buddy list

Every time when you have logged into your gtalk you would have thought of seeing the friends who are invisible. Here is a small trick. The bellow peace of python code get the list of invisible users from your GTalk buddy list. It uses XMPP module for python. You can install this module in Ubuntu/Debian via apt. It also requires python dns module. So , Next time do not let anyone fool you , rather catch him Invisibly . Click here to get the procedure and code.

VIM: Search the Current File

Even though your file might not be that long, it can still be a pain to find something you are looking for. Vim has several ways to help you find what you are looking for. Find next occurrence of a word Search for a word by executing the following command in normal mode: ?someWord The command searches backwards in the file for the first occurrence of the word after the question mark. If you are at the end of the file, this is the perfect way to search for a word, but if you were at the beginning of the file it would make more sense to search forward in the file. This is done by exchanging the question mark for a slash: /someWord The word might be in the file several times, and maybe the first place you found wasn't the place you were looking for. No worries, you simply need to press n to go to the next occurrence of the word in the direction of the search. If you would rather change direction, then simply press N instead, and it will instead find the preceding occurrence of the...

MediaInfo: Get extended information about media files

MediaInfo supplies technical and tag information about a video or audio file. What information can I get from MediaInfo? General: title, author, director, album, track number, date, duration ... Video: codec, aspect, fps, bitrate ... Audio: codec, sample rate, channels, language, bitrate ... Text: language of subtitle Chapters: number of chapters, list of chapters What format (container) does MediaInfo support? Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, MPEG-2, MPEG-4, DVD (VOB)... (Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC ...) Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF ... Subtitles: SRT, SSA, ASS, SAMI ... What can I do with it? Read many video and audio file formats Different methods of viewing information (text, sheet, tree, HTML...) You can customise these views Exporting information as text, CSV, HTML... Graphical Interface, Command Line, or DLL Integration with MS-Windows shell (drag 'n' drop, and Context menu) Internati...

VIM: Faster navigation in a file

Sometimes even the simplest of tasks like navigating through a single file can be optimized. Vim offers several methods of navigation within a file, which can adapt to the contents of the file and how it is organized. Some of these methods are obvious, while others are more complex. Mostly, the files we are editing are well structured. If our files are text, then this structure can be in the form of paragraphs, sentences, and words, or at other times code with functions, blocks, and code lines. Vim supports jumping around the file, according to the structure in the file, and has key bindings that make it easy to go to the exact place in the file where you want to go. Moving within a text file You are working on a normal text file and in the middle of a sentence you realize that you have forgotten to make the first letter in the paragraphs uppercase. You could of course, use the arrow-keys or the h/j/k/l navigation keys to move to the beginning of the paragraph to correct this. It ...

How to speed up boot of Ubuntu 10.04 Lucid Lynx

Use profiling to speed up boot. By using profile, a profile of your boot is kept to make your next boot faster. After a couple of boots, a better profile would be ready for your machine. Follow the steps below for that: 1. Edit your grub $ sudo gedit /etc/default/grub You can find the lines GRUB_DEFAULT=0 GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=0 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT=" quiet profile " GRUB_CMDLINE_LINUX=""   add profile to the line GRUB_CMDLINE_LINUX_DEFAULT="quiet" as shown above. 2. Now Update your grub2. Type this in your terminal sudo update-grub2 3. Reboot. 4. Now edit the grub once again and remove the word profile that we added. Update grub ( sudo update-grub2 ) and then reboot.

Boot up ubuntu 10.04 Lucid Lynx faster (speed up boot)

U buntu reached the 10 second boot time with Lucid Lynx. what if your system isn’t quite reaching that point? You can speed it up using profiling option. To do this follow these steps: At your boot screen press “e” (for edit). Use your arrow key and move down to the entry beginning with “kernel”. Press “e” again. Add “profile” (no quotes) at the end of this line. Hit Enter. Click “b” (for boot). The firs time you boot with profile it will take a little longer. What this is doing is profiling your boot process so it knows what files are accessed and then sorts them according to how they are stored on your drive. Your next boot should be considerably faster. Extra Tip:- By disabling Floppy disk in Bios will improve your boot time considerably.  src: http://www.aroundtheweb.info/2010/04/how-tospeed-up-ubuntu-1004-lucid-lynx.html

A Complete Beginner's Manual for Ubuntu 10.04 (Lucid Lynx)

Receive Your Complimentary Guide NOW!   Getting Started with Ubuntu 10.04 (Lucid Lynx) is a comprehensive beginners guide for the Ubuntu operating system; it features comprehensive guides, How Tos and information on anything you need to know after first installing Ubuntu Designed to be as user-friendly and easy to follow as possible, it should provide the first point of reference to any Ubuntu newcomer with lots of information. The manual has step by step instructions and includes lots of screenshots to show you how to do tasks. It also includes a Troubleshooting section to help you solve common Ubuntu problems quickly. Download this 160+ page manual today

Linux Email – Free Sample Chapter, Free Packt Enterprise eBook Excerpt

Receive Your Complimentary eBook Excerpt NOW! " Linux Email – Free Sample Chapter " Set up, maintain, and secure a small office email server. Many businesses want to run their email servers on Linux for greater control and flexibility of corporate communications, but getting started can be complicated. The attractiveness of a free-to-use and robust email service running on Linux can be undermined by the apparent technical challenges involved.

Insider's Guide to Internet Marketing: Get. Convert. Measure

Insider's Guide to Internet Marketing: Get. Convert. Measure. : Websites dominate all media in the 21st century as the most effective way to reach new leads and attract new customers and sales. Coordinating multiple facets of online advertising to maximize Return on Advertising (ROA) is called Multilateral Online Marketing (MOM), a new industry term coined by Fathom SEO that more accurately expresses what it takes to succeed online – coordinating multiple programs that can efficiently reach the right target audience when diverse disciplines work well together. This guide explains 3 core steps to a successful online marketing initiative: Get traffic Convert visitors Measure revenue drivers Register for this FREE guide.

Free E-books and Magazine Subcriptions

We’ve joined forces with TradePub.com to offer you free industry magazines, white papers, webinars, podcasts, and more. No coupons, credit cards, special codes, or purchases are necessary. Publications are entirely FREE to those who qualify. Select from the offers below, or click here to browse our full list of available titles. The GNU/Linux Advanced Administration The GNU/Linux systems have reached an important level of maturity, allowing to integrate them in almost any kind of work environment, from a desktop PC to the sever facilities of a big company. A Newbie\'s Getting Started Guide to Linux Learn the basics of the Linux operating systems. Get to know what it is all about, and familiarize yourself with the practical side. Basically, if you\'re a complete Linux newbie and looking for a quick and easy guide to get you started this is it. Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview Learn about everything you\'ll need to bu...