RSS Subscription
Linux Howtos & Tutorials

Enter your email:

Delivered by


NOTE:New tutorials are from LinuxCareer.com

Poll

Do you own or wish to have iPhone?
 


Linux eBooks FREE Download
A guide to programming Linux kernel modules
Introduction to Linux - A Hands on Guide
A Newbie's Getting Started Guide to Linux

Linux from Scratch - Create Your Own Linux System - Free eBook

Linux: The Hacking Solution (v.3.0)

SQLite 3 with PHP Essential Training – Free Video Training Tutorials

This guide will introduce you to the world of GNU/Linux

The GNU/Linux Advanced Administration

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

Advanced Bash-Scripting Guide

Set up, maintain, and secure a small office email server

Partner Linux Sites:
How-To.LinuxCareer.com
Jobs.LinuxCareer.com
TuxMachines
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
All For Linux

Linux tutorials and more...


HowTo mount cdrom in linux

CD's and DVDs are using iso9660 filesytem. As any other operating system, Linux is also able to read data from standard iso9660 filesystem. Let's see how we can mount CD-ROM or DVD-ROM with use of mount command.

Detecting CD-ROM/DVD-ROM drive

If we are not sure which block device is our DVD-ROM or CD-ROM we can find it out  by running a following wodim command:

Share this linux post:

Submit HowTo mount cdrom in linux in Delicious Submit HowTo mount cdrom in linux in Digg Submit HowTo mount cdrom in linux in FaceBook Submit HowTo mount cdrom in linux in Google Bookmarks Submit HowTo mount cdrom in linux in Stumbleupon Submit HowTo mount cdrom in linux in Technorati Submit HowTo mount cdrom in linux in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.
Add a comment

Read more: HowTo mount cdrom in linux

 

SSH login without password

Public key authentication allows you to login to a remote host via the SSH protocol without a password and is more secure than password-based authentication. Try creating a passwordless connection from linuxconfig.local to linuxconfig.org using public-key authentication.

Create key

Press ENTER at every prompt.

linuxconfig.local$ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/home/user/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/user/.ssh/id_rsa.
Your public key has been saved in /home/user/.ssh/id_rsa.pub.
The key fingerprint is:
b2:ad:a0:80:85:ad:6c:16:bd:1c:e7:63:4f:a0:00:15 user@host
The key's randomart image is:
+--[ RSA 2048]----+
| E. |
| . |
|. |
|.o. |
|.ooo o. S |
|oo+ * .+ |
|++ +.+... |
|o. ...+. |
| . .. |
+-----------------+
linuxconfig.local$

Share this linux post:

Submit SSH login without password in Delicious Submit SSH login without password in Digg Submit SSH login without password in FaceBook Submit SSH login without password in Google Bookmarks Submit SSH login without password in Stumbleupon Submit SSH login without password in Technorati Submit SSH login without password in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.
Add a comment

Read more: SSH login without password

 

Debian GNU/Linux 4.0 "etch" Installation

Installation prerequisites

Debian LogoIt is said that the installation of Debian Linux is know as one of the hardest among all Linux Distributions. In this article we will see that this is just a myth, in fact it is very easy, even for beginners. All you need is basic understanding of disk partitioning techniques and a downloaded/burned netinstall image which suits the hardware architecture you intend to install onto Debian Linux, and a internet connection. Of course there are other requirements, such as a working PC with a CD-ROM drive and free/unpartitioned space on your hard disk. :'''NOTE:''' Do not download all Debian GNU/Linux 4.0 installation disks! You only need the first CD or go to  netinstall CD.

 

 

 

Beginning of the installation

Make sure you set your BIOS to boot from the CD-ROM. Once you boot Debian, it will welcome you with an Introductory Screen similar to the one below.

Debian Etch Introductory Screen

At this stage you can navigate with the function keys F1-F10:

Share this linux post:

Submit Debian GNU/Linux 4.0 "etch" Installation in Delicious Submit Debian GNU/Linux 4.0 "etch" Installation in Digg Submit Debian GNU/Linux 4.0 "etch" Installation in FaceBook Submit Debian GNU/Linux 4.0 "etch" Installation in Google Bookmarks Submit Debian GNU/Linux 4.0 "etch" Installation in Stumbleupon Submit Debian GNU/Linux 4.0 "etch" Installation in Technorati Submit Debian GNU/Linux 4.0 "etch" Installation in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.
Add a comment

Read more: Debian GNU/Linux 4.0 "etch" Installation

 

Howto mount USB drive in Linux

The Office Worker's Guide to a USB Thumb Drive

>FREE PDF DOWNLOAD<

Example

Detecting USB hard drive

After you plug in your USB device to your USB port, linux will add new block device into /dev/ directory. At this stage you are not able to use this device as the USB filesystem needs to be mouted before you are able to retrieve any data. To find out what name your block device file have you can run fdisk command:

Share this linux post:

Submit Howto mount USB drive in Linux in Delicious Submit Howto mount USB drive in Linux in Digg Submit Howto mount USB drive in Linux in FaceBook Submit Howto mount USB drive in Linux in Google Bookmarks Submit Howto mount USB drive in Linux in Stumbleupon Submit Howto mount USB drive in Linux in Technorati Submit Howto mount USB drive in Linux in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.
Add a comment

Read more: Howto mount USB drive in Linux

 

Vim Tutorial

Introduction

This tutorial has been written for both vi and vim. It starts with real basics, such as cursor navigation and ends with more advanced techniques like merging files.

 

For every section of this tutorial there is a short video with hints to help you understand how vim / vi works. Even that I have divided this tutorial into parts from novice to the expert user, there is plenty more what vim can do to make your work with vim editor easier and more efficient.

 

However completing this tutorial you will give sufficient knowledge about vim / vi and its features for your daily tasks.

Vim Novice level ( Vim Basics )

Moving cursor around

 move vim text editor cursor left with h, move vim text editor cursor right with l, move vim text editor cursor up with k ,move vim text editor  cursor down with j

In vim you can move cursor around with following keys h, l, k, j which is left, right, up and down respectively. You can move cursor around also with arrow keys, however this is possible only if they are available. Vim was designed for all kinds of terminals where arrow keys may not be available for you. Moreover, once you get used to using vim with h, l, k, j you will move more quickly than using arrow keys. Open some text file and try using those keys now:

vim yourfile.txt

 

Share this linux post:

Submit Vim Tutorial in Delicious Submit Vim Tutorial in Digg Submit Vim Tutorial in FaceBook Submit Vim Tutorial in Google Bookmarks Submit Vim Tutorial in Stumbleupon Submit Vim Tutorial in Technorati Submit Vim Tutorial in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.
Add a comment

Read more: Vim Tutorial

 

HowTo configure NFS

Introduction

The Network File System is certainly one of the most widely used network services. Network file system (NFS) is based on the Remote procedure call. It allows the client to automount and therefore, transparently access the remote file systems on the network.

Scenario

In this scenario we are going to export the file system from the linuxconfig.org (IP address 10.1.1.200) host and mount it on linuxconfig.local(IP address 10.1.1.100).

Prerequisites

At this point, we assume that the NFS service daemon is already installed on your system, including portmap daemon on which NFS setupt depends. Moreover, your system needs to support the NFS file system.

$ cat /proc/filesystems 

NFS file system supported

Share this linux post:

Submit HowTo configure NFS in Delicious Submit HowTo configure NFS in Digg Submit HowTo configure NFS in FaceBook Submit HowTo configure NFS in Google Bookmarks Submit HowTo configure NFS in Stumbleupon Submit HowTo configure NFS in Technorati Submit HowTo configure NFS in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.
Add a comment

Read more: HowTo configure NFS

 

Page 9 of 9