Main > Free Download Search >

Free howto software for linux

howto

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 83
VPN HOWTO 2.0

VPN HOWTO 2.0


VPN HOWTO is a document that describes how to set up a Virtual Private Network with Linux. more>>
VPN HOWTO is a document that describes how to set up a Virtual Private Network with Linux.
Main features:
- Section 1: Introduction
- Section 2: Theory
- Basic VPN theory. What is a VPN, and how does it work. Read this if you are entirely new to VPN.
- Section 3: Server
- This section describes how a VPN server is set up.
- Section 4: Client
- This section describes how a VPN client is set up.
- Section 5: Implementation
- A step by step implementation of a sample VPN setup.
- Section 6: Addenda
- Other bits and pieces of info that you might find helpful.
<<less
Download (MB)
Added: 2006-10-11 License: (FDL) GNU Free Documentation License Price:
1127 downloads
Infrared-HOWTO 3.7

Infrared-HOWTO 3.7


Infrared-HOWTO explains how to use the software provided by the Linux/IrDA project. more>>
Infrared-HOWTO explains how to use the software provided by the Linux/IrDA project.

The Infrared-HOWTO (formerly known as the IR-HOWTO) is an introduction to Linux and infrared devices and how to use the software provided by the Linux/IrDA project.

This package uses IrDA(TM) compliant standards.

Remote Control (RC) via infrared is not the aim of the project, though this topic is partly treated in the HOWTO.
<<less
Download (MB)
Added: 2006-10-03 License: (FDL) GNU Free Documentation License Price:
1121 downloads
Ecology-HOWTO 0.18

Ecology-HOWTO 0.18


Ecology-HOWTO package discusses ways Linux computers can be used as a mean to protect our environment. more>>
Ecology-HOWTO package discusses ways Linux computers can be used as a mean to protect our environment, by using its features to save power or paper.
Since it does not require big hardware, Linux may be used with old computers to make their life cycle longer.
Games may be used in environmental education and software is available to simulate ecological processes.
Enhancements:
- A new chapter about using spare CPU cycles has been added, the Green Linux initiative of the Linux Foundation has been mentioned, and the abstract has been made more precise.
<<less
Download (0.048MB)
Added: 2007-06-21 License: (FDL) GNU Free Documentation License Price:
855 downloads
Filesystems HOWTO 0.7.4

Filesystems HOWTO 0.7.4


Filesystems HOWTO is about filesystems and accessing filesystems from several OSes. more>>
Filesystems HOWTO is about filesystems and accessing filesystems from several OSes.

This HOWTO is a document that describes a wide variety of filesystems and instructs you on how to access them from a wide variety of operating systems.
<<less
Download (MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1116 downloads
Linux Quake Howto 2.05

Linux Quake Howto 2.05


Linux Quake Howto is a modern guide to GLQuake, with some information about QuakeWorld , Quake II, III and IV. more>>
Linux Quake Howto is a modern guide to GLQuake, with some information about QuakeWorld , Quake II, III and IV.
The Linux Quake Howto is a modern guide to Quake, a collection of the most useful tips, and a pointer to the best resources still available on the Web. The focus is on GLQuake, but it also covers Quakeworld, Quake II, and III.
Enhancements:
- Added some troubleshooting hints for Quake IV.
- Added a new section for (gcc-4.1) compilation issues.
- Added Links to the Quake III Cell Shading project.
- Miscellaneous link updates.
- Added a small section for 64 bit CPUs.
- Moved "Links" to its own section.
<<less
Download (MB)
Added: 2007-03-19 License: Freely Distributable Price:
952 downloads
Linux ATA RAID HOWTO 2.1

Linux ATA RAID HOWTO 2.1


Linux ATA RAID HOWTO explains how to setup RedHat on a system with Promise Fasttrack RAID. more>>
Linux ATA RAID HOWTO explains how to setup RedHat on a system with Promise Fasttrack RAID.
The Linux ATA RAID HOWTO explains how to set up RAID 1 (disk mirroring) and then install Red Hat Linux on the mirror device.
Promise Technology was one of the first companies to come up with quasi-hardware RAID for inexpensive IDE hard disks.
This document covers using the Promise proprietary RAID driver as well as the Linux native ATA RAID.
Enhancements:
- Minor enhancements
<<less
Download (MB)
Added: 2006-10-03 License: (FDL) GNU Free Documentation License Price:
1118 downloads
SSH with Keys HOWTO 0.08

SSH with Keys HOWTO 0.08


SSH with Keys HOWTO is a document which shows how to use SSH with keys, passphrases, and ssh-agent. more>>
SSH with Keys HOWTO is a document which shows how to use SSH with keys, passphrases, and ssh-agent.

For those of you who have been using SSH for a while, you will probably understand its advantages over the previous telnet style applications such as telnet and remote shell.

Although SSH with keys has always been there, not many people know what it is about, and how you can utilize its strenghts to make your life as a system administrator a bit more easy.
<<less
Download (MB)
Added: 2006-10-04 License: (FDL) GNU Free Documentation License Price:
1117 downloads
Test::Chimps::Howto 0.07

Test::Chimps::Howto 0.07


Test::Chimps::Howto is a Perl module with a howto about Test::Chimps. more>>
Test::Chimps::Howto is a Perl module with a howto about Test::Chimps.

SYNOPSIS

This document briefly describes how to set up a Chimps server and a Chimps smoker to smoke a project.

THE SERVER

We will be setting up a smoke server for an imaginary company called Bananas 2.0, who make a trendy AJAX website for ordering bananas for primates online. To install the Chimps server, install the Test::Chimps package from CPAN on the machine that will be hosting the server CGI (in this case gorilla.bananas2.com).

root@gorilla:~# cpan Test::Chimps

This will install the various libraries that Chimps needs on the server-side. Next, you are going to need to create the server CGI. There is an example in the Test-Chimps distribution that looks a lot like this:

#!/usr/bin/env perl

use Test::Chimps::Server;

my $server = Test::Chimps::Server->new(
base_dir => /home/chimps,
list_template => list.tmpl,
variables_validation_spec => {
project => 1,
revision => 1,
committer => 1,
duration => 1,
osname => 1,
osvers => 1,
archname => 1
}
);

$server->handle_request;

This file should be put somewhere where the webserver can execute CGIs. In this case, it will be dropped in /usr/lib/cgi-bin and called chimps-server.pl.

The call to the Test::Chimps::Server constructor passes three arguments. The base_dir argument specifies that /home/chimps will be where the Chimps server will store its database, rate limiting file, and templates. The list_template argument says that the file list.tmpl will be used as the template for the front page (where smoke reports are listed). This file can be found in the examples subdirectory of the Test-Chimps distribution (and its too large to reproduce here). You should drop list.tmpl into /home/chimps/templates. Finally, variables_validation_spec tells the Chimps server which report variables the server will require. See "REPORT VARIABLES" in Test::Chimps for more information about report variables. There are also many more options that can be passed to the Test::Chimps::Server constructor for specifying where things should be stored and how to serve smoke reports.

You should now be able to hit http://gorilla.banana2.com/cgi-bin/chimps-server.pl and see an empty listing of smoke reports. Well fix the problem of it being empty in the next section.

<<less
Download (0.027MB)
Added: 2006-10-17 License: Perl Artistic License Price:
1102 downloads
Configuration HOWTO 1.99.8

Configuration HOWTO 1.99.8


Configuration HOWTO would be the main documentation for configuring most common hardware and services. more>>
Configuration HOWTO would be the main documentation for configuring most common hardware and services.

This document is one of the most important for LDP, because by configuring hardware and software you can get your own Linux box. This HOWTO was born in the Golden Age of developers, mainly for the command line. As it became too big and old for the current distros, I rewrote it more simple as I could.

Fundamentally, to configure the system, Linux users have to write some configuration files. To do it easyer, today programs and wizards are avaliable to manage them. This programs may be quite different for the various distributions.

In this HOWTO, I will speak about Mandrake-Linux and about Red Hat.

<<less
Download (MB)
Added: 2007-01-25 License: LGPL (GNU Lesser General Public License) Price:
1006 downloads
Speech Recognition HOWTO 2.0

Speech Recognition HOWTO 2.0


Speech Recognition HOWTO is a project that contains instructions for using speech recognition software and hardware. more>>
Speech Recognition HOWTO is a project that contains instructions for using speech recognition software and hardware and their use on Linux systems.
Enhancements:
- Changed license information (now GFDL) and added a new publication.
<<less
Download (MB)
Added: 2006-10-09 License: (FDL) GNU Free Documentation License Price:
1124 downloads
Apache Compile HOWTO 1.9.18

Apache Compile HOWTO 1.9.18


Apache Compile HOWTO is a full-featured Apache compilation HOWTO. more>>
Apache Compile HOWTO is a full-featured Apache compilation HOWTO.
The Apache Compile HOWTO is a simple set of instructions and examples for compiling Apache, mod_ssl, mod_perl, mod_dav, mod_auth_ldap, mod_auth_mysql, mod_dynvhost, mod_roaming, mod_jserv, and mod_php (including MySQL, Postgres, pdflib, and IMAP).
Enhancements:
- Added XML and Sablotron support to PHP
- Dropped support for mod_jserv
- Added mod_jk support
- Enhanced support for Tomcat
- Updated software mentioned in the HOWTO
- Minor SGML enhancements
<<less
Download (MB)
Added: 2006-10-03 License: (FDL) GNU Free Documentation License Price:
646 downloads
IP Masquerade HOWTO 11/13/05

IP Masquerade HOWTO 11/13/05


IP Masquerade HOWTO project is a document describing how to set up IP Masq (NAT) for Linux systems. more>>
IP Masquerade HOWTO project is a document describing how to set up IP Masq (NAT) for Linux systems.
It contains instructions on understanding, configuring, and troubleshooting NAT or Network Address Translation for Linux.
It covers topics such as IPTABLES, PORTFW, IPCHAINS, IPFWADM, stronger packet firewalls, multiple network segments, and configuring many client operating systems. It also has an extensive FAQ and troubleshooting section.
Enhancements:
- Fix a bug where the PORTFW example rule in section 6.7 was incorrect. Updated the IPTABLES PORTFW section to include state tracking for the pre-routing rule, added a cross-reference to the PORTFW FAQ entry, and reduced some duplicate PORTFW examples in different chapters of the HOWTO. Thanks to Thomas Zajic for bringing this to my attention.
- Updated the dynamic IP FAQ section to give complete examples on how to re-run the rc.firewall-* scripts for various different DHCP clients
- Updated the HOWTO to be very clear on loading the various rc.firewall-* rulesets (there are 6 of them in this HOWTO both simple and stronger versions for IPTABLES, IPCHAINS, and IPFWADM) files vs. loading a generic rc.firewall file. I also updated the troubleshooting section to reflect this possibly confusing point.
- Updated the Multiple NAT situation to include ProxyARP solutions
- Clarified the section for IPMASQ on multiple internal LAN segments
<<less
Download (MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1119 downloads
QoS Connection Tuning HOWTO 0.61

QoS Connection Tuning HOWTO 0.61


QoS Connection Tuning HOWTO is a document which explains how to tune network connection performance. more>>
QoS Connection Tuning HOWTO is a document which explains how to tune network connection performance.

This enables you to get the maximum benefit out of your connection without lag and loss.

<<less
Download (MB)
Added: 2006-10-10 License: (FDL) GNU Free Documentation License Price:
1115 downloads
Tweakers HOWTOs Tamer 1.8

Tweakers HOWTOs Tamer 1.8


Tweakers HOWTOs Tamer is designed to be useful for people new to GNU/Linux by providing quick, easy access to the HOWTOs. more>>
Tweakers HOWTOs Tamer is designed to be useful for people new to GNU/Linux by providing quick, easy access to the HOWTO documents via menus. Access to specific points within documents is provided via filemarks. Tamer is built as a general purpose tool and can be modified to fit other plain-text tasks.

Search facilities include a powerful graphics-based extension for grep searches on files and directories as well as an internal search tool for searching files when loaded into a Tamer. Internet search access is provided via highlight-and-click access to web site searches via the users browser directly from within a document.

Additional features include a built-in editor with Line Loops editing and an interface to the GNU Projects Aspell spell check program. Complete help information and program feedback tools are provided within the Tamer and Tamer Tutor.

Daftnee Reader is a visual mode of the HOWTOs Tamer made for easy, comfortable reading on a computer screen. It has been designed with the Project Gutenberg files in mind but works well with other plain text files. Additional Daftnee Reader features include comprehensive sessions facilities, index listing of files by title in addition to file name, and Quick Directory lists and functions. All Tamer tools are readily available when in Daftnee Reader mode.

Qonqitzewautl is a built-in tool kit providing added functionality to plain text files without modifying the files. Small buttons called zewautl are overlaid on the files in the display window and provide access to other files, images and Internet URLs. When combined with grep search, goto zewautl provide an especially powerful tool for all GNU/Linux/Unix users, newbie to guru. Full Qonqitzewautl functionality is available in both Tamer and Daftnee Reader modes.

Tamer Tutor is a small, self-contained program external to the Tamer. It is designed to be a beginners guide to working with the Tamer and as an additional quick reference. It includes subjects for the primary features of the Tamer with multiple topics under each subject addressing configuration and use of the Tamer and tools.

An install-sh graphics-based installer is included with this version of the Tamer. It is a small program which guides the user through the simple install process. The installer is made with new users in mind and has step-by-step instructions with explanations throughout the installation process. The installer has an add user feature which makes it simple to install a Tamer for additional users.
<<less
Download (0.23MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1148 downloads
OpenLDAP-PostgreSQL Linux HOWTO 2.0

OpenLDAP-PostgreSQL Linux HOWTO 2.0


OpenLDAP-PostgreSQL Linux HOWTO is a HOWTO for implementing PostgreSQL as an SQL backend for OpenLDAP. more>>
OpenLDAP-PostgreSQL Linux HOWTO is a HOWTO for implementing PostgreSQL as an SQL backend for OpenLDAP.

This HOWTO doesnt talk about OpenLDAP, PostgreSQL or iODBC in this document I suppose that you know all that, I just provide my personnal installation of these apps.

So in this new version I will try to give all installation and configuration requirement to have OpenLDAP running with a PostgreSQL backend and a complete live example to let you see how is the work that should be done on a medium directory.

This is what I have in production state in my company with a master Bekerley db backend replicated to a remote LDAP directory using PostgreSQL as backend.
<<less
Download (MB)
Added: 2006-10-04 License: (FDL) GNU Free Documentation License Price:
1118 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5