1

How To Use Squid Proxy Cache Server To Control Internet Access

http://feedproxy.google.com

Squid is a proxy caching server. If you are Linux sysadmin, you can use squid to control internet access at your work environment. This beginners guide will give a jump-start on how to setup squid on Linux to restrict internet access in an network. Install Squid You should install the following three squid related packages [...] Read More: How To Use Squid Proxy Cache Server To Control Internet Access

Read more »
admin's picture
Created by admin 2 days 9 hours ago – Made popular 2 days 9 hours ago
Category: Operating Systems   Tags:
1

Top 10 Open Source Bug Tracking System

http://feedproxy.google.com

All IT projects needs a bug tracking (or issue tracking, or defect tracking) system. Sure, we need a bug tracking system for a software development project. But, what about a sysadmin team, dba team, network team? They all need some help to track their work, and issues of their system, database and network. I’ve listed [...] Read More: Top 10 Open Source Bug Tracking System

Read more »
Created by bands 3 days 12 hours ago – Made popular 3 days 12 hours ago
Category: Operating Systems   Tags:
1

Linux cpio Examples: How to Create and Extract cpio Archives (and tar archives)

http://feedproxy.google.com

cpio command is used to process archive files (for example, *.cpio or *.tar files). cpio stands for “copy in, copy out”. cpio performs the following three operations. Copying files to an archive Extracting files from an archive Passing files to another directory tree cpio takes the list of files from the standard input while creating [...] Read More: Linux cpio Examples: How to Create and Extract cpio Archives (and tar archives)

Read more »
Created by shashi 1 week 17 hours ago – Made popular 1 week 17 hours ago
Category: Operating Systems   Tags:
1

Packet Analyzer: 15 TCPDUMP Command Examples

http://feedproxy.google.com

tcpdump command is also called as packet analyzer. tcpdump command will work on most flavors of unix operating system. tcpdump allows us to save the packets that are captured, so that we can use it for future analysis. The saved file can be viewed by the same tcpdump command. We can also use open source [...] Read More: Packet Analyzer: 15 TCPDUMP Command Examples

Read more »
Created by admin user 1 week 2 days ago – Made popular 1 week 2 days ago
Category: Operating Systems   Tags:
1

How To Be Productive and Get Things Done Using GTD

http://feedproxy.google.com

Do you need more time to do the things that you enjoy? Of course, you do. For geeks there are tons of technical projects to mess with, but we don’t have enough time. Over the years, I’ve tried few time management and productivity systems. While they all helped me grow, there is something in those [...]

Read more »
Created by admin user 1 week 3 days ago – Made popular 1 week 3 days ago
Category: Operating Systems   Tags:
1

HBA WWN: How to Find Qlogic or Emulex HBA Card WWN Address on Linux

http://feedproxy.google.com

Question: How do I lookup the wwn address of my HBA card installed on the Linux system. I need this information to create zoning on my fiber channel switch.
Answer: Use one of the following methods to view the HBA WWN address on Linux.

Method 1: /sys/class/scsi_host/host{n}/device/fc_host:host{n}/port_name File
On Redhat 5 and above (including OEL and CentOS), the [...] Read More: HBA WWN: How to Find Qlogic or Emulex HBA Card WWN Address on Linux

Read more »
Created by admin user 1 week 6 days ago – Made popular 1 week 6 days ago
Category: Operating Systems   Tags:
1

How to Send SMS Using Email to Major US Cellphone Carriers

http://feedproxy.google.com

Are you always sending SMS to your friend’s cellphone from your cellphone? Did you know that you can SMS to someone using email?
This list is extremely helpful, if you are outside US and would like to SMS someone in US, you can just send it as an email.

This also helps sysadmins, who want to receive [...] Read More: How to Send SMS Using Email to Major US Cellphone Carriers

Read more »
sri's picture
Created by sri 1 week 6 days ago – Made popular 1 week 6 days ago
Category: Operating Systems   Tags:
1

Can You Make It? Compile C Programs on Linux Using Make Command

http://feedproxy.google.com

When you install any software from source, you typically execute commands like — “make”, “make install”, “make clean”, etc. Have you wondered what all these make commands are really making? Sure, we know that it is trying to compile and install the software. But, why make? What does it really do?
For compiling a single C [...] Read More: Can You Make It? Compile C Programs on Linux Using Make Command

Read more »
admin's picture
Created by admin 2 weeks 1 day ago – Made popular 2 weeks 1 day ago
Category: Operating Systems   Tags:
1

UNIX / Linux: 2 Ways to Add Swap Space Using dd, mkswap and swapon

http://feedproxy.google.com

Question: I would like to add more swap space to my Linux system. Can you explain with clear examples on how to increase the swap space?
Answer: You can either use a dedicated hard drive partition to add new swap space, or create a swap file on an existing filesystem and use it as swap space.

How [...] Read More: UNIX / Linux: 2 Ways to Add Swap Space Using dd, mkswap and swapon

Read more »
admin's picture
Created by admin 2 weeks 2 days ago – Made popular 2 weeks 2 days ago
Category: Operating Systems   Tags:
1

10 Things Any Monitoring Software Should Do (Nagios Does it)

http://feedproxy.google.com

If you are a system administrator, or IT manager, or someone who is responsible for IT infrastructure, you should implement an enterprise level monitoring solution.
The shell script you’ve written that does a ps -ef and sends you an email might do the basic job, but it doesn’t count as monitoring.
If you want to be proactive, [...] Read More: 10 Things Any Monitoring Software Should Do (Nagios Does it)

Read more »
sri's picture
Created by sri 2 weeks 3 days ago – Made popular 2 weeks 3 days ago
Category: Operating Systems   Tags:
1

How to Allow MySQL Client to Connect to Remote MySQL server

http://feedproxy.google.com

By default, MySQL does not allow remote clients to connect to the MySQL database.
If you try to connect to a remote MySQL database from your client system, you will get “ERROR 1130: Host is not allowed to connect to this MySQL server” message as shown below.

$ mysql -h 192.168.1.8 -u root -p
Enter password:
ERROR 1130: Host [...] Read More: How to Allow MySQL Client to Connect to Remote MySQL server

Read more »
Created by admin user 3 weeks 1 day ago – Made popular 3 weeks 1 day ago
Category: Operating Systems   Tags:
1

10 IPCS Command Examples (With IPC Introduction)

http://feedproxy.google.com

IPC stands for Inter-process Communication.
This technique allows the processes to communicate with each another.
Since each process has its own address space and unique user space, how does the process communicate each other?
The answer is Kernel, the heart of the Linux operating system that has access to the whole memory. So we can request the kernel [...] Read More: 10 IPCS Command Examples (With IPC Introduction)

Read more »
Created by bands 3 weeks 1 day ago – Made popular 3 weeks 1 day ago
Category: Operating Systems   Tags:
1

UNIX ar Examples: How To Create, View, Extract, Modify C Archive Files (*.a)

http://feedproxy.google.com

ar is an archive tool used to combine objects to create an archive file with .a extension, also known as library.
In this article, let us discuss about how to create an user defined static library in C programming using the “ar” utility. The examples shows how to create, extract, and modify the archives using [...] Read More: UNIX ar Examples: How To Create, View, Extract, Modify C Archive Files (*.a)

Read more »
admin's picture
Created by admin 3 weeks 2 days ago – Made popular 3 weeks 2 days ago
Category: Operating Systems   Tags:
1

RAID 0, RAID 1, RAID 5, RAID 10 Explained with Diagrams

http://feedproxy.google.com

RAID stands for Redundant Array of Inexpensive (Independent) Disks.
On most situations you will be using one of the following four levels of RAIDs.

RAID 0
RAID 1
RAID 5
RAID 10 (also known as RAID 1+0)

This article explains the main difference between these raid levels along with an easy to understand diagram.

In all the diagrams mentioned below:

A, B, C, [...] Read More: RAID 0, RAID 1, RAID 5, RAID 10 Explained with Diagrams

Read more »
Created by shashi 3 weeks 3 days ago – Made popular 3 weeks 3 days ago
Category: Operating Systems   Tags:
1

How to Register RHEL/OEL Linux to Oracle Support (ULN) using up2date

http://feedproxy.google.com

Question: I have purchased Linux support for RHEL and OEL from Oracle corporation. How do I register my Linux system to Oracle support network to download and update packages? Can you explain me with step-by-step instruction?
Answer: After purchasing Linux support from Oracle, you should register your Linux system with Oracle’s Unbreakable Linux Network using up2date [...] Read More: How to Register RHEL/OEL Linux to Oracle Support (ULN) using up2date

Read more »
sri's picture
Created by sri 3 weeks 6 days ago – Made popular 3 weeks 6 days ago
Category: Operating Systems   Tags:
1

Snort: 5 Steps to Install and Configure Snort on Linux

http://feedproxy.google.com

Snort is a free lightweight network intrusion detection system for both UNIX and Windows.
In this article, let us review how to install snort from source, write rules, and perform basic testing.

1. Download and Extract Snort
Download the latest snort free version from snort website. Extract the snort source code to the /usr/src directory as shown [...] Read More: Snort: 5 Steps to Install and Configure Snort on Linux

Read more »
Created by shashi 3 weeks 6 days ago – Made popular 3 weeks 6 days ago
Category: Operating Systems   Tags:
1

How To Create LVM Using vgcreate, lvcreate, and lvextend lvm2 Commands

http://feedproxy.google.com

LVM stands for Logical Volume Manager.
With LVM, we can create logical partitions that can span across one or more physical hard drives. First, the hard drives are divided into physical volumes, then those physical volumes are combined together to create the volume group and finally the logical volumes are created from volume group.
The LVM [...] Read More: How To Create LVM Using vgcreate, lvcreate, and lvextend lvm2 Commands

Read more »
sri's picture
Created by sri 4 weeks 23 hours ago – Made popular 4 weeks 23 hours ago
Category: Operating Systems   Tags:
1

VMware ESXi 4: How to Add VMFS Datastore Using vSphere Client ( with Screenshots )

http://feedproxy.google.com

As part of our on-going VMware series of articles, we earlier discussed about how to install VMware ESXi server, and  how to install vSphere Client.
In this article, let us see how to create a new datastore using vSphere client.

1. View Existing ESXi VMware Datastores
Launch vSphere Client -> Click on the top node in the left [...] Read More: VMware ESXi 4: How to Add VMFS Datastore Using vSphere Client ( with Screenshots )

Read more »
admin's picture
Created by admin 4 weeks 2 days ago – Made popular 4 weeks 2 days ago
Category: Operating Systems   Tags:
1

15 Useful Bash Shell Built-in Commands (With Examples)

http://feedproxy.google.com

Bash has several commands that comes with the shell (i.e built inside the bash shell).
When you execute a built-in command, bash shell executes it immediately, without invoking any other program.
Bash shell built-in commands are faster than external commands, because external commands usually fork a process to execute it.
In this article let us review some [...] Read More: 15 Useful Bash Shell Built-in Commands (With Examples)

Read more »
Created by admin user 4 weeks 3 days ago – Made popular 4 weeks 3 days ago
Category: Operating Systems   Tags:
1

Unix Shell Script to Execute Oracle SQL Query

http://feedproxy.google.com

Question: Can you provide me a shell script that will accept oracle credentials, sql query to be executed and displays the output?
Answer: The shell script given below prompts some basic information and displays the output of the SQL.
You can use the same concept and hard-code some of these values in the shell-script itself and even [...] Read More: Unix Shell Script to Execute Oracle SQL Query

Read more »
Created by bands 4 weeks 6 days ago – Made popular 4 weeks 6 days ago
Category: Operating Systems   Tags:

Your Ad Here

User login

Who's online

There are currently 0 users and 1 guest online.