There are three separate utilities for configuring Linux kernel and they are listed below: Command-line interface # make config. Figure 1.

Size: px
Start display at page:

Download "There are three separate utilities for configuring Linux kernel and they are listed below: Command-line interface # make config. Figure 1."

Transcription

1 There are three separate utilities for configuring Linux kernel and they are listed below: Command-line interface # make config Character-based menu interface # make menuconfig Figure 1 Figure 2 X-window based interface # make xconfig Even though these methods create the same configuration file, the characterbased menu and X-window are recommended because you can t reselect these done parameters with Command-line interface. And you have to abort the configuration process if you want to change items that have been selected.

2 Figure 3 By the way, using these interfaces you need to load different files or packages. In default, the Red Hat 6.0 doesn include kernel development during installation. So, please select kernel development package and X window system. After installation, you will be able to use Command-line and X-window interfaces. For Character-based menu interface, it requires the RPM package ncurses and ncurses-devel. The package ncurses is loaded by default. So, if you have problem on using this interface, please check if the ncurses-devel has been installed. Check source code and tools The source code of Red Hat 6.0 is packaged in RPM format and doesn t be installed by default. The package has name kernel-source i386.rpm. To install this package, please use following command on where it is located. # rpm Uvh kernel-source i386.rpm. Or, you can right-click on this package, and then select install item in pop-up menu. Note: If you select kernel development package during installation, it will be installed into directory \usr\src\linux automatically. The following steps will show you how to upgrade kernel with X-window based interface. In addition kernel source, the compilers should be available to rebuild the source code. To check for kernel tool programs on your system, use the following commands: # rpm q make (make utility) # rpm q egcs (C complier, gcc or egcs) If these files are not available on your system, please go to /RPMS subdirectory in Red Hat 6.0 distribution CD-ROM to load them

3 Upgrade Linux kernel 1. Login Linux system with root. 2. Start X-window system. 3. Check the kernel version with following command. # uname a 4. Download the latest kernel version from Red Hat web site In the article, the kernel version is and has file name linux tar.gz. 5. Delete Linux symbolic link, which is mirror folder of Linux in directory usr/src. 6. Switch to folder where newer kernel source code (inux tar.gz) locates, and Double-click on this file, and the content will be expanded. 7. Copy all files in linux folder to directory usr/src. 8. Right-Click on the linux folder, and select Properties at pop-up menu. Change the folder name to kernel to distinguish various kernel versions.(ref. Figure 4) Figure 4 9. Create symbolic link for kernel folder with linux. 10. After above steps, the usr/src folder should look like as Figure Launch a terminal emulator window, and switch to directory of source code by following command. # cd /usr/src/linux 10. Run the make command to launch Linux Kernel Configuration menu. # make xconfig 11. Review each field and select what items you want to include or remove. Pressing Help button, you can have detailed information about each parameter. After configuration, click on Save and Exit button to store

4 settings and go to comelier process.(ref. Figure 3) Figure Link source code and libraries # make dep 13. Remove unnecessary files and modules. #make clean 14. Compile Linux kernel # make bzimage 15. Compile external modules # make modules 16. Install complied modules # make modules_install Note: The step 12 to step 16 can be grouped as one command statement. # make dep; make clean; make bzimage; make modules; make modules_install Rebuilding Linux kernel could take from dozen minutes to several hours, depending on system s processor, capacity of memory, and other factors. 17. After above process, the complied kernel and modules are located on below directories. BzImage: /usr/src/arch/i386/boot System.map and vmlinux: /usr/src/linux External modules: /usr/src/linux/modules Installed modules: /lib/modules/2.2.12(kernel version) 18. Replace the older kernel with newer one. # cd /boot # rm System.map # rm vmlinuz # mv /usr/src/linux/system.map System.map

5 # mv /usr/src/linux/vmlinux vmlinux # mv /usr/src/linux/arch/i386/boot/bzimage vmlinuz 19. Modify boot image record in file /etc/lilo.conf. Change image statement to boot/vmlinuz. (Ref. Figure 6) Figure Execute lilo command, and then reboot Linux. 21. Run uname a command, you can see that the kernel has been upgraded to (Ref. Figure 7) Figure 7

RTLinux Installation Instructions

RTLinux Installation Instructions RTLinux Installation Instructions FSM Labs, Inc. http://www.fsmlabs.com April 20, 2001 Abstract This document is intended to guide the user through the installation steps needed to compile and install

More information

Linux Kernel Compilation

Linux Kernel Compilation Linux Kernel Compilation from source to running Muli Ben-Yehuda mulix@mulix.org IBM Haifa Research Labs Linux Kernel Development, TAU Linux Workshop, July 2003 p.1/9 introduction In this talk, I will talk

More information

Building Customized Linux Kernels A live demonstration. Mark Post August 17, 2004 Session # 9280

Building Customized Linux Kernels A live demonstration. Mark Post August 17, 2004 Session # 9280 Building Customized Linux Kernels A live demonstration Mark Post August 17, 2004 Session # 9280 Documentation The Linux Documentation Project http://www.tldp.org/ Look for the Kernel HOWTO http://www.tldp.org/howto/kernel-howto/

More information

Ex.no:2 Date: Kernel Configuration, Compilation and Installation

Ex.no:2 Date: Kernel Configuration, Compilation and Installation Ex.no:2 Date: Kernel Configuration, Compilation and Installation AIM: To download latest Linux kernel from the web configure the source, compile the kernel and install the kernel in client machine. Procedure:

More information

Release Notes for Cisco Aironet Client Utilities, Version 2.0.x for Linux

Release Notes for Cisco Aironet Client Utilities, Version 2.0.x for Linux Release s for Cisco Aironet Client Utilities, Version 2.0.x for Linux Contents This document contains the following sections: System Requirements, page 2 New and Changed Information, page 2 Installing

More information

Hardening The Linux Kernel With Grsecurity (Debian)

Hardening The Linux Kernel With Grsecurity (Debian) By EvilAngel Published: 2008-11-17 16:58 Hardening The Linux Kernel With Grsecurity (Debian) Security is based on three characteristics: prevention, protection and detection. Grsecurity is a patch for

More information

Firewalling for Free: An Enterprise Firewall Without the Enterprise Price. Name: Shawn Grimes Date: November 25, 2001 Course: CT-401

Firewalling for Free: An Enterprise Firewall Without the Enterprise Price. Name: Shawn Grimes Date: November 25, 2001 Course: CT-401 Firewalling for Free: An Enterprise Firewall Without the Enterprise Price Name: Shawn Grimes Date: November 25, 2001 Course: CT-401 Table of Contents Introduction..1 Nature of Bridging Firewalls 1 Physical

More information

How To Compile A Kernel - The Mandriva Way

How To Compile A Kernel - The Mandriva Way By Falko Timme Published: 2006-11-27 17:06 How To Compile A Kernel - The Mandriva Way Version 1.0 Author: Falko Timme Last edited 11/24/2006 Each distribution has some specific

More information

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University Hyunmin Yoon (fulcanelli86@gmail.com) 2 Linux development ENVIRONMENT 2 3 References ubuntu documentation Kernel/Compile https://help.ubuntu.com/community/kernel/compile 3 4 Tools $ software-properties-gtk

More information

Manual: How to Use GAA-API & IPSEC Integration

Manual: How to Use GAA-API & IPSEC Integration Manual: How to Use GAA-API & IPSEC Integration Li Zhou - 06/26/2002 PART ONE - INSTALLATION We should have two gateway machines installed. We could call them left node and right node. For our demo, left

More information

Building a Linux Kernel from Source

Building a Linux Kernel from Source 2018/07/12 01:15 (UTC) 1/10 Building a Linux Kernel from Source Building a Linux Kernel from Source This is how I build my 2.6 kernels. It will apply almost completely to the 3.x kernels in Slackware 14

More information

Project 0: Linux & Virtual Machine Dabbling

Project 0: Linux & Virtual Machine Dabbling Project 0: Linux & Virtual Machine Dabbling CS-3013 Operating Systems Hugh C. Lauer (Slides include materials from Slides include materials from Modern Operating Systems, 3 rd ed., by Andrew Tanenbaum

More information

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host

Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Installing Virtualbox Guest Additions Vboxadditions on CentOS 7, Fedora 19 / 20 and RHEL 6.5 / 5.10 on Windows host Author : admin If you decided to use Redhat based Linux distribution inside Virtualbox

More information

Kernel configuration The kernel configuration and build system is based on multiple Make files. All Makefiles inside the sub directories in kernel source interacts with the main Makefile which is present

More information

Project 0: Linux Dabbling

Project 0: Linux Dabbling Project 0 (0 points) Assigned: Friday, January 13, 2012 Due: Tuesday, January 17, 2012 CS-3013, Operating Systems C-Term 2012 Introduction Project 0: Linux Dabbling This project is intended to get you

More information

How to install EPSON Scanner on LINUX?

How to install EPSON Scanner on LINUX? How to install EPSON Scanner on LINUX? Page Number: 1 INTRODUCTION There are two possibilities to use and install EPSON Scanner on LINUX : Install EPSON Image Scan! For Linux Install other backends that

More information

GigaRAID (IT8212) ATA RAID Controller USER S MANUAL

GigaRAID (IT8212) ATA RAID Controller USER S MANUAL GigaRAID (IT8212) ATA RAID Controller USER S MANUAL 12ME-IT8212-005 Copyright Copyright by GIGA-BYTE TECHNOLOGY CO., LTD. ( GBT ) No part of this manual may be reproduced or transmitted in any from without

More information

Release Notes for Cisco Aironet Client Utilities, Version 2.1 for Linux

Release Notes for Cisco Aironet Client Utilities, Version 2.1 for Linux Release s for Cisco Aironet Client Utilities, Version 2.1 for Linux Contents This document contains the following sections: System Requirements, page 2 New and Changed Information, page 2 Installing ACU

More information

University of Colorado at Colorado Springs CS4500/ Fall 2018 Operating Systems Project 1 - System Calls and Processes

University of Colorado at Colorado Springs CS4500/ Fall 2018 Operating Systems Project 1 - System Calls and Processes University of Colorado at Colorado Springs CS4500/5500 - Fall 2018 Operating Systems Project 1 - System Calls and Processes Instructor: Yanyan Zhuang Total Points: 100 Out: 8/29/2018 Due: 11:59 pm, Friday,

More information

Linux Kernel Update - from scratch (almost) Platform: Archlinux, UEFI, GRUB2, and initramfs. Prof. Rossano Pablo Pinto

Linux Kernel Update - from scratch (almost) Platform: Archlinux, UEFI, GRUB2, and initramfs. Prof. Rossano Pablo Pinto Linux Kernel Update - from scratch (almost) Platform: Archlinux, UEFI, GRUB2, and initramfs FATEC Americana May/2017 - v0.9 Agenda Install development software Overview of the steps Archlinux 64 bits with

More information

7.3 Install on Linux and Initial Configurations

7.3 Install on Linux and Initial Configurations 7.3 Install on Linux and Initial Configurations This section describes how to install SoftEther VPN Server to a Linux operating system. This assumes that in the Linux operating system, no extra application

More information

APPLICATION. NOTE Date:

APPLICATION. NOTE Date: Product: Hurricane LX800 Title: Installing the Micrel KS884X Ethernet Driver using Linux Concerned Versions All General Information This paper discusses the implementation of the Micrel KS8842 ethernet

More information

CREATION OF A MINIMAL STAND ALONE RTAI SYSTEM ================================================

CREATION OF A MINIMAL STAND ALONE RTAI SYSTEM ================================================ Requirements :: --------------- CREATION OF A MINIMAL STAND ALONE RTAI SYSTEM ================================================ * I prepared my stand alone RTAI for the following hardware configurations.

More information

DSH-G300 Smart Hub. Manual

DSH-G300 Smart Hub. Manual DSH-G300 Smart Hub Manual Version 1.0 Dec 7 th, 2017 Page 1 Table of Contents 1. PRODUCT DESCRIPTION... 3 2. APPEARANCE... 3 3. INSTALLATIONS & CONFIGURATIONS... 4 Page 2 1. PRODUCT DESCRIPTION The DSH-G300

More information

Linux Reference Card - Command Summary

Linux Reference Card - Command Summary Linux Reference Card - Command Summary adduser adduser dsoneil This command will automatically add a new user to the system The Bash script can be found in /usr/sbin if it needs to be changes alias alias

More information

Kernel Korner IBM's Journaled Filesystem

Kernel Korner IBM's Journaled Filesystem Kernel Korner IBM's Journaled Filesystem To restart a telecom server quickly, you need a journaling filesystem. Here's how you can move to IBM's AIX-derived JFS. by Steve Best, David Gordon and Ibrahim

More information

Linux U-Boot and Kernel Users Guide

Linux U-Boot and Kernel Users Guide Linux U-Boot and Kernel Users Guide 1 Table of Contents Overview... 4 General Information... 4 Getting the U-Boot and Kernel Source Code (SDK)... 4 Preparing to Build... 4 Compiler... 5 Device Trees...

More information

Global-Net 2.0d Quick Installation

Global-Net 2.0d Quick Installation Global-Net 2.0d Quick Installation 1. Install Global-Net 1.1 Windows Copy Global-Net_2.0d.zip to your disk. (Ex. C:\) Extract the file and open the directory Global-Net_2.0d. Double-click launch.exe 1.2

More information

User Manual. SysKonnect SK-98xx V2.0 Gigabit Ethernet Adapter

User Manual. SysKonnect SK-98xx V2.0 Gigabit Ethernet Adapter User Manual SysKonnect SK-98xx V2.0 Gigabit Ethernet Adapter SysKonnect SK-98xx V2.0 Gigabit Ethernet Adapter User Manual (v2.10 17 February, 2003) Visit our web site: http://www.syskonnect.com SysKonnect

More information

Virtual Iron Software Release Notes

Virtual Iron Software Release Notes Virtual Iron Software Release Notes Virtual Iron Version 4.5 Copyright (c) 2009 Virtual Iron Software, Inc. 000010609R1 This information is the intellectual property of Virtual Iron Software, Inc. This

More information

EPSON JavaPOS ADK. Installation Guide

EPSON JavaPOS ADK. Installation Guide EPSON JavaPOS ADK Version 1.11.11 December 2009 Notes (1) Reproduction of any part of this documentation by any means is prohibited. (2) The contents of this documentation are subject to change without

More information

Linux kernel. Josep Jorba Esteve PID_

Linux kernel. Josep Jorba Esteve PID_ Josep Jorba Esteve PID_00148468 GNUFDL PID_00148468 Copyright 2009, FUOC. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

Installing javaprssrvr 4.0 on CentOS 6.2

Installing javaprssrvr 4.0 on CentOS 6.2 Part one of this information tutorial, we will walk through the process from a fresh installation of CentOS 6.2 and then install javaprssrv. javaprssrv is a java based APRS Server software for Amateur

More information

I experiment on the kernel of linux environment.

I experiment on the kernel of linux environment. I experiment on the kernel of linux 2.6.10 environment. RX checksum offload ==================================== The linux kernel can t calculate TCP and UDP checksum if skb->ip_summed is CHECKSUM_UNNECESSARY.

More information

Machine Type Model 7036-P16 LAN attached remote Asynchronous node (RAN) (FC xxxx)

Machine Type Model 7036-P16 LAN attached remote Asynchronous node (RAN) (FC xxxx) Machine Type Model 7036-P16 LAN attached remote Asynchronous node (RAN) (FC xxxx) The 7036-P16 is a 16-Port EIA-232 LAN Attached Remote Asynchronous Node (RAN) for use with IBM eserver p5 servers andibm

More information

Project 1: Syscalls for synchronization 1

Project 1: Syscalls for synchronization 1 Project 1: Syscalls for synchronization 1 Submit a gzipped tarball of your code to CourseWeb. Due: Monday, February 4, 2019 @11:59pm Late: Wednesday, February 6, 2019 @11:59pm with 10% reduction per late

More information

Intel Dialogic System Release 5.1 Feature Pack 1 and 2 for Linux Operating Systems on Intel Architecture Release Notes

Intel Dialogic System Release 5.1 Feature Pack 1 and 2 for Linux Operating Systems on Intel Architecture Release Notes Intel Dialogic System Release 5.1 Feature Pack 1 and 2 for Linux Operating Systems on Intel Architecture Release Notes Copyright 2004-2007 Intel Corporation 05-2071-025 INFORMATION IN THIS DOCUMENT IS

More information

MV V310 Android 4.0 Compilation

MV V310 Android 4.0 Compilation MV V310 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MVV310 Android Compilation.doc Date 2012. 4. 17 Satus Working Revision History Date Version Update Descriptions

More information

MV 4412 Android 4.0 Compilation

MV 4412 Android 4.0 Compilation MV 4412 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MV4412 Android Compilation.doc Date 2012. 7. 12 Satus Working Revision History Date Version Update Descriptions

More information

Freeing Disk Space on a Cryptshare Server. Applies to. Purpose. Solution. Freeing Disk Space on a Cryptshare Server. Situation.

Freeing Disk Space on a Cryptshare Server. Applies to. Purpose. Solution. Freeing Disk Space on a Cryptshare Server. Situation. Freeing Disk Space on a Cryptshare Server Freeing Disk Space on a Cryptshare Server Situation Table of Content related Articles The Cryptshare Server has insufficient disk space in order to operate correctly.

More information

A Kernel Compiling Adventure By Grant Nelson

A Kernel Compiling Adventure By Grant Nelson A Kernel Compiling Adventure By Grant Nelson Goals Virtual Ubuntu Compiling a New Kernel Complications Installing Ubuntu on WinXP Building a Block Scheduler Conclusion 2 Read entire document before performing

More information

FEATURES Journaling File Systems Advanced Linux file systems are bigger, faster, and more reliable by Steve Best

FEATURES Journaling File Systems Advanced Linux file systems are bigger, faster, and more reliable by Steve Best Linux Magazine (http://www.linux-mag.com) October 2002 Copyright Linux Magazine 2002 FEATURES Journaling File Systems Advanced Linux file systems are bigger, faster, and more reliable by Steve Best The

More information

POSTouch Open Source Driver (OSE) Installation Guide

POSTouch Open Source Driver (OSE) Installation Guide POSTouch Open Source Driver (OSE) Installation Guide 2012/5/4 1. Confirm right driver before start OSE driver version x-window version request V1.0.0.7 before v1.10 V1.0.0.8 v1.10 or above If you are running

More information

Idea6410 Ubuntu User Manual V 0.19

Idea6410 Ubuntu User Manual V 0.19 V 0.19 Version: Ubuntu-9.04_v0.19 Linux PC environment: Ubuntu-9.04 1 1. Install Cross-compile 1.1 Open Linux-ubuntu_v0.19\cross_compile\ folder, and copy Arm-none-lunux-gnueabi-arm-2008q3-72-for-linux.tar.bz2

More information

Google s Gmail webmail system

Google s Gmail webmail system : Using a mail account as a filesystem MORE THAN MAIL Why let a 2 Gigabyte email account go to waste? lets you use Gmail as a storage medium for a mountable filesystem. BY FABRIZIO CIACCHI Google s Gmail

More information

Instructions for setting up to compile and run OSGPS code under Linux

Instructions for setting up to compile and run OSGPS code under Linux Instructions for setting up to compile and run OSGPS code under Linux A. The latest and greatest OSGPS software is available on SorceForge. If you are not already monitoring this, you need to be. To set

More information

LiLo Crash Recovery. 1.0 Preparation Tips. 2.0 Quick Steps to recovery

LiLo Crash Recovery. 1.0 Preparation Tips. 2.0 Quick Steps to recovery LiLo Crash Recovery ***** *** * I have captured this information from someone else website which I didn t record where I copied it from or when I copied it. And I ve left it as it is. The credit should

More information

Installation Guide for FTMS and Node Manager

Installation Guide for FTMS and Node Manager Installation Guide for FTMS and Node Manager Table of Contents Windows... 2 Installing FTMS... 2 Launching FTMS... 2 Client... 3 Stopping FTMS Server... 3 Installing Standalone Node Manager... 3 Launching

More information

RTAI 3.8 ON Ubuntu(9.10)-Linux-kernel :

RTAI 3.8 ON Ubuntu(9.10)-Linux-kernel : RTAI 3.8 ON Ubuntu(9.10)-Linux-kernel : 2.6.31.8 1: Installing Rtai 3.8 Manuel Arturo Deza The following Tech Report / Guide is a compendium of instructions necessary for installing RTAI 3.8 on Ubuntu

More information

HOW TO CLONE A LARGE NUMBER OF PCs

HOW TO CLONE A LARGE NUMBER OF PCs HOW TO CLONE A LARGE NUMBER OF PCs András Keszthelyi (Budapest Tech Polytechnical Institution) kea@turul.banki.hu Computer sciences are taught in all kinds of schools from elementary grade to universities

More information

I experiment on the kernel of linux environment.

I experiment on the kernel of linux environment. I experiment on the kernel of linux 2.4.29 environment. RX checksum offload ==================================== The linux kernel can t calculate TCP and UDP checksum if skb->ip_summed is CHECKSUM_UNNECESSARY.

More information

MODULE 02. Installation

MODULE 02. Installation MODULE 02 Installation Identify the type of system, hardware, and network settings necessary for Linux installation Describe the need for pre-installation procedures Identify the different types of file

More information

Step by Step Guide. BRI Card Installation. (with Asterisk) Version 1.0

Step by Step Guide. BRI Card Installation. (with Asterisk) Version 1.0 Step by Step Guide BRI Card Installation (with Asterisk) Version 1.0 Table of Contents Hardware Setup... 1 Software Installation... 2 Installation of Pre-requisite packages... 2 Installation of Libpri

More information

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box

Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box Building a 64-bit CentOS 7 Workstation using Oracle Virtual Box jthomas Enterprises, 2016 Building a CentOS 7 Workstation using Oracle VirtualBox 1 Section 1 Before You Begin This section details the environment

More information

7.3 Linux?????????????

7.3 Linux????????????? 7.3 Linux???????????????????SoftEther VPN Server?? Linux????????????????????????????????????????Linux??????????????????????????????????????????????????????????????????????????????????????Linux????????????????????????????????????????????????????

More information

LINUXBUILD User's Manual

LINUXBUILD User's Manual . LEON Linux Linux for LEON processors 2017 User's Manual The most important thing we build is trust LINUXBUILD User's Manual Linux build environment for LEON systems 1 www.cobham.com/gaisler Table of

More information

9.3 Linux?????????????

9.3 Linux????????????? 9.3 Linux???????????????????VPN Bridge???Linux????????????????????????????????????????Linux?????????????????????????????????????????????????????????????????????????????????????? Linux????????????????????????????????????????????????????

More information

Install and Configure Enterprise Linux on the First Virtual Machine

Install and Configure Enterprise Linux on the First Virtual Machine Install and Configure Enterprise Linux on the First Virtual Machine Download Enterprise Linux from Oracle and unzip the files: Enterprise-R4-U4-i386-disc1.iso Enterprise-R4-U4-i386-disc2.iso Enterprise-R4-U4-i386-disc3.iso

More information

CREATING CUSTOM KERNELS WITH DEBIAN'S

CREATING CUSTOM KERNELS WITH DEBIAN'S CREATING CUSTOM KERNELS WITH DEBIAN'S KERNEL-PACKAGE SYSTEM Kevin McKinley Revision History Revision v0.95 15 April 2003 Revised by: kjm Made new section for "Checking Minimal

More information

Quick Start Guide to Installing Your SSL-Explorer Server using the Linux RPM Installer

Quick Start Guide to Installing Your SSL-Explorer Server using the Linux RPM Installer Quick Start Guide to Installing Your SSL-Explorer Server using the Linux RPM Installer This article explains how to quickly set up a basic installation of SSL-Explorer using the RPM installer for Linux

More information

MV V210 Android 4.0 Compilation

MV V210 Android 4.0 Compilation MV V210 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MVV210 Android Compilation.doc Date 2012. 5. 21 Satus Working Revision History Date Version Update Descriptions

More information

Installing the Patches for PSN

Installing the Patches for PSN Installing the Patches for PSN-2008-07-029 For SBR version 5.x, perform the following steps as root. Go to the installation directory. (This is usually /opt/funk/radius) # cd /opt/funk/radius # mv./radadmin.so

More information

Installing Dialogic Diva Software Driver as an Asterisk Channel. A Technical Overview

Installing Dialogic Diva Software Driver as an Asterisk Channel. A Technical Overview Installing Dialogic Diva Software Driver as an Asterisk Channel A Technical Overview Agenda History What is Asterisk? Who is Dialogic? Installation and Configuration Installing Dialogic Diva Software Driver

More information

Certification. System Initialization and Services

Certification. System Initialization and Services Certification System Initialization and Services UNIT 3 System Initialization and Services UNIT 3: Objectives Upon completion of this unit the student should be able to: Describe BIOS functions with respect

More information

The Linux Kernel HOWTO

The Linux Kernel HOWTO The Linux Kernel HOWTO Al Dev (Alavoor Vasudevan) < alavoor[at]yahoo.com > v6.7, 15 Aug 2003 This is a detailed guide to kernel configuration, compilation, upgrades, and troubleshooting for ix86 based

More information

Filesystem Hierarchy Operating systems I800 Edmund Laugasson

Filesystem Hierarchy Operating systems I800 Edmund Laugasson Filesystem Hierarchy Operating systems I800 Edmund Laugasson edmund.laugasson@itcollege.ee There has been used materials from Margus Ernits, Katrin Loodus when creating current slides. Current document

More information

Release Note MPI/XMP-Linux Support Package

Release Note MPI/XMP-Linux Support Package 33 South La Patera Lane Santa Barbara, CA 93117-3214 ph (805) 681-3300 fax (805) 681-3311 tech@motioneng.com Release Note MPI/XMP-Linux Support Package MPI/XMP-Linux Library Version: 20030620.1.1 Revised

More information

Users Manual. OP5 System 2.4. OP5 AB. Page 1 of 6

Users Manual. OP5 System 2.4. OP5 AB. Page 1 of 6 Users Manual OP5 System 2.4 OP5 AB. Page 1 of 6 Table of Contents INTRODUCTION...3 FUNDAMENTALS...3 SYSTEM...3 ACCESS...3 ACCOUNTS...3 CONFIGURATION...4 NETWORK...4 SHUTDOWN...4 SERVICES...5 UPGRADE /

More information

Installing MySQL Database On Linux

Installing MySQL Database On Linux Installing MySQL 5.0.15 Database On Linux MySQL is a really popular, Relational DataBase Management System (RDBMS), from the open source domain. It is used extensively by communities that wish to establish

More information

DSP/BIOS Link. Installation Guide Published on 20 th OCT Copyright 2009 Texas Instruments Incorporated.

DSP/BIOS Link. Installation Guide Published on 20 th OCT Copyright 2009 Texas Instruments Incorporated. DSP/BIOS Link Installation Guide 1.64.00.03 Published on 20 th OCT 2009 Copyright 2009 Texas Instruments Incorporated. 2 Platform Support Products Version 1.64.00.03 IMPORTANT NOTICE Texas Instruments

More information

Installation Manual for Sonnet RAID Controller

Installation Manual for Sonnet RAID Controller Installation Manual for Sonnet RAID Controller System Requirements - Mac Users The Sonnet RAID controller requires the following in order to operate in your system: One available PCI Express (PCIe) 1.1

More information

Linux VPN Configuration

Linux VPN Configuration Linux VPN Configuration Note. This information is based on Red Hat 9.0, it should be used as a guide only as other distributions may have similar installation methods. VPN Software Installation - PPP (Point-to-Point

More information

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration

Chapter 6. Boot time configuration. Chapter 6 Boot time configuration Chapter 6. Boot time configuration Chapter 6 Boot time configuration Last revised: 20/6/2004 Chapter 6 Outline In this chapter we will learn about: How the system boots How to configure the boot loaders

More information

Kernel Korner Exploring Dynamic Kernel Module Support (DKMS)

Kernel Korner Exploring Dynamic Kernel Module Support (DKMS) Kernel Korner Exploring Dynamic Kernel Module Support (DKMS) Manage modules separately from the kernel with a simplified delivery system, and make your package manager more useful. by Gary Lerhaupt Source

More information

The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING. VPN Configuration Guide for Unix/Linux

The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING. VPN Configuration Guide for Unix/Linux The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING VPN Configuration Guide for Unix/Linux Table of Contents VPN Configuration Guide for Unix/Linux... 1 Pulse Secure Client for Ubuntu

More information

Installation Oracle Applications R on OEL 5.2

Installation Oracle Applications R on OEL 5.2 Installation Oracle Applications R12.1.1 on OEL 5.2 Metalink Note Oracle E-Business Suite Release 12 Installation Guidelines [ID 405565.1] Oracle E-Business Suite Installation and Upgrade Notes Release

More information

Please choose the best answer. More than one answer might be true, but choose the one that is best.

Please choose the best answer. More than one answer might be true, but choose the one that is best. Introduction to Linux and Unix - endterm Please choose the best answer. More than one answer might be true, but choose the one that is best. SYSTEM STARTUP 1. A hard disk master boot record is located:

More information

Zephyr Kernel Installation & Setup Manual

Zephyr Kernel Installation & Setup Manual Zephyr Kernel Installation & Setup Manual Zephyr kernel is a small footprint Single address space OS, i.e, it combines application specific code with a custom kernel to create a monolithic image that gets

More information

Installing FreePBX 13 on CentOS 6

Installing FreePBX 13 on CentOS 6 Installing FreePBX 13 on CentOS 6 READ FIRST Manual installations of FreePBX is considered an EXPERTS ONLY exercise. This method of installation is enough to get CORE functionality of FreePBX. Non-commercial

More information

Industio CP-134U Series User s Manual

Industio CP-134U Series User s Manual Industio CP-134U Series User s Manual Industrial 4-Port RS-422/485 Serial Board for PCI Bus First Edition, January 2003 This manual is also available on CD-ROM and at Moxa s Website Moxa Technologies Co.,

More information

Embedded Systems Ch 3A Linux Development Environment

Embedded Systems Ch 3A Linux Development Environment Embedded Systems Ch 3A Linux Development Environment Byung Kook Kim Dept of EECS Korea Advanced Institute of Science and Technology Overview 1. Embedded Linux 2. Cross-Development System 3. Setting Linux

More information

Putting Linux on your motherboard

Putting Linux on your motherboard The project Putting Linux on your motherboard L inuxbios releases yet another part of your PC to Open Source software in this case, the BIOS chip itself. BIOS stands for Basic Input Output System, and

More information

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on April 7, 2009 Table of Contents 1 Overview...1

More information

Red Hat Linux 8 Unleashed. Copyright 2003 by Sams Publishing. International Standard Book Number: X. Warning and Disclaimer

Red Hat Linux 8 Unleashed. Copyright 2003 by Sams Publishing. International Standard Book Number: X. Warning and Disclaimer Red Hat Linux 8 Unleashed Copyright 2003 by Sams Publishing International Standard Book Number: 067232458X Warning and Disclaimer Every effort has been made to make this book as complete and as accurate

More information

Using UCS-Server Configuration Utility

Using UCS-Server Configuration Utility CHAPTER 3 This chapter contains the following sections: UCS-SCU Interface, page 3-1 Get System Updates, page 3-3 Configure a Server, page 3-5 RAID Configuration, page 3-5 OS Installation, page 3-8 Save

More information

HDC-3x Series Quick Installation Guide

HDC-3x Series Quick Installation Guide Video/audio capture card with HDMI input channel, 1920x1080@60p,and Hardware H.264 codec HDC-3x Series Quick Installation Guide Version 2.0 26 September, 2012 1. Package List HDC-304E package includes

More information

LINUX KERNEL PRABHAT RANJAN. (

LINUX KERNEL PRABHAT RANJAN. ( LINUX KERNEL PRABHAT RANJAN (email : prabhat_ranjan@daiict.ac.in) OUTLINE Different states of kernel Directory structure of kernel source Description of various directory proc file system Kernel Compilation

More information

************************************************************************************* README.PDF

************************************************************************************* README.PDF ************************************************************************************* README.PDF ************************************************************************************* This file presents

More information

These instructions describe the system requirements and process for installing and initial configuration of jbase on Linux operating systems.

These instructions describe the system requirements and process for installing and initial configuration of jbase on Linux operating systems. DOCUMENT SCOPE These instructions describe the system requirements and process for installing and initial configuration of jbase 5.5.1 on Linux operating systems. ABOUT THE JBASE DATABASE MANAGEMENT SYSTEM

More information

Industio CP-132U Series User s Manual

Industio CP-132U Series User s Manual Industio CP-132U Series User s Manual Industrial 2-Port RS-422/485 Serial Board for PCI Bus First Edition, January 2003 This manual is also available on CD-ROM and at Moxa s Website Moxa Technologies Co.,

More information

Drivers and the Kernel

Drivers and the Kernel 12 Drivers and the Kernel The kernel is the part of the system that s responsible for hiding the system s hardware underneath an abstract, high-level programming interface. It provides many of the facilities

More information

******************************** Introduction ***********************************************************

******************************** Introduction *********************************************************** ********************************************************************************************************** README.PDF **********************************************************************************************************

More information

MRCP. Installation Manual. Developer Guide. Powered by Universal Speech Solutions LLC

MRCP. Installation Manual. Developer Guide. Powered by Universal Speech Solutions LLC Powered by Universal Speech Solutions LLC MRCP Installation Manual Developer Guide Revision: 39 Last updated: August 28, 2017 Created by: Arsen Chaloyan Universal Speech Solutions LLC Overview 1 Table

More information

TBS DVB-S2 Receivers EUMETCast LINUX Setup Guide

TBS DVB-S2 Receivers EUMETCast LINUX Setup Guide TBS DVB-S2 Receivers EUMETCast LINUX Setup Guide Doc.No. : EUM/OPS/MAN/15/776259 Issue : v2 e-signed Date : 15 March 2016 WBS/DBS : EUMETSAT Eumetsat-Allee 1, D-64295 Darmstadt, Germany Tel: +49 6151 807-7

More information

Redhat Basic. Need. Your. What. Operation G U I D E. Technical Hand Note template version

Redhat Basic. Need. Your. What. Operation G U I D E. Technical Hand Note template version Redhat Basic Operation G U I D E What Need Your www.next-asia.com Readhat Basic Operation Guide, Prepared by Nazmul Khan Page 1 of 43 Redhat Basic Operation Guide RedHat Installation Guide... 2 Installation...

More information

Advantech General FAQ. How to change ubuntu specific kernel for quick cross test

Advantech General FAQ. How to change ubuntu specific kernel for quick cross test Advantech General FAQ How to change ubuntu specific kernel for quick cross test Applicable model list Model name version BIOS Version Description: All N/A N/A Products sometimes behave different with different

More information

Arch Linux Grub You Need To Load The Kernel First

Arch Linux Grub You Need To Load The Kernel First Arch Linux Grub You Need To Load The Kernel First Preface. A bootloader is the first software program that runs when a computer starts. It is responsible for loading and transferring control to the Linux

More information

Trixbox High-Availability with fonebridge Tutorial

Trixbox High-Availability with fonebridge Tutorial Trixbox High-Availability with fonebridge Tutorial REDFONE Communications Table of Contents i Table of Contents 1 Introduction 1.1 Overview... 1 1.1.1 Core components & requirements... 1 1.1.2 Operational

More information

Linux/Cygwin Practice Computer Architecture

Linux/Cygwin Practice Computer Architecture Linux/Cygwin Practice 2010 Computer Architecture Linux Login Use ssh client applications to connect (Port : 22) SSH Clients zterm ( http://www.brainz.co.kr/products/products4_2.php ) Putty ( http://kldp.net/frs/download.php/3411/hangulputty-0.58.h2.exe

More information

Monospace $ ls -latr pictures # less /var/log/messages $ # ipchains turboclusteradmin # mount /mnt/cdrom # cd /mnt/cdrom TLCS-install #./TLCS-install redhat turbolinux

More information