Welcome to the Linux Knowledge Base and Tutorial
so you want to learn how to use the Bash command line interface (terminal) on Unix/Linux. Or, it’s part of a subject you’re doing and so you’re learning it because you have to. Either way, that’s great. You’re learning how to use a powerful tool that can make your life easier, and make you awesome (more so than I’m sure you already are) .
Complete tutorial will cover the below things:-
- Installation – Installation of different flavor of Linux
- Un installation –
- The Command Line – What is it, how does it work and how do I get to one.
- Basic Navigation – An introduction to the Linux directory system and how to get around it.
- More About Files – Find out some interesting characteristics of files and directories in a Linux environment.
- Manual Pages – Learn how to make the most of the Linux commands you are learning.
- File Manipulation – How to make, remove, rename, copy and move files and directories.
- Vi Text Editor – Discover a powerful Linux based text editor.
- Wildcards – Also referred to as globing, this is a means to refer to several files in one go.
- Permissions – Learn to identify and change the permissions of files and directories and what the consequences of these are.
- Filters – An introduction to various commands that allow us to mangle data in interesting and useful ways.
- Grep and Regular Expressions – Master a powerful pattern matching language that is useful for analyzing and processing data.
- Piping and Redirection – Join commands together in powerful combinations.
- Process Management – See what is currently running on your Linux system and what state the system is in, learn how to kill programs that have hung and put jobs in the background.
- Scripting – Be happy. Get the computer to do tedious and repetitive tasks for you.
- Cheat Sheet – A quick reference for the main points covered in this tutorial.
- Administration
- Memory Management
- Networking
- Email System
- File System and File Management
- Utilities
Creating a table with auto_increment
CREATE TABLE example_autoincrement ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, data VARCHAR(100) ); CREATE TABLE example_innodb ( id INT,Read More »
vicidial / extras / MySQL_AST_CREATE_tables.sql
CREATE TABLE phones ( extension VARCHAR(100), dialplan_number VARCHAR(20), voicemail_id VARCHAR(10), phone_ip VARCHAR(15), computer_ip VARCHAR(15), server_ip VARCHAR(15), login VARCHAR(15), pass VARCHAR(10),Read More »
mount Windows share on Centos 6 or Redhat RHEL
Share one folder name Software on Windows (192.168.0.100) with username test 2. On Centos , mount that share folder toRead More »
Asterisk SIP Trunk calling thorugh other server - Communicating two asterisk server
Asterisk SIP Trunk calling thorugh other server – Communicating two asterisk server Configuration:- Configure the following sip account in bothRead More »
copy a folder under linux server to windows server
MS-Windows shared folder: You can share data between windows and linux system for such use : For example you wouldRead More »
Kill Command in Linux
kill is a shell builtin in most Bourne-derived shells such as Bash and Zsh. The command behavior is slightly different betweenRead More »