feed-image  Delivered by FeedBurner  ISSN 1836-5930





Poll

Which of following tutorials would you like to see on the Linuxconfig.org?
 
Partner Linux Sites
TuxMachines
DebianAdmin
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
FreeSoftwareLinux
Jam's Ubuntu Blog
All For Linux

LINUX ADMINISTRATION NOTES & CODE SNIPPETS

xine was unable to initialize audio driv

xine was unable to initialize audio drivers error message is an issue which bothers me for long time alredy. I have a feeling that it is not related to only ...

Saturday, 20 March 2010

Read more ...

Frequently used options for debian / ubu

dpkg -l List all installed packages.EXAMPLES:dpkg returns a number of installed packages:$ dpkg -l | wc -l1209ask dpkg to return only packages related to php. This will include installed and non-installed ...

Saturday, 20 March 2010

Read more ...

Resize an image with OpenCV cvResize fun

This is a small code to resize an image to a desired percentage from an original. New size of width and height are calculated from a percentage supplied as a ...

Thursday, 18 March 2010

Read more ...

Display Image Attributes with OpenCV

Here is a simple program to display image attributes like width, height, size and etc. This program assumes that you have OpenCV library alredy installed on you system. #include <iostream> #include <iomanip> #include ...

Thursday, 18 March 2010

Read more ...

More in: LINUX ADMINISTRATION NOTES & CODE SNIPPETS

-
+
4

Linux News

Symbian Foundation Builds Cloud Platform on Red Hat Enterprise Linux

Red Hat, Inc., the world's leading provider of open source solutions, today announced that the Symbian Foundation, a global non-profit organization formed to foster an open source community around its ...

Tuesday, 16 March 2010

Read more ...

Try the Linux desktop of the future

For the tinkerers and testers, 2010 is shaping up to be a perfect year. Almost every desktop and application we can think of is going to have a major release, ...

Sunday, 7 March 2010

Read more ...

I-O Data Signs Linux Software Patent Agreement With Microsoft

Microsoft Corp. and I-O Data Device Inc. have entered into an agreement that will provide I-O Data’s customers with patent coverage for their use of I-O Data’s products running Linux ...

Friday, 5 March 2010

Read more ...

Microsoft and Amazon.com Sign Patent Agreement

Microsoft Corp. today announced that it has signed a patent cross-license agreement with Amazon.com Inc. The agreement provides each company with access to the other’s patent portfolio and covers a ...

Friday, 5 March 2010

Read more ...

When will Microsoft sue Google over Linux?

Microsoft once made the mistake of broad-brushing Linux as an intellectual property quagmire. It made Microsoft headlines, but few friends: lawyers didn't believe it, customers didn't want to hear it, ...

Monday, 1 March 2010

Read more ...

Amazon Ponies Up to Microsoft for Linux Rights

Microsoft and Amazon have entered into a patent cross-licensing deal that covers, among other things, Amazon's Kindle and its use of Linux-based servers. The agreement calls for Amazon to pay ...

Tuesday, 23 February 2010

Read more ...

Google's Android code deleted from Linux kernel

After removing Google's Android driver code from the Linux kernel, Novell Fellow and Linux developer Greg Kroah-Hartman has argued that the mobile OS is incompatible with the project's main tree. ...

Friday, 5 February 2010

Read more ...

Sold out: Microsoft's Linux business is booming

The SD Times reports that Microsoft has sold nearly all of its SUSE Linux Enterprise Server (SLES) support coupons. Microsoft purchased the $240 million worth of coupons from Novell as ...

Friday, 5 February 2010

Read more ...

Symbian OS Takes on Android, Linux in Massive Open Source Move

In a dramatic strategic move, the Symbian Foundation has made source code for the world’s most widely used mobile OS completely free and completely open. In addition, the Foundation says ...

Friday, 5 February 2010

Read more ...

Ubuntu Firefox shuns Google for Yahoo! search

The next release of Ubuntu will scrap Google as the default search engine on its Firefox browser in favor of Yahoo!, thanks to a new revenue-sharing deal between Yahoo! and ...

Thursday, 28 January 2010

Read more ...

2009's Five Most Popular & Important Linux Stories

Before jumping into this, let me say that's what popular isn't the same thing as what's important. So, I'm giving you a twofer list. The first is the most popular ...

Tuesday, 5 January 2010

Read more ...

Shuttleworth steps down as Ubuntu 10.04 alpha steps up

Canonical announced that Mark Shuttleworth will be stepping down as CEO in March to be replaced by Canonical COO Jane Silber, reports eWEEK. Meanwhile, the Ubuntu project has released its ...

Friday, 18 December 2009

Read more ...

Microsoft/Linux Milestones

Microsoft Monday made an historic move by submitting device drivers to the Linux kernel under a GPLv2 license. Microsoft has had a checkered past with both Linux and its open ...

Tuesday, 15 December 2009

Read more ...

IBM's newest mainframe is all Linux

IBM has expanded its server lineup with a new mainframe system designed just for Linux that may be aimed, in particular, at higher-end x86 systems. The new system uses IBM's specialty ...

Wednesday, 9 December 2009

Read more ...

New Linux kernel boosts graphics support, enhances KVM

Linus Torvalds announced the release of a stable Linux 2.6.32 kernel. Major additions include kernel-based mode setting (KMS) and 3D graphics support on select Radeon cards, plus new kernel shared ...

Saturday, 5 December 2009

Read more ...

More in: Linux News

-
+
4
Linuxconfig.org
Setup Bootsplash on Debian - grub silent or verbose boot mode

Grub boot verbose modeGrub Boot Silent mode

 

 

 

 

 

 

 

 

 

 

Install Prerequisites

apt-get install linux-source-2.6.18 kernel-package \
linux-patch-bootsplash bootsplash libc6-dev

Patching Linux kernel

Uncompress Linux Kernel Source

cd /usr/src
tar xjf linux-source-2.6.18.tar.bz2

Uncompress Linux Kernel Source

Read more...
 
Partition Encryption

Scenario

In this Linux config we are going to create encrypted partition for user "linuxconfig" and use pam_mount to mount it under /home/linuxconfig directory. For this config we have used Debian Linux, however the very same principle for creating encrypted partitions can be applied also for any other Linux distributions such as SuSe, RedHat, Gentoo, Ubuntu.

Prerequisites

First and the most important one is to make sure that on partition on which you are going to encrypt, is empty. If you have some important data there move them NOW to some save place. When creating encrypted partition all data will be removed. Secondly we need to satisfied software prerequisite so you need to install packages for:

  • cryptsetup ( Ubuntu, Debian package: cryptsetup )
  • pam_mount ( Ubuntu, Debian package: libpam-mount )
Read more...
 
Perl Programming Tutorial

This Perl programming tutorial is a great scripting guide to help you fully understand Perl script. Find Perl tutorials and programming examples to master your knowledge of Perl Scripting.







Using The Perl interpreter

Find Perl Interpreter

which perl 

Find Perl Interpreter

Implicit Execution

NOTE:Every script starts with shebang:"#!" which is not read as a comment. First line is also a place where you put your interpreter which in this case is perl.

#!/usr/bin/perl print "Perl Programming\n"; 

Make Perl Script Executable:


chmod +x perl_script.pl 

perl implicit execution

Read more...
 
How to mount partition with ntfs file system and read write access

Introduction

Purpose of this article is to provide to reader step by step guide, how to mount partition with NTFS file system on the Linux operating system. This article consists of two parts:

  • mount NTFS file system read only access
  • mount NTFS file system with read write access

Mount NTFS file system with read only access

NTFS kernel support

Majority of current Linux distributions supports NTFS file system out of the box. To be more specific, support for NTFS file system is more feature of Linux kernel modules rather than Linux distributions. First verify if we have NTFS modules installed on our system.

ls /lib/modules/2.6.18-5-686/kernel/fs/ | grep ntfs 

  check for NTFS kernel support


NTFS module is presented. Let's identify NTFS partition.

Read more...
 
«StartPrev1234567NextEnd»

Page 5 of 7