Call of Duty 4. Dedicated Linux Server Setup Guide. General Info

Size: px
Start display at page:

Download "Call of Duty 4. Dedicated Linux Server Setup Guide. General Info"

Transcription

1 Call of Duty 4 Guide content owned and written by Freenerd.net(this website is now down) Webpage by QueNNch. Dedicated Linux Server Setup Guide This guide is provided for informational purposes only While I believe this guide to be 90% complete, it still needs some fine tuning. I believe the mp-server.cfg can be improved from it's current state and will update it again when I feel my server config is ideal Contents General Info User and Directory Setup Install Dependencies Get the files Test Launch the Server Setup Server Configuration Firewalls and Ports Launch Server General Info I created this guide using Centos 6 64 bit (Fedora,Centos,RedHat Should all work, other distos with minor changes in dependency install should also work) Unless you really understand SELinux is should be disabled to prevent issues with the game server and Punkbuster In this guide replace <newuser> with the user name you want to run cod4 as Create your own free website today User and Directory Setup You don't want to run the server as root, so let's create a new user useradd -d /home/<newuser> -s /bin/bash <newuser> Set a new password for your user passwd <newuser> log out as root and login as your new user create a new directory for your game server /home/<newuser>/cod4

2 Just type in 'su -' and your root password to elevate to root for installs etc. The above commands create a new user with a home directory of /home/<newuser>. Running the game as a non privileged user from the users home directory will help keep your server secure. Install Dependencies yum -y install glibc.i686 libgcc.i686 libstdc++.i686 zlib.i686 screen.x86_64 Get the files Linux Server Files Get the COD4 linux server files from the link below COD4 Game files These files should already be on your computer. You'll want to copy over everything in the "Call of Duty 4" directory to your /home/<newuser>/cod4 directory Make sure your new user owns the cod4-linux-server directory and recursively all sub folders and files. chown <newuser>:<newuser> /home/<newuser>/ -R You can use 7zip to compress the game directory and then decompress after copy if you like The server file cod4_lnxded must be in the same directory as the localization.txt file PunkBuster You need to download the 32 bit punkbuster files from evenbalance.com. I could not get the 64bit ones to work on Centos6. View the UELA agreement./pbsetup.run -e If you agree to Y. Make sure you get confirmation that the game was added and not an error here../pbsetup.run -ag cod4 -ap /home/<newuser>/cod4/ Update the punkbuster files./pbsetup.run -u Test Launch the Server If you have errors with /lib/ld-linux or with libgcc libraries see the comments at the start of this guide and make sure you ran the command to install dependencies run the command./cod4_lnxded +set dedicated 2 +set sv_punkbuster 1 You should see the server start up. You can quite the server now, we just want to know that it loads at this point. Confirm that you see punkbuster load up Quit the server quit Setup Server Configuration

3 Create a server configuration file vim /home/<newuser>/cod4/main/mp-server.cfg Copy and paste this data into the file, modify it to your server needs set scr_hardcore 1 set sv_hostname "<servername>" set _Admin "<adminname>" set g_logsync "2" // 0=no log, 1=buffered, 2=continuous, 3=append set logfile "1" // 0 = NO log, 1 = log file enabled set g_log "games_mp.log" // Name of log file, default is games_mp.log set sv_log_damage "1" // Network options set net_ip "<serverip>" //our servers IP address set net_port "28960" // Set your port number sv_connecttimeout 90 // [0-n] (seconds) sv_timeout 240 // [0-n] (seconds) // Server Network Mode set dedicated "2" // 0 = Listen, 1 = LAN, 2 = Internet // Password Settings set rcon_password "<rconpass>" // RCON must supply pw to use set sv_privatepassword "" // Private slots, non-public slots // Ping set sv_minping "0" // MIN player ping on CONNECT, any lower and player isnt allowed to connect set sv_maxping "300" // MAX player ping on CONNECT, any higher and player isnt allowed to connect // Rate set sv_maxrate "25000" // Drop inactive players set sv_timeout "300" set sv_zombietime "1" set g_inactivity "0" set g_inactivityspectator "0" // AntiFlooding Settings set sv_floodprotect "1" set sv_reconnectlimit "3" // Anti Cheat Settings set sv_disableclientconsole "0" set cl_autocmd "0" set sv_cheats "0" set sv_pure "1" //set g_banips "" //set g_no_script_spam "1" // Temporary Ban duration, in seconds set sv_kickbantime "1" // In-game voice communication system set sv_voice "0" set sv_voicequality "7" set voice_deadchat "0" set voice_global "0" set voice_localecho "0" set winvoice_mic_mute "1" //Free for all deatmatch // scr_dm_scorelimit 2500 //[0-n]

4 scr_dm_timelimit 15 //[0-n] (minutes) set scr_dm_waverespawndelay 0 set scr_dm_playerrespawndelay 1 //domination // scr_dom_scorelimit 2500 //[0-n] scr_dom_timelimit 15 //[0-n] (minutes) //team deathmatch // scr_war_scorelimit 2500 // [0-n] scr_war_timelimit 15 //[0-n] (minutes) set scr_war_waverespawndelay 0 set scr_war_playerrespawndelay 1 //sabotage // scr_sab_scorelimit 8 // [1-n] (points) scr_sab_timelimit 5 //[0-n] (minutes) scr_sab_roundswitch 1 // [0-n] (after how many rounds) scr_sab_bombtimer 40 // [0-n] (seconds) scr_sab_planttime 10 // [0-n] (seconds) scr_sab_defusetime 10 //[0-n] (seconds) scr_sab_hotpotato 1 // [0-1] (shared bomb timer) //search and destroy // scr_sd_scorelimit 7 // [1-n] (points) scr_sd_timelimit 4 //[0-n] (minutes) scr_sd_roundswitch 5 // [0-n] (number of rounds before switching teams) scr_sd_bombtimer 30 // [0-n] (seconds) scr_sd_planttime 5 //[0-n] (seconds) scr_sd_defusetime 5 //[0-n] (seconds) scr_sd_multibomb 1 //[0-1] //headquarters // scr_koth_scorelimit 2500 scr_koth_timelimit 5 koth_autodestroytime 90 //[0-n] (seconds) koth_kothmode 1 //[0-1] (classic mode, non-classic) koth_spawntime 10 //[0-n] (seconds, hq spawn time) // Team Settings set scr_teambalance "1" set scr_team_respawntime "0" set scr_team_fftype 1//[0-3] (Disabled, Enabled, Reflect, Shared) set g_deadchat set g_allowvote 1 //execute additional config files exec maprotation.cfg Create your map rotation config file vim /home/<newuser>/cod4/main/maprotation.cfg Add the following to the file and save it set sv_maprotation "gametype sd map mp_broadcast gametype sd map mp_creek gametype sab map mp_backlot gametype sd map mp_bloc gametype sd map mp_bog gametype dm map mp_citystreets gametype sd map mp_convoy gametype sd map mp_countdown gametype sd map mp_crash gametype sab map mp_crossfire gametype sd map mp_farm gametype sd map mp_overgrown gametype sab map mp_pipeline gametype sd map mp_showdown gametype sd map mp_strike"

5 Firewalls and Ports Allow the following ports in iptables UDP UDP UDP (or whatever port your server is on if you changed from the default 28960) To allow these ports in add the following lines to your /etc/sysconfig/iptables file You must add them before the 'reject all' rule -A INPUT -m state --state NEW -m udp -p udp --dport j ACCEPT -A INPUT -m state --state NEW -m udp -p udp --dport j ACCEPT -A INPUT -m state --state NEW -m udp -p udp --dport j ACCEPT You will need to forward the ports through your firewall to your linux server if your server does not have a publicly routable IP address. The rule should flow like this from any source IP with source port of to your gameserver IP with a desination port of Make the rule for each port number, your firewalls manual should offer insight on how to do this Launch Server./cod4_lnxded +set dedicated 2 +set sv_punkbuster 1 +exec mp-server.cfg This should bring your server up If you can't see or connect to your server there is an issue with your iptables or forwarding the ports into your server. If correctly configured your server will show and you can connect to it.

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time.

This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. This tutorial will guide you how to setup and run your own minecraft server on a Linux CentOS 6 in no time. Running your own server lets you play together with your friends and family with your own set

More information

Relay Proxy User Guide

Relay Proxy User Guide Relay Proxy User Guide DBL Technology Company Limited www.dbltek.com sales@dbltek.com support@dbltek.com 2016/5/30 Relay Proxy Relay Proxy is a server software developed by DBL Technology. Its main purposed

More information

Parallels Plesk Control Panel 8.4 for Linux/Unix Counter-Strike Game Server Management Module Administrator's Guide

Parallels Plesk Control Panel 8.4 for Linux/Unix Counter-Strike Game Server Management Module Administrator's Guide Parallels Plesk Control Panel Parallels Plesk Control Panel 8.4 for Linux/Unix Counter-Strike Game Server Management Module Administrator's Guide Revision 1.0 Copyright Notice ISBN: N/A Parallels 660 SW

More information

HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS

HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS HOW TO SECURELY CONFIGURE A LINUX HOST TO RUN CONTAINERS How To Securely Configure a Linux Host to Run Containers To run containers securely, one must go through a multitude of steps to ensure that a)

More information

Medal of Honor: Reborn Unofficial MoH:AA 1.12 Patch

Medal of Honor: Reborn Unofficial MoH:AA 1.12 Patch Medal of Honor: Reborn Unofficial MoH:AA.2 Patch New Admin Commands Notes:. You can use these commands when server authorized you as an admin 2. Field that contains # means that it requires number 3. Field

More information

XLink Kai Raspberry Pi Beginners Tutorial

XLink Kai Raspberry Pi Beginners Tutorial XLink-Kai-Raspberry-Pi-Beginners-Tutorial.md XLink Kai Raspberry Pi Beginners Tutorial Hi! This tutorial will guide you through setting up XLink Kai on a Raspberry Pi to play multiplayer system link Xbox

More information

ESET SHARED LOCAL CACHE

ESET SHARED LOCAL CACHE ESET SHARED LOCAL CACHE User Guide Linux distribution: CentOS 6.x 64-bit Click here to download the most recent version of this document ESET SHARED LOCAL CACHE Copyright 2016 by ESET, spol. s r. o. ESET

More information

Kardia / Centrallix VM Appliance Quick Reference

Kardia / Centrallix VM Appliance Quick Reference Kardia / Centrallix VM Appliance Quick Reference Version 1.0 Beta 2 15-Mar-2011 (c) 2011 LightSys Technology Services, Inc. http://www.lightsys.org/ Redeeming Technology... For God's Kingdom. Overview...

More information

CIS 192 Linux Lab Exercise

CIS 192 Linux Lab Exercise CIS 192 Linux Lab Exercise Lab 8: Samba Spring 2009 Lab 8: Samba The purpose of this lab is to share files among Windows and Linux hosts on a common network. The goal is to browse directories on the Linux

More information

Polarion 18.2 Enterprise Setup

Polarion 18.2 Enterprise Setup SIEMENS Polarion 18.2 Enterprise Setup POL005 18.2 Contents Overview........................................................... 1-1 Terminology..........................................................

More information

Sharing files and printers with Microsoft Windows

Sharing files and printers with Microsoft Windows 1 Sharing files and printers with Microsoft Windows CIFS, Samba, SMB. Different words, same thing. Samba is mainly used as a share in a mixed environment, usually with Windows and Linux. Samba is also

More information

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Red Hat Enterprise Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software,

More information

PXC loves firewalls (and System Admins loves iptables) Written by Marco Tusa Monday, 18 June :00 - Last Updated Wednesday, 18 July :25

PXC loves firewalls (and System Admins loves iptables) Written by Marco Tusa Monday, 18 June :00 - Last Updated Wednesday, 18 July :25 Let them stay together. In the last YEARS, I have seen quite often that users, when installing a product such as PXC, instead of spending five minutes to understand what to do just run iptable s -F and

More information

Lockdown & support access guide

Lockdown & support access guide Lockdown & support access guide How to lock down your cloud, and enable the OnApp support team to help you with troubleshooting and ticket resolution. Document version 1.4 Document release date 21 st February

More information

Configuring Multiple Instances of Railo on Linux

Configuring Multiple Instances of Railo on Linux Configuring Multiple Instances of Railo on Linux The purpose of this guide is to explain how to set up multiple instances of Railo on a single instance of Linux. The instances can then be used for redundancy,

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Kardia / Centrallix VM Appliance Quick Reference

Kardia / Centrallix VM Appliance Quick Reference Kardia / Centrallix VM Appliance Quick Reference Version 1.0 16-Dec-2014 (c) 2011-2014 LightSys Technology Services, Inc. http://www.lightsys.org/ Redeeming Technology... For God's Kingdom. Overview...

More information

AG-AC160 series Software (Firmware) update procedure

AG-AC160 series Software (Firmware) update procedure AG-AC160 series Software (Firmware) update procedure 1. Version Information AG-AC160 series update procedure / January 2012 The version of system in this camera recorder is displayed in OTHER FUNCTIONS

More information

Insurgency: Sandstorm Server Admin Guide

Insurgency: Sandstorm Server Admin Guide Insurgency: Sandstorm Server Admin Guide Installation Prerequisites Windows SteamCMD Launching Travel Parameters Command Line Arguments Configuration Admin List Remote Access (Rcon) Enabling Access Commands

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

LAMP Stack with VirtualHosts On Centos 6.x

LAMP Stack with VirtualHosts On Centos 6.x LAMP Stack with VirtualHosts On Centos 6.x This article illustrates how to install the Apache Mysql PHP Stack on Centos 6.x. Additionally, with this configuration, you can serve Multiple Domains using

More information

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018

Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 Downloading and installing Db2 Developer Community Edition on Ubuntu Linux Roger E. Sanders Yujing Ke Published on October 24, 2018 This guide will help you download and install IBM Db2 software, Data

More information

In this tutorial we are going to be taking a look at the CentovaCast 3 panel running ShoutCast 1 and how to get started with using it.

In this tutorial we are going to be taking a look at the CentovaCast 3 panel running ShoutCast 1 and how to get started with using it. CentovaCast 3 - ShoutCast 1 Panel Overview In this tutorial we are going to be taking a look at the CentovaCast 3 panel running ShoutCast 1 and how to get started with using it. Getting The Details The

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide What this guide is This guide is aimed at anyone who wants to run a Reliance masternode on an Ubuntu 16.04 VPS. What this guide is not A tutorial for linux. What I mean by that,

More information

Using Rumpus On Private Networks

Using Rumpus On Private Networks Using Rumpus On Private Networks Contents How Port Forwarding Works 2 Configuring Your Router 3 Rumpus Setup 4 On Networks With A Dynamic IP Address 4 Testing And Troubleshooting Your Server 4 Maxum Development

More information

Secure Communications Over a Network

Secure Communications Over a Network Secure Communications Over a Network Course: MITS:5400G Proffessor: Dr. Xiaodong Lin By: Geoff Vaughan 100309160 March 20th 2012 Abstract The purpose of this experiment is to transmit an encrypted message

More information

To get started, all you need to do is follow the steps under Setting Up the PhonePad Server.

To get started, all you need to do is follow the steps under Setting Up the PhonePad Server. Welcome 1 1 Welcome 1.1 Introduction ServerManager is a part of the PhonePad system. Like the name suggests, it is used to manage the operation of the PhonePad Server (DBServer). ServerManager is used

More information

DEDICATED SERVER SOFTWARE DOCUMENTATION

DEDICATED SERVER SOFTWARE DOCUMENTATION DEDICATED SERVER SOFTWARE DOCUMENTATION Release 7.0.5.0 October 31th, 2016 Copyright 2016 GIANTS Software GmbH, All Rights Reserved. 1/10 RENT A DEDICATED SERVER Alternatively pre-installed servers can

More information

New Dropbox Users (don t have a Dropbox account set up with your Exeter account)

New Dropbox Users (don t have a Dropbox account set up with your Exeter  account) The setup process will determine if you already have a Dropbox account associated with an Exeter email address, and if so, you'll be given a choice to move those contents to your Phillips Exeter Dropbox

More information

Chromakinetics DMXweb Ver 1.3

Chromakinetics DMXweb Ver 1.3 Chromakinetics DMXweb Ver 1.3 StageConsole Webserver By Glenn Meader glenn@chromakinetics.com www.chromakinetics.com Jan 31, 2007, updated June 18,2011 DMXweb is a program that allows you to control stage

More information

OpenStack Havana All-in-One lab on VMware Workstation

OpenStack Havana All-in-One lab on VMware Workstation OpenStack Havana All-in-One lab on VMware Workstation With all of the popularity of OpenStack in general, and specifically with my other posts on deploying the Rackspace Private Cloud lab on VMware Workstation,

More information

SIM Bank Scheduler Server User Manual. (for Version )

SIM Bank Scheduler Server User Manual. (for Version ) SIM Bank Scheduler Server User Manual (for Version 1.01.1) Introduction to the SIM of Bank Scheduler Server: SIM Bank Scheduler Server ( SIM Server for short) is a type of server software launched by our

More information

DBConnect. Copyright 2008 Cybercom Software.

DBConnect. Copyright 2008 Cybercom Software. DBConnect 2 DBConnect 1 Welcome to DBConnect 1.1 Introduction Welcome to DBConnect. This utility is a part of the PhonePad system, and is used to tell PhonePad how and where to connect to your PhonePad

More information

Chromakinetics MIDIweb Ver 1.0

Chromakinetics MIDIweb Ver 1.0 Chromakinetics MIDIweb Ver 1.0 MIDI Webserver By Glenn Meader glenn@chromakinetics.com www.chromakinetics.com Aug 10, 2008 MIDIweb is a program that allows you to control MIDI devices remotely via a web

More information

Paranoid Penguin Running Network Services under User-Mode Linux, Part III Mick Bauer Abstract Fine-tune and firewall your UML guest systems. In the last two Paranoid Penguin columns, I walked you through

More information

Remote Process Explorer

Remote Process Explorer Remote Process Explorer Frequently Asked Questions LizardSystems Table of Contents Introduction 3 What is Remote Process Explorer? 3 Before Installing 3 How can I download Remote Process Explorer? 3 Will

More information

Lab #4 TECH 4281 Spring 2015

Lab #4 TECH 4281 Spring 2015 Lab #4 TECH 4281 Spring 2015 If you have not done so yet, install GNS3 from http://www.gns3.com/. When starting GNS3, please name the project Lab3_Yourname. For this lab, we will be using the Cisco.bin

More information

Using the SSM Administration Console

Using the SSM Administration Console CHAPTER 6 Your user role controls whether you can access the SSM Administration Console. The following information is included in this section: SSM Administration Console Overview, page 6-1 Launching the

More information

BFH PC Server Administration

BFH PC Server Administration BFH PC Server Administration This is the server admin manual for BFH PC Server R2. Contents Game server operation... 2 Files which may be accessible to the server admin... 2 Remote administration interface...

More information

I DO NOT OWN ITUNES OR ANYTHING IN THE THUMBNAIL THIS IS ALL OWNED BY APPLE.

I DO NOT OWN ITUNES OR ANYTHING IN THE THUMBNAIL THIS IS ALL OWNED BY APPLE. How Can I Add Music To My Ipod Without Deleting Everything Learn how to manually manage music and movies if you want to quickly sync a Choose the content that you want to add to your device from your itunes

More information

Automated Installation Guide for CentOS (PHP 7.x)

Automated Installation Guide for CentOS (PHP 7.x) Automated Installation Guide for CentOS (PHP 7.x) *Note: This script will not work on shared hosting, only works on CentOS dedicated server only. Prerequisites: Hardware: RAM: minimum 2 GB Processor: Core2duo

More information

Jackson State University Department of Computer Science CSC / Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan

Jackson State University Department of Computer Science CSC / Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Jackson State University Department of Computer Science CSC 437-01/539-01 Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Lab Project # 2: Running Secure Shell (SSH) Server in a Virtual

More information

Introduction to Firewalls using IPTables

Introduction to Firewalls using IPTables Introduction to Firewalls using IPTables The goal of this lab is to implement a firewall solution using IPTables, and to write and to customize new rules to achieve security. You will need to turn in your

More information

Endian Firewall validation - REP

Endian Firewall validation - REP Print date Pages 8 Endian Firewall validation - REP Doc. Ref: REP-(Endian Firewall validation) Revision: 8 Written By Reviewed By Approved By OpenOfficeContentTransformer-source-33508.odt Table of Contents

More information

XELOS 7 Quick Installation

XELOS 7 Quick Installation XELOS 7 Quick Installation Overview XELOS is a professional Enterprise 2.0 software that is used by companies mainly as an intranet solution to improve collaboration within teams and in the company. The

More information

FastTracker. Version 1.0 QuickStart Guide

FastTracker. Version 1.0 QuickStart Guide FastTracker Version 1.0 QuickStart Guide 1 Overview The Facilis FastTracker is a server and client application for cataloging, searching and viewing any media type within the Facilis TerraBlock Shared

More information

Additional RMS Functionality

Additional RMS Functionality Geographical Identifier Management, page 1 Edge-Node Discovery Provisioning, page 5 Security Gateway Geographical Redundancy, page 6 IMSI Blacklisting, page 6 Integrating RMS with Prime Central Server,

More information

Coaches & Managers: Introduction

Coaches & Managers: Introduction 3/9/2018 Coaches Guide LeagueAthletics.com Documentation Choose Coaches & Managers: Introduction As coaches, managers, and team contacts, you are a vital part of your organization. The documentation below

More information

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 Introduction The expectation is that you will either have a virtual machine to use, or that you will revert any changes made to your machine

More information

Lab X2: PPP Connections (Extra Credit)

Lab X2: PPP Connections (Extra Credit) Lab X2: PPP Connections (Extra Credit) The purpose of this lab is to connect a standalone computer to a LAN using a serial connection with PPP. Whereas the serial connection is usually established with

More information

Audio Signage Solution

Audio Signage Solution Audio Signage Solution Automatic broadcasting and playback of Audio Signage channels User Manual v1.0 Components: Barix Instreamer(s) Audio Signage app ios Audio Signage app Android ASIS Firmware on Exstreamer

More information

Check the FQDN of your server by executing following two commands in the terminal.

Check the FQDN of your server by executing following two commands in the terminal. LDAP or Lightweight Directory Access Protocol, is a protocol designed to manage and access related information in a centralized, hierarchical file and directory structure. An LDAP server is a non-relational

More information

Building Block Installation - Admins

Building Block Installation - Admins Building Block Installation - Admins Overview To use your Blackboard Server with Panopto, you first need to install the Panopto Building Block on your Blackboard server. You then need to add Blackboard

More information

Connect using Putty to a Linux Server

Connect using Putty to a Linux Server Connect using Putty to a Linux Server PuTTY is an open source SSH client for Windows, and allows you to securely connect to remote servers from your Windows machine. Configuration SSH Key Authentication

More information

3M Molecular Detection System Software Upgrade/Installation Instructions

3M Molecular Detection System Software Upgrade/Installation Instructions User Manual Supplement Number: TB.342837.03 Effective Date: March 2018 Supersedes: TB.342837.02 Technology Platform: 3M Molecular Detection System Originating Location: St. Paul, MN 3M Molecular Detection

More information

UNICORE UFTP server UNICORE UFTP SERVER. UNICORE Team

UNICORE UFTP server UNICORE UFTP SERVER. UNICORE Team UNICORE UFTP server UNICORE UFTP SERVER UNICORE Team Document Version: 1.0.0 Component Version: 2.0.0 Date: 10 12 2013 UNICORE UFTP server Contents 1 UNICORE UFTP 1 2 Installation and use 2 2.1 Prerequisites....................................

More information

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance What is OVH Public Cloud Public Cloud Instances provides a choice of two types of virtual machines: the RAM instances are

More information

Running Network Services under User-Mode

Running Network Services under User-Mode Running Network Services under User-Mode Linux, Part I Mick Bauer Abstract Leverage the Linux kernel's virtualization features to isolate network dæmons. In my May 2006 Paranoid Penguin column, I expounded

More information

Commands are in black

Commands are in black Starting From the Shell Prompt (Terminal) Commands are in black / +--------+---------+-------+---------+---------+------ +------ +------ +------ +------ +------ +-- Bin boot dev etc home media sbin bin

More information

This material is based on work supported by the National Science Foundation under Grant No

This material is based on work supported by the National Science Foundation under Grant No Source: http://en.wikipedia.org/wiki/file:firewall.png This material is based on work supported by the National Science Foundation under Grant No. 0802551 Any opinions, findings, and conclusions or recommendations

More information

INSTALL GUIDE AMC DIRECT DEBIT FOR MICROSOFT DYNAMICS AX 7. AMC Consult A/S Published: November 16

INSTALL GUIDE AMC DIRECT DEBIT FOR MICROSOFT DYNAMICS AX 7. AMC Consult A/S Published: November 16 INSTALL GUIDE AMC DIRECT DEBIT FOR MICROSOFT DYNAMICS AX 7 AMC Consult A/S Published: November 16 Contents 1 Introduction... 3 2 Distribution... 4 3 Installation... 5 3.1 Prerequisites... 5 3.2 Installing

More information

In this tutorial we are going to take a look at the CentovaCast 3 control panel running ShoutCast 2 and explain some of the basic features.

In this tutorial we are going to take a look at the CentovaCast 3 control panel running ShoutCast 2 and explain some of the basic features. CentovaCast 3 - Shoutcast2 Overview In this tutorial we are going to take a look at the CentovaCast 3 control panel running ShoutCast 2 and explain some of the basic features. Details Once you purchase

More information

Chapter Twenty-six (f): Open VPN - RoadWarrior for System Administrator s

Chapter Twenty-six (f): Open VPN - RoadWarrior for System Administrator s Chapter Twenty-six (f): Open VPN - RoadWarrior for System Administrator s Summary of Chapter: How to set-up an Open VPN Roadwarrior profile with a Vista machine. What you need: Admin user account and valid

More information

Turn On Windows Firewall Manually Windows 7 Remote Desktop Connection

Turn On Windows Firewall Manually Windows 7 Remote Desktop Connection Turn On Windows Firewall Manually Windows 7 Remote Desktop Connection Learn how to use advanced settings for the Windows 7 firewall to create exceptions for specific services. In the right 7 firewall.

More information

Deployment Guide. 3.1 For Windows For Linux Docker image Windows Installation Installation...

Deployment Guide. 3.1 For Windows For Linux Docker image Windows Installation Installation... TABLE OF CONTENTS 1 About Guide...1 2 System Requirements...2 3 Package...3 3.1 For Windows... 3 3.2 For Linux... 3 3.3 Docker image... 4 4 Windows Installation...5 4.1 Installation... 5 4.1.1 Install

More information

Windows. Not just for houses

Windows. Not just for houses Windows Not just for houses Windows 110 Windows Server Essentially a jacked up windows 8 box Still GUI based Still makes no sense No start menu :( (Install classic shell)... trust me... Windows Server

More information

Installation & Basic Configuration

Installation & Basic Configuration Installation & Basic Configuration This document is a result of work by the perfsonar Project (http://www.perfsonar.net) and is licensed under CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/).

More information

1. Which network design consideration would be more important to a large corporation than to a small business?

1. Which network design consideration would be more important to a large corporation than to a small business? CCNA 1 Chapter 11 v5.0 Exam Answers 2015 (100%) 1. Which network design consideration would be more important to a large corporation than to a small business? Internet router firewall low port density

More information

Manual Shell Script Linux If Not Exist Directory Does

Manual Shell Script Linux If Not Exist Directory Does Manual Shell Script Linux If Not Exist Directory Does Bash can be configured to be POSIX-confor mant by default. and then a much longer manual available using info (usually they refer to the info page

More information

Additional RMS Functionality

Additional RMS Functionality INSEE Management, page 1 Edge-Node Discovery Provisioning, page 5 Security Gateway Geographical Redundancy, page 5 IMSI Blacklisting, page 6 Integrating RMS and Prime Central Active with Disaster Recovery

More information

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA2592 Applied Data Science and Big Data Analytics Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

Advanced option settings on the command line. Set the interface and ports for the OpenVPN daemons

Advanced option settings on the command line. Set the interface and ports for the OpenVPN daemons Advanced option settings on the command line docs.openvpn.net/command-line/advanced-option-settings-on-the-command-line Set the interface and ports for the OpenVPN daemons In the Admin UI under Server

More information

Ftp Command Line Manual Windows Example Port 22

Ftp Command Line Manual Windows Example Port 22 Ftp Command Line Manual Windows Example Port 22 Session, Logging, Console/scripting mode, Operations, Configuration enables passive ( =on ) or active ( =off ) transfer mode (FTP protocol only). winscp.exe

More information

When you first launch CrushFTP you may be notified that port 21 is locked. You will be prompted to fix this.

When you first launch CrushFTP you may be notified that port 21 is locked. You will be prompted to fix this. This is a quick start guide. Its intent is to help you get up and running with as little configuration as possible. This walk through should take less than 10 minutes until you are able to login with your

More information

NetBrain Technologies Inc. NetBrain Consultant Edition. Quick Start Guide

NetBrain Technologies Inc. NetBrain Consultant Edition. Quick Start Guide NetBrain Technologies Inc. NetBrain Consultant Edition Quick Start Guide Content 1. Install NetBrain Workstation CE System... 3 1.1 Install and Activate NetBrain Gateway Server... 5 1.2 Install Workstation...

More information

Community Enterprise Operating System (CentOS 7) Courses

Community Enterprise Operating System (CentOS 7) Courses Community Enterprise Operating System (CentOS 7) Courses CentOS 7 Administration I Core Skills (5 days) Advanced Linux Shell Scripting Shell Scripting (bash,ksh93) and awk Programming (3 days) Advanced

More information

Licensing eggplant Functional

Licensing eggplant Functional Published on Documentation (http://docs.testplant.com) Home > Getting Started > Licensing Licensing Licensing eggplant Functional To run eggplant Functional on your machine, you must license it. If you

More information

Polarion 18 Enterprise Setup

Polarion 18 Enterprise Setup SIEMENS Polarion 18 Enterprise Setup POL005 18 Contents Terminology......................................................... 1-1 Overview........................................................... 2-1

More information

DEPLOY A DNS SERVER IN A SECURE WAY

DEPLOY A DNS SERVER IN A SECURE WAY DEPLOY A DNS SERVER IN A SECURE WAY BIND (Berkeley Internet Name Domain) is one of the more widely used DNS servers. This article guides readers on how to deploy a BIND DNS server in a secure way by implementing

More information

ISCSI CAKE (CCDISK) USER MANUAL

ISCSI CAKE (CCDISK) USER MANUAL ISCSI CAKE (CCDISK) USER MANUAL Youngzsoft 2008 CONTENTS Introduction... 3 Server Installation... 4 Login... 4 Main Interface... 5 Add iscsi Disk... 6 Advanced Settings... 8 Client Installation... 9 Super

More information

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus Linux system administrator-i Unit 1: Get Started with the GNOME Graphical Desktop Objective: Get started with GNOME and edit text files with gedit Unit 2: Manage Files Graphically with Nautilus Objective:

More information

Cluster Computing Spring 2004 Paul A. Farrell

Cluster Computing Spring 2004 Paul A. Farrell Configuring & Tuning Cluster Networks Node connectivity Node visibility Networking Services Security Performance Enhancement Internet Protocol Stack and Parameters NIC/OS Driver Maximum Amount of Data

More information

Lab 2A> ADDING USERS in Linux

Lab 2A> ADDING USERS in Linux Lab 2A> ADDING USERS in Linux Objective In this lab, student will learn how to create user accounts using the Linux operating system. Scenario The XYZ Company has just installed a server running Linux.

More information

Troubleshooting AB Tutor Control Connection problems

Troubleshooting AB Tutor Control Connection problems Troubleshooting AB Tutor Control Connection problems Contents Troubleshooting AB Tutor Control Connection problems... 1 Overview... 2 Common Problems... 2 Failed to find a computer during a Scan ( Find

More information

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

More Raspian. An editor Configuration files Shell scripts Shell variables System admin More Raspian An editor Configuration files Shell scripts Shell variables System admin Nano, a simple editor Nano does not require the mouse. You must use your keyboard to move around the file and make

More information

ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile

ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile ChiliProject - Bug # 529: builder is not part of the bundle. Add it to Gemfile Status: Closed Priority: Normal Author: Enno Grà per Category: Created: 2011-07-17 Assignee: Updated: 2012-06-23 Due date:

More information

This document is intended for use by Nagios Administrators that want to use Slack for notifications.

This document is intended for use by Nagios Administrators that want to use Slack for notifications. Purpose This document describes how integrate the Slack messaging platform with. This integration will allow to send notifications to Slack channels, enabling teams to see the health of their devices monitored

More information

Tungsten Dashboard for Clustering. Eric M. Stone, COO

Tungsten Dashboard for Clustering. Eric M. Stone, COO Tungsten Dashboard for Clustering Eric M. Stone, COO In this training session 1. Tungsten Dashboard Welcome 2. Tungsten Dashboard Overview 3. Tungsten Dashboard Prerequisites 4. Tungsten Dashboard Security

More information

MIS Week 10. Operating System Security. Unix/Linux basics

MIS Week 10. Operating System Security. Unix/Linux basics MIS 5170 Operating System Security Week 10 Unix/Linux basics Tonight s Plan 2 Questions from Last Week Review on-line posts In The News Download Kali Install Kali Unix/Linux Basics Scripting Appropriate

More information

Personal Videoconferencing

Personal Videoconferencing Personal Setting Up Your Profile and Signing Up Duration: 4½ min. V 3.0 1 Three Simple Steps 1) Change temporary password Log in at tm.otn.ca & change password 2) Set up your Portal profile i. Verify contact

More information

Configuring the Eight-Port FXS RJ-21 Module

Configuring the Eight-Port FXS RJ-21 Module CHAPTER 7 Configuring the Eight-Port FXS RJ-21 Module The Eight-port RJ-21 FXS Module is a high-density analog phone and fax relay interface. By providing service to analog phones and fax machines, the

More information

Parallels Remote Application Server

Parallels Remote Application Server Parallels Remote Application Server Parallels Client for Windows User's Guide v16.1 Parallels International GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 672 20 30 www.parallels.com Copyright

More information

Nintendo Wifi Connection Error These Settings Are Invalid

Nintendo Wifi Connection Error These Settings Are Invalid Nintendo Wifi Connection Error These Settings Are Invalid A Nintendo DS (and possibly Wii) server emulator. installation of Linux Troubleshooting Troubleshooting (These settings are invalid) Troubleshooting

More information

How To Disable Password Complexity In Windows 2008 R2 Domain Controller

How To Disable Password Complexity In Windows 2008 R2 Domain Controller How To Disable Password Complexity In Windows 2008 R2 Domain Controller The question is: did you review password policy settings and considered password requirements for your environment? This policy may

More information

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Disclaimer: I haven t gone through RHCSA/RHCE EL 7. I am preparing for upgrade of my RHCE certificate from RHCE EL4 to RHCE EL7. I don

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications . phpmyadmin is a web-based application used to manage a MySQL database. It is free and open-source software. We have modified phpmyadmin so that it functions without errors on a shared hosting platform.

More information

Embedded Engine in Firebird 3

Embedded Engine in Firebird 3 Embedded Engine in Firebird 3 by Helen Borrie Copyright IBPhoenix Publications Revised May 2018 in collaboration with Vlad Khorsun Since Firebird 3 was released, users have sometimes been confused about

More information

2016 OPSWAT, Inc. All rights reserved. OPSWAT, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc.All other trademarks, trade names,

2016 OPSWAT, Inc. All rights reserved. OPSWAT, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc.All other trademarks, trade names, 2016 OPSWAT, Inc. All rights reserved. OPSWAT, MetadefenderTM and the OPSWAT logo are trademarks of OPSWAT, Inc.All other trademarks, trade names, service marks, service names, and images mentioned and/or

More information

INTRODUCTION TO LINUX

INTRODUCTION TO LINUX INTRODUCTION TO LINUX REALLY SHORT HISTORY Before GNU/Linux there were DOS, MAC and UNIX. All systems were proprietary. The GNU project started in the early 80s by Richard Stallman Goal to make a free

More information

Privacy and Security Features. Kroll Windows

Privacy and Security Features. Kroll Windows Privacy and Security Features Kroll Windows January 2019 Table of Contents Privacy/Security Features in Kroll...2 User Groups...2 User Group Permissions...3 Associating/Disassociating a Pharmacist...4

More information