= Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Session-(1.4) Preparing the Workstation for the Lab / OS Installation

Size: px
Start display at page:

Download "= Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Session-(1.4) Preparing the Workstation for the Lab / OS Installation"

Transcription

1 = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Session-(1.4) Preparing the Workstation for the Lab / OS Installation (1.4.1) Hardware Recommendation. (1.4.2) Operating System Installation. (1.4.3) First login & connecting the host to Internet. (1.4.4) Restore classic network configuration option. (1.4.5) Using local apt-cache-server & modify apt-mirror. (1.4.6) Tuning some system parameters & configure ssh. related video link -:- =1= Documentation By, Rezaul Karim (rkarim@redskybd.com)

2 = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = (1.4.1) = Hardware Recommendation for Lab Laptop/Workstation with, Intel Core-i3/i5/i7 processor, 4GB RAM, 200GB free HDD partition for installing 64-bit Linux based on Ubuntu note: if you do not have 200GB free HDD partition, please arrange/manage it, otherwise you will not be able to do the lab-works properly. (1.4.2) = Operating System Installation Recommended Operating System for the lab; (a) Ubuntu Desktop Mate Edition. (Our lab/documentation is based on it.) note: for production environment you are strongly recommended to use Ubuntu Server version. Now, you have to install the operating system using the following partition-scheme. We are guessing that, - Most of you already have Linux installation experience. - You will install OS by dual-booting with pre-installed Windows operating system. - You got the Ubuntu Live ISO USB-stick at your hand. (if not, collect it). - You have 200GB free HDD partition & 4GB RAM in your laptop. Boot your laptop from that USB-stick and proceed to installation. If you have Windows7/8/10 pre-installed laptops, then you have to create the following partitions; 1. / # 36 GB 2. swap # 8 GB 3 additional partition # 1 50 GB 4 additional partition # 2 50 GB 5 additional partition # 3 50 GB note: please take extra caution to follow the partition-scheme, take help from us as you need. =2= Documentation By, Rezaul Karim (rkarim@redskybd.com)

3 = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = If you want to do a clean install and your BIOS is UEFI compatible, then you have to create the following partitions; 0. esp # 200 MB 1. / # 36 GB 2. swap # 8 GB 3 additional partition # 1 50 GB 4 additional partition # 2 50 GB 5 additional partition # 3 50 GB While installation, you have to create a user for the lab-works, you have to create the user-name as abc with password _pw also set hostname as groupx-nodey Complete the installation, remove USB-stick & reboot you laptop. note: to follow the partition scheme is very important to practice the lab-works. (1.4.3) = First login & connecting the host to Internet. After Reboot, Login; and you have to do the followings, -Goto power option and modify all time related settings Never /maximum Value. -Disable screen saver. (We will uninstall it later). note: please keep in mind that, from now on, whatever commands we will apply in the terminal, we will do it as root (#). to become the root you have to apply the command sudo su after opening the terminal application. When you will apply sudo su it will ask for password; apply the password that you have provided while installation. Open Terminal and apply the following commands; sudo su /etc/init.d/network-manager stop apt remove -y --purge network-manager* mate-screensaver* systemctl stop NetworkManager.service systemctl disable NetworkManager.service Now find your network interface, ip addr networkctl Suppose, your interface name is enp1s0, apply following commands to set the ip address temporarily, please collect your node ip address from instructor. ifconfig enp1s0 0 ifconfig enp1s /24 up ip route add default via ip link set enp1s0 up echo 'nameserver '> /etc/resolv.conf networkctl status systemd-resolve --status =3= Documentation By, Rezaul Karim (rkarim@redskybd.com)

4 = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Now make sure your are connected to the internet, check by the following command, ping ping google.com (1.4.4) = Restore classic network configuration option Install packages which will restore classic network options, apt update apt install -y ifupdown vim net-tools resolvconf In Ubuntu classic network configuration option (ifupdown) is disabled with a new network configuration tool named netplan. But netplan lacks some features like post-up script, which is require to start some service after network is up. For our lab-setup we need that feature (post-up), To restore the classic network option (disable netplan and install/configure ifupdown), we have to complete the following steps. vim /etc/default/grub Change the line -into- GRUB_CMDLINE_LINUX="netcfg/do_not_use_netplan=true" sudo update-grub Configure the ip address in the classic way; vim /etc/network/interfaces Add the following lines; auto enp1s0 iface enp1s0 inet static address netmask gateway Use our local caching dns server; echo 'nameserver '> /etc/resolvconf/resolv.conf.d/head reboot =4= Documentation By, Rezaul Karim (rkarim@redskybd.com)

5 = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = After reboot check that your ip configuration is working properly and your are connected to the internet. (1.4.5) = Using local apt-cache-server & modify apt-mirror Replace the default apt-mirror with Bangladeshi mirror site (like mirror.amberit.com.bd); vim /etc/apt/sources.list Apply the following vim command in ESC (By pressing esc key first) mode; :%s/archive.ubuntu.com/mirror.amberit.com.bd/g Or by the the following sed command; sed -i 's/us.archive.ubuntu.com/mirror.amberit.com.bd/g' /etc/apt/sources.list Now activate local apt-cache-server for faster package installation; echo 'Acquire::http { Proxy " };' \ > /etc/apt/apt.conf.d/50apt-cacher apt update =5= Documentation By, Rezaul Karim (rkarim@redskybd.com)

6 = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = (1.4.6) = Tuning some system parameters & configure ssh. Make some other important changes/tuning, which we will require for the practice; In the following line replace X with group number given to you. echo 'groupx-node1' > /etc/hostname Some system tuning; echo 'fs.file-max = ' >> /etc/sysctl.conf echo 'root soft nofile ' >> /etc/security/limits.conf echo 'root hard nofile ' >> /etc/security/limits.conf echo 'performance' > /sys/devices/system/cpu/cpufreq/policy0/scaling_governor In Ubuntu /etc/rc.local file is depreciated which was used to execute start-up program/services, So now here we have to make use of post-up script to perform the same task. In the network configuration file add the following line as follows; vim /etc/network/interfaces auto enp1s0 iface enp1s0 inet static address netmask gateway post-up /etc/network/if-up.d/startup-script.sh Create the the post-up script; vim /etc/network/if-up.d/startup-script.sh And add the following lines; #!/bin/bash echo 'performance' > /sys/devices/system/cpu/cpufreq/policy0/scaling_governor echo 'nameserver '> /etc/resolv.conf Make the script executable; chmod 755 /etc/network/if-up.d/startup-script.sh =6= Documentation By, Rezaul Karim (rkarim@redskybd.com)

7 = Session-(1.4) Preparing the Workstation for the Lab / OS Installation = Now install some important system packages, activate root & configure ssh-server apt update apt install -y vim openssh-server htop tasksel mtr gparted pv vim /etc/ssh/sshd_config In the file sshd_config Change ssh port for security --> Set Port 22 Permit root login --> Set PermitRootLogin yes Add UseDNS no at the end of the configuration file /etc/init.d/ssh restart passwd root ; set the password _pw for this lab In production change ssh port to any other port like 7979 In production use strong root password combining alpha-numeric characters. = Getting Gbps Local Lan Speed Now we have to do a final check to ensure that every participant got the Gbps-Speed, in their workstation/laptop. We can check that with any of the following two commands, Syntax1 : mii-tool <interface name> Syntax2 : ethtool <interface name> grep Speed mii-tool enp1s0 Output > enp1s0: negotiated 1000baseT-FD flow-control, link ok ethtool enp1s0 grep speed Output > Speed: 1000Mb/s If the speed is not 1000Mb/s, we have to do some troubleshoot (mainly cable connection) to achieve Gbps Speed. Now reboot the workstation/laptop. reboot Also after reboot check that you got Gbps Speed or not. =7= Documentation By, Rezaul Karim (rkarim@redskybd.com)

8 Session-(1.4) Preparing the Workstation for the Lab / OS Installation (1.4.7) Installation Screenshots.

9

10

11

12

13

14

15

16

17

18

19

20

21

22

Installation Manual InfraManage.NET Installation Instructions for Ubuntu

Installation Manual InfraManage.NET Installation Instructions for Ubuntu Installation Manual InfraManage.NET Installation Instructions for Ubuntu Copyright 1996 2017 Timothy Ste. Marie Version 7.5.72SQL InfraManage.NET Installing InfraManage.NET Page 1 of 78 Table of Contents

More information

HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch

HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch HOW-TO-GUIDE: demonstrating Fabric Attach using OpenVSwitch 1 Target audience System Engineers interested to understand the Fabric Attach (FA) technology and/or for demo proposes. Why does it make sense

More information

Ubuntu installation alongside windows 8/8.1 and 10

Ubuntu installation alongside windows 8/8.1 and 10 Ubuntu installation alongside windows 8/8.1 and 10 Important safety precautions in windows - Before starting the installation process NOTE:1. If you are already using Windows OS in your computer, take

More information

Installation of the OS

Installation of the OS Lab 1 Installation of the OS 1.1 Objectives The goal of this first session is to install a Debian/Linux operating system from scratch on a Intel x86- based computer. The installation will be made on a

More information

Comodo Dome Data Protection Software Version 3.8

Comodo Dome Data Protection Software Version 3.8 Comodo Dome Data Protection Software Version 3.8 Installation Guide Guide Version 3.8.102417 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1.About Dome Data Protection...

More information

CS 716: Introduction to communication networks. Instructor: Sridhar Iyer Demo by: Swati Patil IIT Bombay

CS 716: Introduction to communication networks. Instructor: Sridhar Iyer Demo by: Swati Patil IIT Bombay CS 716: Introduction to communication networks - 16 th class; 28 th Sept 2011 Instructor: Sridhar Iyer Demo by: Swati Patil IIT Bombay What is IP address An identifier for a computer or device on a TCP/IP

More information

ELE409 SPRING2018 LAB0

ELE409 SPRING2018 LAB0 ELE409 SPRING2018 LAB0 Getting familiar with the LXDE system Objectives: Pre-Lab: 1. Burn the linux system onto a micro-sd card 2. Get familiar with basic linux commands 3. Be able to communicate with

More information

Title: Demonstrate the linux installation and administration settings.

Title: Demonstrate the linux installation and administration settings. OOPL Assignment 1 Title: Demonstrate the linux installation and administration settings. Objectives: 1) To install Ubuntu Linux on Windows without erasing current operating system. 2) To give the students

More information

CIS 76 VLab Pod Setup

CIS 76 VLab Pod Setup CIS 76 VLab Pod Setup Last updated 9/4/2017 Status on setup instructions: 1. pfsense (2.3.1, 64 bit) pfsense-ce-2.3.4-release-amd64 - DONE for Fa17 2. Kali (2017.1, 64 bit) kali-linux-2017.1-amd64.iso

More information

Wowza Media Server Pro for Riverbed Steelhead. Installation Guide

Wowza Media Server Pro for Riverbed Steelhead. Installation Guide Wowza Media Server Pro for Riverbed Steelhead Installation Guide Wowza Media Server Pro for Riverbed Steelhead Installation Guide Version 2.0 Wowza Media Systems, Inc. 1153 Bergen Parkway, #181 Evergreen,

More information

INSTALL GUIDE FOR HQPLAYER EMBEDDED (FOR DEBIAN AND UBUNTU CONFIGURATION)

INSTALL GUIDE FOR HQPLAYER EMBEDDED (FOR DEBIAN AND UBUNTU CONFIGURATION) INSTALL GUIDE FOR HQPLAYER EMBEDDED (FOR DEBIAN AND UBUNTU CONFIGURATION) Written by: D Vaidya Version 0.5 October 26, 2017 1 Contents 1. Scope... 3 2. Pre-requisite for HQPlayer Desktop and Embedded...

More information

How to Use This Lab Manual

How to Use This Lab Manual 3 Contents How to Use This Lab Manual........................................ 5 Lab 1: Setting Up the Student System.................................. 7 Lab 2: Installing Fedora............................................

More information

HANDS UP IF YOU DON T HAVE A VM OR IF YOU DON T REMEMBER YOUR PASSWORDS. Or something broke

HANDS UP IF YOU DON T HAVE A VM OR IF YOU DON T REMEMBER YOUR PASSWORDS. Or something broke HANDS UP IF YOU DON T HAVE A VM OR IF YOU DON T REMEMBER YOUR PASSWORDS Or something broke Securing your VM 101 Getting Comfy in Linux -> Comfort ++ You After This Talk Quick recap from last week. Setup

More information

Appliance Guide. Version 1.0

Appliance Guide. Version 1.0 Appliance Guide Version 1.0 Contents Contents 1 Revision history 2 Getting Started 3 Getting to Know the R7-3000/5000/5000x 5 Getting to Know the R7-1000 6 Setting Up the Appliance 7 Logging in to the

More information

The mixed environment will have PCs from both environments. Usually this environment uses the Linux server as an SSH, DNS or mail server.

The mixed environment will have PCs from both environments. Usually this environment uses the Linux server as an SSH, DNS or mail server. Setting Up The Lab This document is provides the steps for setting up virtual machines for use with the Principles of Computer Security CompTIA Security+ and Beyond. There are a number of virtual platforms

More information

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine IT 341 Introduction to System Administration Project I Installing Ubuntu Server on a Virtual Machine Here we create a new virtual machine and install Ubuntu 16.04 LTS Server on it. In this instance, we

More information

SETTING UP SSH FOR YOUR PARALLELLA: A TUTORIAL FOR STUDENTS

SETTING UP SSH FOR YOUR PARALLELLA: A TUTORIAL FOR STUDENTS SETTING UP SSH FOR YOUR PARALLELLA: A TUTORIAL FOR STUDENTS Written by Dr. Suzanne J. Matthews, CDT Zachary Ramirez, and Mr. James Beck, USMA ABOUT THIS TUTORIAL: This tutorial teaches you to access your

More information

Different ways to use Kon-Boot

Different ways to use Kon-Boot Robert Alaniz 28 July 2014 Different ways to use Kon-Boot This project consists of different ways of using Kon-Boot to bypass authentication on a windows machine. Kon-Boot is a toll that can bypass the

More information

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external?

LAN Setup Reflection. Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? LAN Setup Reflection Ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? o Are you able to log into other VMs in the classroom?

More information

Ubuntu installation alongside windows 8/8.1 and 10

Ubuntu installation alongside windows 8/8.1 and 10 Ubuntu installation alongside windows 8/8.1 and 10 Important safety precautions in windows - Before starting the installation process NOTE:1. If you are already using Windows OS in your computer, take

More information

Unit- 5. Linux Systems

Unit- 5. Linux Systems Unit- 5 Linux System- Basic Concepts; System Administration-Requirements for Linux System Administrator, Setting up a LINUX Multifunction Server, Domain Name System, Setting Up Local Network Services;

More information

Using RDP with Azure Linux Virtual Machines

Using RDP with Azure Linux Virtual Machines Using RDP with Azure Linux Virtual Machines 1. Create a Linux Virtual Machine with Azure portal Create SSH key pair 1. Install Ubuntu Bash shell by downloading and running bash.exe file as administrator.

More information

Lab E2: bypassing authentication and resetting passwords

Lab E2: bypassing authentication and resetting passwords Lab E2: bypassing authentication and resetting passwords TTM4175 September 7, 2015 The purpose of this lab is to learn about techniques for bypassing the authentication and access control of Windows and

More information

Manually Change Default Gateway Centos Command Line Windows

Manually Change Default Gateway Centos Command Line Windows Manually Change Default Gateway Centos Command Line Windows Learn how to add a defaull gateway on Redhat Linux. Linux command line tutorial Bash scripting tutorial Vim tutorial Perl programming tutorial

More information

Step by Step Single KVM/Virtual Ubuntu Server 14.04

Step by Step Single KVM/Virtual Ubuntu Server 14.04 Step by Step Single KVM/Virtual Ubuntu Server 14.04 Preface: I am not a writer by any means what so ever, So if you see a mistake or you want to help with this document let me know. I would appreciate

More information

How to Install a DHCP Server in Ubuntu and Debian

How to Install a DHCP Server in Ubuntu and Debian How to Install a DHCP Server in Ubuntu and Debian Source : https://www.tecmint.com/install-dhcp-server-in-ubuntu-debian/ Dynamic Host Configuration Protocol (DHCP) is a network protocol that is used to

More information

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host.

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host. Networking Guide for BeagleBone (Black or Green) by Brian Fraser Last update: Nov 17, 2017 This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green

More information

dnsmasq configuration

dnsmasq configuration Aim: Raspberry Pi searches for known router's (SSID) If the router is not found then it creates a hotspot so tablets, phones and computers can connect to the Raspberry Pi's WiFi hotspot, which is not routed

More information

PROBE INSTALLATION AND CONFIGURATION GUIDE RELEASE 5.1

PROBE INSTALLATION AND CONFIGURATION GUIDE RELEASE 5.1 PROBE INSTALLATION AND CONFIGURATION GUIDE RELEASE 5.1 DOCUMENT DATE: NOVEMBER 20, 2015 Introduction Notice The information contained in this document is believed to be accurate in all respects but is

More information

Endian Proxy / Firewall

Endian Proxy / Firewall Endian Proxy / Firewall Created October 27, 2006 by Bruce A. Westbrook Revisions: Introduction This document describes the step by step process of installing and configuring the Endian Firewall, Community

More information

LAN Setup Reflection

LAN Setup Reflection LAN Setup Reflection After the LAN setup, ask yourself some questions: o Does your VM have the correct IP? o Are you able to ping some locations, internal and external? o Are you able to log into other

More information

Cisco Modeling Labs OVA Installation

Cisco Modeling Labs OVA Installation Prepare for an OVA File Installation, page 1 Download the Cisco Modeling Labs OVA File, page 2 Configure Security and Network Settings, page 2 Deploy the Cisco Modeling Labs OVA, page 12 Edit the Virtual

More information

The TinyHPC Cluster. Mukarram Ahmad. Abstract

The TinyHPC Cluster. Mukarram Ahmad. Abstract The TinyHPC Cluster Mukarram Ahmad Abstract TinyHPC is a beowulf class high performance computing cluster with a minor physical footprint yet significant computational capacity. The system is of the shared

More information

Installation of Lubuntu Linux, Koha, DSpace and other software using LibLiveCD

Installation of Lubuntu Linux, Koha, DSpace and other software using LibLiveCD Installation of Lubuntu Linux, Koha, DSpace and other software using LibLiveCD NOTE: Before performing the below tasks, please ensure you have one basic disk partition (with no data) or some free space

More information

Hawk Server for Linux. Installation Guide. Beta Version MHInvent Limited. All rights reserved.

Hawk Server for Linux. Installation Guide. Beta Version MHInvent Limited. All rights reserved. Hawk Server for Linux Installation Guide Beta Version Hawk Server Introduction Thank you for being part of the beta program for Hawk Secure Browser! This installation document will guide you through the

More information

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12 Linux Computer networks - Administration 1DV202 Configuration files /etc/hosts /etc/resolv.conf /etc/network/interfaces /etc/hosts 127.0.0.1 localhost.localdomain localhost 127.0.1.1 lokal.kalmar.se lokal

More information

PiCloud. Building owncloud on a Raspberry PI

PiCloud. Building owncloud on a Raspberry PI PiCloud Building owncloud on a Raspberry PI PiCloud - Building owncloud on a Raspberry PI by Sebastian Büttrich is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International

More information

Manual Install Ubuntu Alongside Windows 7 Using Usb

Manual Install Ubuntu Alongside Windows 7 Using Usb Manual Install Ubuntu 12.04 Alongside Windows 7 Using Usb First off, I had to create a UEFI 3.0 USB stick for the WIN7 install because it would not recognize the SSD. recognize the WIN7 OS, and I would

More information

WELCOME TO SS-E AFNOG NAIROBI, KENYA. Scalable Services English

WELCOME TO SS-E AFNOG NAIROBI, KENYA. Scalable Services English WELCOME TO SS-E AFNOG - 2017 NAIROBI, KENYA Scalable Services English What is SS-E? Scalable Services English is a track that teaches advanced topics on designing, configuring and managing large scale

More information

How To Configure Grub In Windows 7 Ftp Server At Home

How To Configure Grub In Windows 7 Ftp Server At Home How To Configure Grub In Windows 7 Ftp Server At Home Part 8: Installing FTP Server and Mapping FTP Directories in Zentyal PDC. Part 9: Install 6 GB for / Partition ext4, 1 GB for swap area, 3.7 GB for

More information

Production Installation and Configuration. Openfiler NSA

Production Installation and Configuration. Openfiler NSA Production Installation and Configuration Openfiler NSA Table of Content 1. INTRODUCTION... 3 1.1. PURPOSE OF DOCUMENT... 3 1.2. INTENDED AUDIENCE... 3 1.3. SCOPE OF THIS GUIDE... 3 2. OPENFILER INSTALLATION...

More information

CIS 191A Final Exam. Fall CIS 191 Final Exam

CIS 191A Final Exam. Fall CIS 191 Final Exam CIS 191A Final Exam Fall 2008 CIS 191 Final Exam The final for CIS 191A is composed several parts: A. (10 points) Questions B. (5 points) Checklist C. (10 points) Troubleshooting D. (35 points) Building

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

VIRTUAL MACHINES. By Seth Lemanek

VIRTUAL MACHINES. By Seth Lemanek VIRTUAL MACHINES By Seth Lemanek WHAT IS A VIRTUAL MACHINE? Software meant to emulate hardware for the purpose of hosting bare metal software like Operating Systems Used for creating virtual environments

More information

Installation of Fedora 12 with CD

Installation of Fedora 12 with CD Prepared by investech.wordpress.com Installation of Fedora 12 with Net Install CD Version 1.0 investech.wordpress.com 07-12-09 This document is produced under Creative Common License (Attribution No Derivatives).

More information

INSTALLATION. Security of Information and Communication Systems

INSTALLATION. Security of Information and Communication Systems Security of Information and Communication Systems INSTALLATION Table of contents 1.Introduction...2 2.Installation...3 2.1.Hardware requirement...3 2.2.Installation of the system...3 2.3.Installation of

More information

INSTALLATION. Security of Information and Communication Systems. Table of contents

INSTALLATION. Security of Information and Communication Systems. Table of contents Security of Information and Communication Systems INSTALLATION Table of contents 1. Introduction...2 2....3 2.1. Hardware requirement...3 2.2. of the system...3 2.3. of ALCASAR...7 2.4. Connexion to the

More information

Installing Prime Optical

Installing Prime Optical 5 CHAPTER This section describes how to install Cisco Prime Optical 9.8 with an Oracle 11g database. To ensure a successful installation, use the checklist provided in the Installation Scenarios and Checklists,

More information

Networks Lab Pod Diagram

Networks Lab Pod Diagram (Console cable) Networks Lab Pod Diagram (x = pod number) 190.111.50.x 190.111.x.254 PodxLinux Addr: 190.111.x.3 Mask: 255.255.255.0 GW: 190.111.x.254 DNS: 190.111.x.1 PodxServer Addr: 190.111.x.1 Mask:

More information

DUAL OS INSTALLATION

DUAL OS INSTALLATION Ex.No:15 Date: DUAL OS INSTALLATION Aim: To install and configure Ubuntu OS alongside Windows as installing dual OS. PROCEDURE: 1. Backup your Windows partition To open the Dell Backup and Recovery software

More information

Subject: Network Troubleshooting Tools Lecturer: Jirawat Thaenthong Organization: Faculty of Technology and Environment, PSU, Phuket Campus. Date: 19/5/60 Version: 1.0 Approved Objective: 1. Trainees study

More information

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

Jackson State University Department of Computer Science CSC 437/539 Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Jackson State University Department of Computer Science CSC 437/539 Computer Security Fall 2013 Instructor: Dr. Natarajan Meghanathan Lab Project # 3: Simulating DHCP Snooping and DNS Cache Poisoning through

More information

3 Connection, Shell Serial Connection over Console Port SSH Connection Internet Connection... 5

3 Connection, Shell Serial Connection over Console Port SSH Connection Internet Connection... 5 Contents 1 Description 2 2 Supported Devices 3 3 Connection, Shell 4 3.1 Serial Connection over Console Port...................... 4 3.2 SSH Connection................................. 4 3.3 Internet Connection...............................

More information

Build your own NAS with OpenMediaVault

Build your own NAS with OpenMediaVault Build your own NAS with OpenMediaVault Installation Minimum Requirements i486 or amd64 platform 1 GiB RAM 2 GiB HDD/DOM/CF/USB Thumb Drive used as OpenMediaVault system drive. Flash Drives without static

More information

ABOUT ZEPCAM SOFTWARE INSTALLATION MANAGEMENT AND BACKUPS. Description What is it Installation requirement Server requirement

ABOUT ZEPCAM SOFTWARE INSTALLATION MANAGEMENT AND BACKUPS. Description What is it Installation requirement Server requirement 1 ABOUT ZEPCAM SOFTWARE Description What is it Installation requirement Server requirement INSTALLATION Create a bootable USB Networking Disk partitioning Bootloader configuration Setup Registration Administrator

More information

Step By Step Ubuntu (Precise) LAMP Server Setup

Step By Step Ubuntu (Precise) LAMP Server Setup Step By Step Ubuntu 12.04 (Precise) LAMP Server Setup May 21, 2012 In around 15 minutes, the time it takes to install Ubuntu Server Edition, you can have a LAMP (Linux, Apache, MySQL and PHP) server up

More information

CIS 76 VLab Pod Setup

CIS 76 VLab Pod Setup CIS 76 VLab Pod Setup Last updated 11/30/2016 Status on setup instructions: 1. pfsense (2.3, 64 bit) - OK 2. Kali (2016, 64 bit) - OK 3. Windows XP (SP2, 32 bit) - OK 4. Port Forwarding - OK 5. OWASP_Broken_Web_Apps_VM_1.2

More information

Raspberry Pi (RPi) Setup Documentation Instrumentation Development Lab Department of Physics and Astronomy University of Hawaii at Manoa

Raspberry Pi (RPi) Setup Documentation Instrumentation Development Lab Department of Physics and Astronomy University of Hawaii at Manoa Raspberry Pi (RPi) Setup Documentation Instrumentation Development Lab Department of Physics and Astronomy University of Hawaii at Manoa AUTHOR: Bronson Edralin DATE: 9/11/14 1 Table of Contents 1. INTRODUCTION

More information

Windows Subsystem for Linux Guide Documentation

Windows Subsystem for Linux Guide Documentation Windows Subsystem for Linux Guide Documentation Release Kenneth Reitz Aug 30, 2017 Contents: 1 Background on WSL (Windows Subsystem for Linux) 3 1.1 What is WSL?..............................................

More information

Openstack Installation Guide

Openstack Installation Guide Openstack Installation Guide Installation Steps Step1: Making the Host Machine ready f Installation Step2: Configuring the Host Machine Interfaces Step3: Checkout the Installation Scripts Step4: Installing

More information

3. Click on the Download ZIP button under Raspbian Jessie, and select a folder to save it to.

3. Click on the Download ZIP button under Raspbian Jessie, and select a folder to save it to. 1. INITIAL CONFIGURATION RASPBERRY COMPONENTS INSTALL RASPBIAN IN YOUR RASPBERRY 1. Visit the official Raspberry Pi Downloads page 2. Click on Downloads Raspbian. 3. Click on the Download ZIP button under

More information

Password: admin DW-BJCUBE2T-LX DW-BJCUBE4T-LX DW-BJCUBE6T-LX DW-BJCUBE9T-LX DW-BJCUBE12T-LX DW-BJCUBE18T-LX

Password: admin DW-BJCUBE2T-LX DW-BJCUBE4T-LX DW-BJCUBE6T-LX DW-BJCUBE9T-LX DW-BJCUBE12T-LX DW-BJCUBE18T-LX Quick Start Guide State of the art hyper-optimized video management platform designed for ease, speed and efficiency. Blackjack Cube Up to 16 (Cube-LX) and 64 (Cube) 2.1MP Cameras (1080p True HD Resolution)

More information

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine Here we create a new virtual machine and install Ubuntu 12.04 LTS Server on it. In this instance, we

More information

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive.

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive. 1 This guide is for users wishing to use an embedded system or appliance, such as an Alix board, HP Thin Client (we strongly recommend and have had tremendous success with the HP T5710) with ICOM repeater

More information

Guideline for the installation of C-MOR Video Surveillance Virtual Machine on VMware ESX Server

Guideline for the installation of C-MOR Video Surveillance Virtual Machine on VMware ESX Server This guideline illustrates the installation of the C-MOR Video Surveillance Virtual Machine on VMware ESX Server. This manual applies to C-MOR version 4 with 64 bit operating system. First download the

More information

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine

IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine IT 341 Introduction to System Administration Project I Installing Ubuntu Server on an Virtual Machine Here we create a new virtual machine and install Ubuntu 16.04 LTS Server on it. In this instance, we

More information

CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability.

CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability. CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability. Ryan Borden December 3, 2017 Contact: ryanborden81@gmail.com

More information

Build your own Lightweight Webserver - Hands-on I - Information Network I. Marius Georgescu. Internet Engineering Laboratory. 17 Apr

Build your own Lightweight Webserver - Hands-on I - Information Network I. Marius Georgescu. Internet Engineering Laboratory. 17 Apr Build your own Lightweight Webserver - Hands-on I - Information Network I Marius Georgescu Internet Engineering Laboratory 17 Apr. 2015 iplab Prerequisites Prerequisites Download and Install VirtualBox

More information

Back Up/Restore Hard Drives And Partitions With CloneZilla Live

Back Up/Restore Hard Drives And Partitions With CloneZilla Live By Falko Timme Published: 2008-11-25 17:35 Version 1.0 Author: Falko Timme Last edited 11/17/2008 This tutorial shows how you can back up and restore hard drives and partitions

More information

The article performs the following task:-

The article performs the following task:- This RAC installation article is based on RAC Attack hands-on learning lab https://en.wikibooks.org/wiki/rac_attack_-_oracle_cluster_database_at_home/rac_attack_12c The article performs the following task:-

More information

IT341 Introduction to System Administration Project II Setting up our LAN

IT341 Introduction to System Administration Project II Setting up our LAN IT341 Introduction to System Administration Project II Setting up our LAN Before we start, please make sure that you have a snapshot of your finished VM/base installation from Project 1, so that you can

More information

Troubleshooting. Contacting Cisco TAC. Checking the Version Number of Cisco Configuration Engine APPENDIXA

Troubleshooting. Contacting Cisco TAC. Checking the Version Number of Cisco Configuration Engine APPENDIXA APPENDIXA This appendix provides troubleshooting information. It contains information about: Contacting Cisco TAC Checking the Version Number of Cisco Configuration Engine Cannot Log in to the System System

More information

Table of Contents 1 V3 & V4 Appliance Quick Start V4 Appliance Reference...3

Table of Contents 1 V3 & V4 Appliance Quick Start V4 Appliance Reference...3 Table of Contents 1 V & V4 Appliance Quick Start...1 1.1 Quick Start...1 1.2 Accessing Appliance Menus...1 1. Updating Appliance...1 1.4 Webmin...1 1.5 Setting Hostname IP Address...2 1.6 Starting and

More information

Operating Systems Lab 1. Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox

Operating Systems Lab 1. Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox Operating Systems Lab 1 Class topic: Installation of the operating system. Install Ubuntu on Oracle VirtualBox Oracle VirtualBox is a cross-platform virtualization application. It installs on your existing

More information

Link Gateway Initial Configuration Manual

Link Gateway Initial Configuration Manual Link Gateway Initial Configuration Manual Copyright 2016 NetLinkz. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated

More information

202 Lab Introduction Connecting to the Lab Environment

202 Lab Introduction Connecting to the Lab Environment 202 Lab Introduction Connecting to the Lab Environment Objectives During this v7.1 Deployment lab, each student (from the Blue group or Green group) must verify access (and permissions) to their assigned

More information

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Oded Nahum Principal Systems Engineer PLUMgrid EMEA November 2014 Page 1 Page 2 Table of Contents Table

More information

CCNA Discovery Server Live CD v2.0

CCNA Discovery Server Live CD v2.0 CCNA Discovery Overview CCNA Discovery Server Live CD v2.0 Information and Installation Instructions The Discovery Server Live CD provides all of the network services necessary to support the CCNA Discovery

More information

LAB-5: NAT64/DNS64. Lab Environment. Configure the IPv6 only client: Open the GNS3 project file: The lab topology has:

LAB-5: NAT64/DNS64. Lab Environment. Configure the IPv6 only client: Open the GNS3 project file: The lab topology has: LAB-5: NAT64/DNS64 Lab Environment Open the GNS3 project file: NAT64.gns3 The lab topology has: 1xNAT64/DNS64 node 1xIPv6-only client 1xIPv4-only service (web) The login credentials for all nodes: username:

More information

MT LoadMaster Cisco UCS C-Series. Multi-Tenant LoadMaster for Cisco UCS C-Series Rack Server. Installation Guide

MT LoadMaster Cisco UCS C-Series. Multi-Tenant LoadMaster for Cisco UCS C-Series Rack Server. Installation Guide Multi-Tenant LoadMaster for Cisco UCS C-Series Rack Installation Guide VERSION: 7.0 UPDATED: MARCH 2016 Table of Contents 1 Introduction... 3 1.1 Pre-requisites... 3 2... 4 2.1 Configure the Boot Options

More information

Raspberry Pi as an Ad Blocking Access Point

Raspberry Pi as an Ad Blocking Access Point Raspberry Pi as an Ad Blocking Access Point Created by Justin Cooper Last updated on 2017-12-05 07:26:38 PM UTC Guide Contents Guide Contents Overview Preparation Install Software Improving Performance

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

Alarm Counter. A Ceilometer OpenStack Application

Alarm Counter. A Ceilometer OpenStack Application Alarm Counter A Ceilometer OpenStack Application Tejas Tovinkere Pattabhi UTD VOLUNTEER AT AWARD SOLUTIONS Summer 2015 Contents Alarm Counter 1 Introduction...2 2 Pre-Requisites...2 2.1 Server Creation...

More information

Cisco UCS C-Series. Installation Guide

Cisco UCS C-Series. Installation Guide Installation Guide UPDATED: 04 October 2018 Copyright Notices Copyright 2002-2018 KEMP Technologies, Inc. All rights reserved. KEMP Technologies and the KEMP Technologies logo are registered trademarks

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY HAYSTACK OBSERVATORY WESTFORD, MASSACHUSETTS October, 2015

MASSACHUSETTS INSTITUTE OF TECHNOLOGY HAYSTACK OBSERVATORY WESTFORD, MASSACHUSETTS October, 2015 MASSACHUSETTS INSTITUTE OF TECHNOLOGY HAYSTACK OBSERVATORY WESTFORD, MASSACHUSETTS 01886 13 October, 2015 Telephone: 781-981-5951 Fax: 781-981-0590 TO: FROM: SUBJECT: Distribution Chester Ruszczyk Mark5

More information

How To Reinstall Grub In Windows 7 Without Losing Data And Programs

How To Reinstall Grub In Windows 7 Without Losing Data And Programs How To Reinstall Grub In Windows 7 Without Losing Data And Programs So if I install Windows 7 using CD again, will I lose Ubuntu? then yes you will lose Ubuntu, however if you reinstall Windows without

More information

WLM1200-RMTS User s Guide

WLM1200-RMTS User s Guide WLM1200-RMTS User s Guide Copyright 2011, Juniper Networks, Inc. 1 WLM1200-RMTS User Guide Contents WLM1200-RMTS Publication Suite........................................ 2 WLM1200-RMTS Hardware Description....................................

More information

Quick Start Guide. State of the art hyper-optimized video management platform designed for ease, speed and efficiency.

Quick Start Guide. State of the art hyper-optimized video management platform designed for ease, speed and efficiency. Quick Start Guide State of the art hyper-optimized video management platform designed for ease, speed and efficiency. Blackjack Cube Up to 16 (Cube-LX) and 64 (Cube) 2.1MP Cameras (1080p True HD Resolution)

More information

Sit with your new teammate

Sit with your new teammate Sit with your new teammate Chadd Group 1 Group 5 Raimundo Ben Brynn Chris M Group 2 Group 4 Group 8 Group 6 Verity Cormac Michael Scott Logan Chris G Michael Kyle Group 3 Group 7 Ryan Mason Larry Jacob

More information

KVM Guest Management With Virt-Manager On Ubuntu 8.10

KVM Guest Management With Virt-Manager On Ubuntu 8.10 By Falko Timme Published: 2009-02-08 18:56 Version 1.0 Author: Falko Timme Last edited 02/05/2009 Virt-Manager (Virtual Machine Manager) is a graphical interface for managing

More information

Installing Altiris Agent on Ubuntu

Installing Altiris Agent on Ubuntu Installing Altiris Agent on Ubuntu DISCLAIMER: Altiris does not warrant that their software will run on Ubuntu using the Unix Agent version 6.2, which as of publication of this article, is the latest release.

More information

Introduction to Raspberry Pi 3 Model B Updates: 9/18/17 6/2/2018

Introduction to Raspberry Pi 3 Model B Updates: 9/18/17 6/2/2018 Introduction to Raspberry Pi 3 Model B Updates: 9/18/17 6/2/2018 A. Objectives 1. Learn about basics of Pi 3 embedded system 2. Learn how to operate your Pi 3 using different interfaces 3. Learn how to

More information

Network Drawing. Computer Specs, I ve used. Installing a Network-Based Intrusion Detection

Network Drawing. Computer Specs, I ve used. Installing a Network-Based Intrusion Detection HS1 HS2 OK1 OK2 PS 1 2 3 4 5 6 7 8 9 101112 COL- ACT- STA.- CONSOLE SD Installing a Network-Based Intrusion Detection created by: Rainer Bemsel Version 1.0 Dated: Apr/10/2003 The purpose of this document

More information

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions

Welcome to getting started with Ubuntu Server. This System Administrator Manual. guide to be simple to follow, with step by step instructions Welcome to getting started with Ubuntu 12.04 Server. This System Administrator Manual guide to be simple to follow, with step by step instructions with screenshots INDEX 1.Installation of Ubuntu 12.04

More information

Introduction. What is Linux? What is the difference between a client and a server?

Introduction. What is Linux? What is the difference between a client and a server? Linux Kung Fu Introduction What is Linux? What is the difference between a client and a server? What is Linux? Linux generally refers to a group of Unix-like free and open-source operating system distributions

More information

Hacking Techniques & Intrusion Detection. Ali Al-Shemery arabnix [at] gmail

Hacking Techniques & Intrusion Detection. Ali Al-Shemery arabnix [at] gmail Hacking Techniques & Intrusion Detection Ali Al-Shemery arabnix [at] gmail All materials is licensed under a Creative Commons Share Alike license. http://creativecommons.org/licenses/by-sa/3.0/ 2 # whoami

More information

Build Nested Openstack. Using Ubuntu as BaseOS on BareMetal

Build Nested Openstack. Using Ubuntu as BaseOS on BareMetal Build Nested Openstack Using Ubuntu as BaseOS on BareMetal Overview The following slides outline how to setup your BareMetal HOST (a server) in order to run a Openstack installation using FUEL based Deployer.

More information

Image Management Service. User Guide. Issue 03. Date

Image Management Service. User Guide. Issue 03. Date Issue 03 Date 2016-10-19 Contents Contents Change History... v 1 Overview... 6 1.1 Concept... 6 1.1.1 What Is Image Management Service?... 6 1.1.2 OSs for Public Images Supported by IMS... 7 1.1.3 Image

More information

EVE-NG Professional Cookbook

EVE-NG Professional Cookbook EVE-NG Professional Cookbook Version 1.7 Author: Uldis Dzerkals Editors: Michael Doe Christopher Lim EVE-NG LTD The information contained in this document is the property of EVE-NG Limited The contents

More information

Deploying Cisco UCS Central

Deploying Cisco UCS Central This chapter includes the following sections: Obtaining the Cisco UCS Central Software from Cisco, page 1 Using the Cisco UCS Central OVA File, page 2 Using the Cisco UCS Central ISO File, page 4 Logging

More information