Librenix
Headlines | Linux | Apps | Coding | BSD | Admin | News
Information for Linux System Administration 

The Coming HTML 5 Revolution in Linux

Up
vote
Down

I have spent the last couple of weeks working on a very ambitious C++ program. The program is a software model of a mechanical engineering system. I have never undertaken a more challenging or more rewarding computer programming project. As I spent hour after hour poring over the code, I began to realize why everyone is making such a fuss about HTML 5. read more...
permapage | score:9715 | -aweber, December 13, 2011

The Debate OS Project

Up
vote
Down

Today I ran across another open-source Kickstarter project that I thought was worth sharing. The project, called Debate OS, is an Ubuntu spin focused on providing a debate environment for high school and college students. read more...
permapage | score:9693 | -aweber, December 15, 2011

Pissed Off Penguins: A Free Game Project

Up
vote
Down

Kris Occhipinti is currently in the middle of creating a 2D game using the Blender 3D game engine. The game, called Pissed Off Penguins, looks similar to the popular “Angry Birds” game most of you have likely heard about. I wanted to outline this open-source project and expose some of the unique techniques Kris is using to both fund this project and create the game itself. read more...
permapage | score:9660 | -aweber, December 11, 2011

Understanding SELinux

Up
vote
Down

A task of any operating system is to provide software that strongly increases its security. A lot of programs of this type have been created; some are better than others. read more...
permapage | score:9517 | -aweber, March 25, 2013

Postfix: SMTP Options with Webmin

Up
vote
Down

Webmin can be used to create and edit mail aliases which can be used to send mail to individuals, groups, lists or even applications. Webmin is a web based front end used for monitoring Linux servers which have no GUI. read more...
permapage | score:9302 | -aweber, August 29, 2012

String matching in regular expressions

Up
vote
Down

Use parentheses to create the string matches you need in regular expressions. Parentheses allows you to use pipes for multiple matches. read more...
permapage | score:9240 | -aweber, September 12, 2011

Nagios 2012 World Conference

Up
vote
Down

The Nagios 2012 World conference starts today and one of the major events of the conference will be the demonstrations of the Nagios 2012 interface by Ethan Galstad. I have been running the beta for several weeks in the Nagios Training classes and the response has been very favorable about the new features. Here is a list of a few to look for. read more...
permapage | score:9229 | -aweber, September 27, 2012

Using Git for Source Control

Up
vote
Down

GIT is the source control tool, a distributed version control system (dvcs) which is written in C. This provides a history of the files that are maintained by it. In distributed version control each user has a complete copy of the code so there is no central code repository. In this scenario an administrator makes changes, adds them to the index (called staging) and then adds them to the repository (called commit). Git will take this information and maintain a version history that users can track. This is all performed locally but could be synchronized with a remote repository. read more...
mail this link | permapage | score:9130 | -aweber, May 5, 2012

Sustitution with sed

Up
vote
Down

The Linux utility sed provides a great way to substitute text strings in a file. Using the "s" option and by listing the current string and the string to use as the new text allows sed to perform this task. read more...
permapage | score:9129 | -aweber, August 3, 2011

Bash: Use the Test Command for multiple aspects

Up
vote
Down

The Bash shell has a builtin test command that can be used to check for multiple aspects in a script. This exercise helps you build a script that checks to see if a file exists and if it does, checks to see if it is writable. read more...
permapage | score:9104 | -aweber, December 4, 2011

Debugging Shell Scripts

Up
vote
Down

Learning how to find the errors in your shell scripts is an important skill for successful shell scripting. The debug options in the Bash shell can help with that. read more...
permapage | score:9098 | -aweber, February 2, 2012

Bash log file scanning

Up
vote
Down

The idea behind a log parser is to create a loop that will check all of your required logs to return information about specific needs that you may have as an administrator. For example, with this script you may want to search a specific log for one or two text strings that are very important to the function of your system. read more...
permapage | score:9065 | -aweber, March 3, 2011

Beginners Guide To Ubuntu One Personal Cloud

Up
vote
Down

Ubuntu, the leading desktop Linux distribution, has been looking at ways to add value to its offering for a while. The maturing Ubuntu One personal cloud service is just such an enhancement – but is it any good? read more...
permapage | score:9025 | -aweber, November 9, 2012

Installing NRPE on FreeBSD 9.0

Up
vote
Down

The NRPE daemon provides a way for Nagios to monitor the internal aspects of a FreeBSD box. This article will take you through the steps for installing NRPE on FreeBSD. read more...
permapage | score:9017 | -aweber, March 17, 2012

Bash Functions

Up
vote
Down

Functions are scripts within scripts in Bash that can be used to increase speed, save on resources in a script and provide reusable information since it is stored in memory. Functions must be declared before they can be used in the Bash shell script. read more...
permapage | score:9015 | -aweber, July 6, 2011

Install Dovecot 2 on CentOS

Up
vote
Down

Dovecot 2 has new features, including security enhancements that administrators may want to use on CentOS. However, this version of Dovecot is not in the repository so you will need to install several additional packages. read more...
permapage | score:9014 | -aweber, March 26, 2011

HP Redstone Servers, Open Source textbooks, Netflix on Linux

Up
vote
Down

GNU/Linux and free software are a boon to a lot of businesses, and a thorn in the sides of others. Both the friends and enemies of Linux are realizing that Linux is important, and that it is here to stay. HP is leveraging Linux to try to return from the brink of financial ruin. As colleges and other schools around the country teeter on the verge of bankruptcy, many are moving to open source textbooks as a lower cost alternative. Free software is freeing people from the shakedown that is cable television. Finally, Microsoft has broken down and contributed code to a GPL version 3-licensed project. read more...
mail this link | permapage | score:9011 | -aweber, November 9, 2011

Troubleshooting Mail on Nagios XI

Up
vote
Down

Email management and troubleshooting can be a challenge as there are so many options and configuration choices that can get twisted. read more...
permapage | score:9001 | -aweber, November 5, 2012

Tutorial: PostfixAdmin and Fetchmail

Up
vote
Down

Have you ever wanted to move mail from an old account to a new account? This tutorial will show you how to use fetchmail with PostfixAdmin. read more...
permapage | score:8964 | -aweber, September 3, 2010

Automate install with AutoYaST answer files

Up
vote
Down

The final part of our installation jigsaw puzzle is to create the answer file, in SUSE this is known as AutoYaST. If we were only ever to install one server or one desktop then maybe we could do without answer files; however where we need to install a few or many then AutoYaST provides us with an unattended installation:- a build script to create consistency and compliance we regulatory bodies governing security. In short we need answer files. read more...
permapage | score:8957 | -aweber, December 8, 2011
More articles...
Abstract Art by Ray Yeargin

Selected articles

Librenix T-Shirts and Coffee Mugs!

Space Tyrant: Multithreading lessons learned on SMP hardware

Programming Language Tradeoffs: 3GL vs 4GL

Hacker Haiku

Why software sucks

The short life and hard times of a Linux virus

The Network Computer: An opportunity for Linux

Linux vs. Windows: Why Linux will win

The Real Microsoft Monopoly

Apple to Intel move no threat to Linux

Tutorial: Introduction to Linux files

Microsoft to push unlicensed users to Linux

Scripting: A parallel Linux backup script

Download: Linux 3D Client for Starship Traders

No, RMS, Linux is not GNU/Linux

Beneficial Computer Viruses

VPS: Xen vs. OpenVZ

How to install Ubuntu Linux on the decTOP SFF computer

Missing the point of the Mac Mini

Mono-culture and the .NETwork effect

The Supreme Court is wrong on Copyright Case

MiniLesson: An introduction to Linux in ten commands

Space Tyrant: A threaded game server project in C

Linux dominates Windows

Space Tyrant: A multiplayer network game for Linux

Why Programmers are not Software Engineers

The life cycle of a programmer

Closed Source Linux Distribution Launched

Currency Traders Telnet Game

Shadow.sh: A simple directory shadowing script for Linux

Space Tyrant: A threaded C game project: First Code

Apple DIY Repair

Graffiti Server Download Page

 

Firefox sidebar

Site map

Site info

News feed

Features

Login
(to post)

Search

 
Articles are owned by their authors.   © 2000-2012 Ray Yeargin