Contents Web Development... 2 Software... 2 Building a Web Server... 4

Size: px
Start display at page:

Download "Contents Web Development... 2 Software... 2 Building a Web Server... 4"

Transcription

1 Page 1 of 15 Contents Web Development... 2 Software... 2 Building a Web Server... 4 References... 4 Requirements... 4 Step 1 - Obtain Ubuntu... 4 Step 2 - Install Ubuntu... 5 Step 3 - Setup FTP... 7 Download and Install ProFTPd Server (Daemon)... 7 Download and Install GAdmin-ProFTPd GUI... 8 Configure and Activate the FTP Server... 8 Step 4 Setup HTTP... 9 Location of Your Website s Home Directory... 9 Step 5 Connecting Access Your Website Using Your Linux PC Accessing Your Website Using Your Windows PC Accessing Files on Your Linux PC from Your Windows PC Using FTP Step 6 - Going On-line References Step 7 - Get a Free Domain Install no-ip Dynamic Client Update on Linux PC Linux PC - Enable Remote Access... 15

2 Page 2 of 15 Web Development Nice set of web development tutorial from Khan Academy (link) HTML, CSS, Java and more syntax and tutorials at W3schools.com (link) Nice set of web development tutorials from Mozilla IRP MIEN web docs moz://a HTML Crash Course for Absolute Beginners (YouTube) (link). Software Text Editor BATON A hackable text editor for the 21st Century Install Color Picker package. Simple Local HTTP Server 'ea python Use this to host and test websites on your PC. Once installed, to get it running Windows key+r Run cmd Navigate to the directory that your example is inside, using the cd command Enter the command to start up the server in that directory: python -m http.server By default, this will run the contents of the directory on a local web server, on port You can go to this server by going to the URL localhost:8000 in your web browser. Here you'll see the contents of the directory listed click the HTML file you want to run.

3 Page 3 of 15 Web Hosting ATSPACE.COM See (link). WordPress Beginner a wpbeginner Coding Examples Bracketed Class.fact { border-top: 1px solid rgb(222, 222, 222); border-bottom: 1px solid rgb(222, 222, 222); padding-top: 6px; padding-bottom: 6px; } Web Page Validator Go to this (link).

4 Page 4 of 15 Building a Web Server Disclaimer: A novice assembled the following tutorial. I have tried to find reliable information, but I am a novice. Being a novice, I have tried to explain things for a novice. Being a novice, I have had to try things out to see how they work so, some of this has been tested. Before you begin, just be aware that you may get to the last step of this tutorial only to find that your Internet Service Provider (ISP) blocks the ports you need to bring your web server onto the Internet. You may need a business (vs. residential) account to do this. But you will have a web server that works on your local area network (LAN). References Instructables (link) Requirements A home network connected to the Internet via a router, modem, and your internet service provider (ISP) Administrator access to your home network s router. This access is usually via a web browser. You will need to know your router s IP address, username and password. The IP address is probably something like Your Windows PC with: o Internet access o Optical drive (DVD burner) unless you have a 2 GB USB stick o Software for burning iso file to DVD or USB stick (Windows 10 should have Windows Disc Image Burner) o KeePass installed o FileZilla Client installed from An old PC which you can afford to wipe and turn into your Linux PC with requirements as stipulated by the Linux operating system version. For this example, I am using the latest Ubuntu Desktop LTS (Long Term Support) version. The requirements are basic: o 2 GHz dual core processor or better o 2 GB system memory o 25 GB of free hard drive space o Either a DVD drive or a USB port for the installer media o Internet access is helpful (I think it is more than helpful. Furthermore, I recommend a direct cabled connection to the Internet via your router or network vs. Wi-Fi.) Cat5 or Cat6 cable to connect your Linux PC to the internet Blank DVD disc or 2 GB DVD stick Your Internet Service Provider (ISP)must not block the ports that you will need to host a web server. You can check your ports using the Port Check Tool Step 1 - Obtain Ubuntu Approximate Time: 20 minutes

5 Page 5 of 15 The Linux operating system is available as any number of open source derivations. This example will use Ubuntu form Ubuntu.com. Using your Windows PC, download Ubuntu Desktop from Ubuntu.com. Save it to your Downloads folder. Insert a blank DVD disk into your Windows PC s optical drive or blank USB stick into your Windows PC s USB port. Right-click on downloaded iso file and select Burn disk image. Name Date modified uhuntu rleckinn-amr164 icn 10/77/717 5:37 PM _ 1 u Mount 1175:16 PM b Burn disc image 17 4:40 PM rit r. et. Follow the instructions in the dialog box. i. Windows Disc Image Burner X Disc image file: ubuntu desktop-amd64.iso Disc burner: DVD R Drive (DO N/ Status To start burning the disc image, click Burn. Verify disc after burning Bum Cancel This will take about 5 minutes after which, the DVD disc will eject (if used instead of a USB stick). If using a DVD disc, label it. Step 2 - Install Ubuntu Approximate Time: 40 minutes On your Windows PC, in KeePass, create a key and label it Linux PC. In the User name field enter your first name in lower case. In the Password field, enter a password that you will use to

6 Page 6 of 15 access your Linux PC. Now save this. Edit Entry X Entry Advanced Properties Auto-Type History Linux PC Icon: User name: Password: Repeat: Quality: 54 bits 10 ch. URL: Get your old PC ready. We are going to turn it into your Linux PC. Connect it to the Internet with a Cat5 or Cat6 cable by plugging it directly into your network (probably directly to your router). If installing Linux from a DVD disc o Turn on Linux PC and open the optical drive o Insert DVD o Close optical drive o Power it off If installing Linux using a USB stick o Insert it into a USB port on your old PC Power on your old PC. While it is powering on, look for BIOS boot options. You may need to interrupt normal startup and force it boot from either your DVD disc or USB stick. For example, you may need to press or hold down the Esc key. Now the fun begins. Select to boot from either the DVD disc or USB stick. Follow all on-screen instructions, accepting defaults if you are uncertain. For Ubuntu version LTS when prompted o Choose to Install Ubuntu. o Check to download updates while installing Ubuntu o Check to install third-party software o Select to erase disk and install Ubuntu o Check to encrypt the new Ubuntu installation. Use the Password you saved in KeePass for your Linux PC. Use LVM will be automatically included. o Provide your name, username, and password. I recommend you just keep the default username and computer name. Use the Password you saved in KeePass for your Linux PC. o Select Require my password to log in. When installation is complete, remove the installation media and follow any remaining instructions.

7 Page 7 of 15 When prompted to unlock disk, use the password you saved to KeePass. Log in to Ubuntu. If there are any new updates, install them. If you have never used Ubuntu, take advantage of its Official documentation as well as all the other documentation available online. It is quite different from Windows. See Ubuntu Help and Support. Here are some simple tips Linux file names and commands are case sensitive. As you installed Ubuntu, you are the Linux PC (root) administrator. However, as is best practice, while you are logged in to Ubuntu, you are using it as a standard user. In Terminal (where you execute command line statements), the standard user prompt is something like: me@me-ay570aa-aba-a4316f:~s Where it is comprised of <your username>@<your Linux PC name>:~s When the prompt ends in ~S, you have standard privileges. If you need to execute a command that requires elevated (root or administrator) privileges (e.g. to install software), you will precede the command line statement with: sudo This stands for superuser do. Whenever you do this (at least once in each Terminal session), you will be asked for your password. Using sudo this way gives you elevated privileges for just the one command. Alternatively, you can give yourself persistently elevated privileges during the Terminal session. This is done by using sudo with the -s parameter: sudo -s In Terminal (where you execute command line statements), the superuser prompt now ends with: ~# BE CAREFUL if you see the ~# prompt. You have root privileges. To switch back to being yourself issue: sudo -su <your username> For keyboard shortcuts, press and hold the Super key (the Windows key) To take a screen shot, press the Print Screen key. To take a partial screen shot, press Shift-Print Screen. Step 3 - Setup FTP FTP (File Transfer Protocol) is a system used to upload and download files to and from a server. There are several choices for FTP servers (or daemons). This example will use the popular ProFTPd but here are others such as Pure-FTPD. ProFTPd happens to have several available graphical user interfaces (GUIs) which can assist with configuration otherwise configuration is via the Terminal command line statements. This example will use GAdmin-ProFTPd GUI for ProFTPd. Download and Install ProFTPd Server (Daemon) In Ubuntu Search, enter o Terminal and click on the Terminal icon At the ~$ Terminal prompt type: sudo apt-get install proftpd and press Enter

8 Page 8 of 15 Provide your Ubuntu password. When asked if you want to continue press y, Enter. If you see ProFTPd Configuration, accept standalone by pressing Enter. Configuration will proceed, and you will be returned to the Terminal prompt. Download and Install GAdmin-ProFTPd GUI In Ubuntu Search, enter o Terminal and click on the Terminal icon At the ~$ Terminal prompt type: sudo apt-get install gadmin-proftpd When asked if you want to continue press y, Enter. Configuration will proceed, and you will be returned to the Terminal prompt. You can close the Terminal. Configure and Activate the FTP Server Recommendations taken from (link). In Ubuntu Search, enter o Terminal and click on the Terminal icon At the ~$ Terminal prompt type: sudo rm /etc/proftpd/proftpd.conf This step will remove the configuration (if it is there) file so that you start from a clean slate. Click Activities or Search this computer icon (top left). Enter gadmin and press Enter. Click on the GPROFTPD icon to launch the application The first time you start gadmin-proftpd, you will need to configure a few settings. All default values should be used unless otherwise noted below: o Click on the Server tab o Server address: (listen to all network interfaces) o Server Name: Off o Admin your address o Click the Apply button To add a virtual user: o Click on the Users tab o Click the '+Add' button. All settings can remain with their default values except: Username: User1 Password: Enter a password (letters and numbers only 6 characters) Group: Admin Select your home folder Click Open Modify the directory permissions as needed Click the Apply button CAUTION: Each time you click the Apply button, the selected user changes back to the first user in the list and you will be looking at that accounts settings. To make review and/or make further changes, you will need to re-select the user.

9 Page 9 of 15 In the Configuration tab, APPEND the following lines AT THE END to fix an issue that prevents FTP clients such as Filezilla or WinSCP from connecting to the server: <IfModule mod_facts.c> FactsAdvertise off </IfModule> IMPORTANT: Once the server is configured, you may be prompted, when launching Gadmin-ProFTPd, to overwrite the current configuration with a suitable standard configuration. This is likely because you placed the above code before the end of the file. Be sure to click No or you will lose your current configuration. Click the "Activate" button and your server's status will change to "Activated". That means you're now ONLINE! (on your LAN) Step 4 Setup HTTP Now that we have enabled file transfer protocol, we need to activate HTTP, the ability to serve up web pages. To do this, do the following. In Ubuntu Search, enter o Terminal and click on the Terminal icon At the ~$ Terminal prompt type: sudo apt-get install apache2 and press Enter That s it. To test you HTTP server, in a web browser on your Linux PC, enter: localhost You should see that, It works! ubuntu Apache2 Ubuntu Default Page It works! This is the default welcome page used to test the correct operation of the Apache2 server after,) installation on Ubuntu systems. It is based on the equivalent page on Debian, from which the Ubuntu Apache packaging is derived. If you can read this page, it means that the Apache HTTP server installed at this site is working properly. You should replace this file (located at /var/www/html/index.html) before continuing to operate your HTTP server. If you are a normal user of this web site and don't know what this page is about, this probably means t, that the site is currently unavailable due to maintenance. If the problem persists, please contact the ) Location of Your Website s Home Directory Your website s home directory is /var/www. You will put your html files there.

10 Page 10 of 15 0 Recent html El var www html itr Home Desktop I index.html Step 5 Connecting You have created an FTP (file transfer protocol) and HTTP (web) server on your Linux PC. Now you want to be able to access these. Access Your Website Using Your Linux PC You can access your website on your Linux PC by opening a web browser on your Linux PC and entering the address: localhost Accessing Your Website Using Your Windows PC You can also access your website from your Windows PC if your Windows PC is on your home local area network (LAN). To do this, you need to identify the IP address of your Linux PC. IP (IPv4) Address for your Linux PC In Ubuntu Search, enter o Network and click on the Network icon This will display your Linux PC s IP (IPv4) address. It should be something like Write this down as you will need it for setting up your port forwarding, below. Open a browser on your Windows PC and enter this IP address. Your web site should open. Accessing Files on Your Linux PC from Your Windows PC Using FTP You can also transfer files to and from your Linux PC from your Windows PC using FTP and a file transfer protocol application like FileZilla. If you haven t already done so, download and install FileZilla on your Windows PC. Open FileZilla. In FileZilla In Ubuntu, click on the Files icon In your Home folder, create a folder called ftp (all lower case) Click into the ftp folder and create a folder called html (all lower case) Close Files On your Windows PC, open FileZilla In FileZilla, do the following In the upper left, click the Open Site Manager button Click: New Site

11 Page 11 of 15 On the General tab, configure settings as shown below, entering the username and password you set up for your FTP user. You should have saved this in Keepass. Site Manager Select Envy. S M y Sites General Host Protocol: Encryption: Advanced Transfer Settings Charset R IP File Transfer Protocol Use explicit FTP over TLS if available Port X vi Logon Type: User. Password: Normal userl V Background color: None V Comments: New Site New Bookmark Delete New Folder Rename Duplicate Connect Cancel L ok On the Advanced tab, configure settings as shown below. Your Default Local Directory can be set to anything you want on your Windows PC, but you may want to consider pointing this to your website development folder. Set the Default Remote Directory to your Linux PC s website

12 Page 12 of 15 home folder. Site Manager Select Entry: My Sites - womb General Advanced Transfer Settings Charset Server Type: Default (Autodetect) El Bypass proxy Default local directory: C:\Users\,,Dropbox\web-projects\test-s Browse..- Default remote directory: iftp/html Use synchronized browsing Directory comparison Adjust server timezone offset 0 Hours, 0 El Minutes New Site New Bookmark Delete New Folder Rename Duplicate Local site: C Users\nwjiv Dropbox \web-projects\test-site-01\ wsuse Outlook 8.. Photos Public Ltl Sandbox Videos 9 web-oroiects Et test-site-01 test-site-02 connect Remote site /ftp/html? Desktop? Documents? Downloads ftc html? Music Pictures 7 Public QK Cancel Click: Connect. You should be connected to your Linux PC via FTP. You should see something like the following Filename Filesize Filetype Last modified Filename Filesize Filetype Last modifi.. Permissi... L V Own css File folder 10/13/2017 3:1... images File folder 10/13/2017 6:0... scripts File folder 10/13/2017 4:4._ index.html 965 HTML File 10/13/2017 6:0.. Empty directory listing 1 file and 3 directories. Total size: 965 bytes Empty directory. Note that the html folder you are seeing on your Linux PC is not the folder that is hosting your website. That folder /var/www/html, is a root folder and you do not have privileges to it. However, you can access it if you bind it to a folder for which you do have privileges to, your folder named /ftp/html. We will do that next.

13 Page 13 of 15 Bind Root Files and Folders to Home To binding root files and folders to your home/ folder, do the following: In Ubuntu Search, enter o Terminal and click on the Terminal icon At the ~S Terminal prompt type the following and press Enter: sudo su You are now root user At the # Terminal prompt type the following and press Enter: mount --bind /var/www/html/ /home/me/ftp/html Where me is my username, you would substitute your username After this you will be able to see the needed files in your home directory and use them in your ftp client as if they were local files. If you need to make this configuration permanent, you can either add the mount command in some startup script or you can just include a line in /etc/fstab: /var/www/dev /home/ftp_user/www_dev none bind 0 0 See this link for more detail (link). Now go back to your Windows PC. Run FileZilla FTP client again and reconnect to your Linux PC. You should now see something like the following: Local site I CAUsers\nwjiv\ Dropbox \ web-projects \ test-site-01 \ -1 1 Outlook f3-1 Photos Eb-- jy Public al- 1 Sandbox Ep- 1 Videos El- 1 web-projects 153. test-site-01 test-site-02 Filename Filesize Filetype Last modified V Remote site: I /ftp/html = I I Desktop Documents Downloads ftp html Music Pictures Public Filename Filesize Filetype Last modifi... Permissi... Owm css File folder 10/13/2017 3:1... images File folder 10/13/2017 6:0... scripts File folder 10/13/2017 4:4... e index.html 965 HTML File 10/13/2017 6:0... e index.html 11,321 HTML File 10/29/ rw-r--r file and 3 directories. Total size: 965 bytes 1 file. Total size: 11,321 bytes Note that you can now see the index.html file which is really located in /var/www/html. Now you can see how you can build your website on your Windows PC and transfer the files to your Linux PC where they will be hosted on your Linux PC web server. Step 6 - Going On-line It s nice that you can access your Linux PC web server and files from your Windows PC on your home local area network (LAN). But, you want to be able to do so from the Internet. To do this you need to expose certain ports on your Linux PC to the Internet. This is called port forwarding and it is accomplished through settings you need to make on your home router. Each router can be a little bit

14 Page 14 of 15 different. This example will explain how to do this for a Linksys router. For other routers, check out this link (link). Access your router using a web browser on either your Windows PC or your Linux PC by entering the IP address for your router. It is typically Login in using your router s administrative username and password. Open the Security tab and set up port forwarding as shown below. Note that the Device IP# refers to your Linux PC s IP (IPv4) address which we obtained earlier, see (link). I 11\1/GV=" I '1-`, / Smart WI-rl Ann H I 1 - n7-. Sion Out Security View and change router settings Firewall DMZ Apps and Gaming DDNS I Single Port Forwarding I Port Range Forwarding I Port Range Triggering Application name External Port Internal Port Protocol Device!Pit Enabled VNC TCP True FTP Both True HTTP TCP True Edit/ Delete Edit/ Delete Edit/ Delete Add a new Single Port Forwarding Ok Cancel Apply Once you have saved these setting, your web server is online, unless, your ISP blocks the ports it needs to operate. These ports are: Application: VNC, External Port: 5800, Internal Port: 5900, Protocol: TCP Application: FTP, External Port: 21, Internal Port: 21, Protocol: Both (TCP and UDP) Application: HTTP, External Port: 80, Internal Port: 80, Protocol: TCP Additional ports may be required for gaming apps. If your ISP blocks the required ports, you can try negotiating with it or using a non-standard port. Check your port settings on CanYouSeeMe.org. References See PortForward.com (link)

15 Page 15 of 15 Step 7 - Get a Free Domain Install no-ip Dynamic Client Update on Linux PC See: Linux PC - Enable Remote Access With remote access, you'll be able to connect to your Linux PC remotely and control it. In Ubuntu Search, enter o Remote and click on the Desktop Sharing icon In the dialog box, make the following settings o Sharing Check: Allow other users to view your desktop Check: Allow other users to control your desktop o Security Uncheck: You must confirm each access to this machine Check to require the user to enter a password Provide a password. This password has limited character length. Record it using KeePass on your PC. o Show Notification Area Icon Select: Always Close the dialog box. Now you can access your PC from another PC.

#Uncomment the second line to enable any form of FTP write command. #write_enable=yes

#Uncomment the second line to enable any form of FTP write command. #write_enable=yes Installing and configuring Apache 2 in Linux Please note that dashes (-) are used to indicate what you should type, they should not be included in the command. Install Linux on an old desktop, dual core

More information

The Python Mini-Degree Development Environment Guide

The Python Mini-Degree Development Environment Guide The Python Mini-Degree Development Environment Guide By Zenva Welcome! We are happy to welcome you to the premiere Python development program available on the web The Python Mini-Degree by Zenva. This

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

Spreedbox Getting Started Guide

Spreedbox Getting Started Guide Spreedbox Getting Started Guide Last Updated: September 2017 CONTENTS 1. Introduction... 3 2. Prerequisites... 4 3. Opening the box... 5 4. USB Manual, Quick Start Guide & MAC Sticker... 6 5. International

More information

IT Essentials v6.0 Windows 10 Software Labs

IT Essentials v6.0 Windows 10 Software Labs IT Essentials v6.0 Windows 10 Software Labs 5.2.1.7 Install Windows 10... 1 5.2.1.10 Check for Updates in Windows 10... 10 5.2.4.7 Create a Partition in Windows 10... 16 6.1.1.5 Task Manager in Windows

More information

User Guide NAS 3.0 Adapter (NAS30U2)

User Guide NAS 3.0 Adapter (NAS30U2) T E C H N O L O G I E S User Guide NAS 3.0 Adapter (NAS30U2) www.addonics.com v5.1.11 Technical Support If you need any assistance to get your unit functioning properly, please have your product information

More information

Manually Mount Usb Flash Drive Ubuntu Server Command Line

Manually Mount Usb Flash Drive Ubuntu Server Command Line Manually Mount Usb Flash Drive Ubuntu Server Command Line 4 answers, How to access a usb flash drive from the terminal? (How can I mount a flash drive manually?) sudo mount -t ntfs-3g /dev/sdb1 /media/external.

More information

Installing the Operating System or Hypervisor

Installing the Operating System or Hypervisor If you purchased E-Series Server or NCE Option 1 (E-Series Server or NCE without a preinstalled operating system or hypervisor), you must install an operating system or hypervisor. This chapter includes

More information

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Created by Simon Monk Last updated on 2016-12-03 03:20:15 AM UTC Guide Contents Guide Contents Overview You Will Need Downloading

More information

Secure Browser Installation Manual For Technology Coordinators

Secure Browser Installation Manual For Technology Coordinators Secure Browser Installation Manual For Technology Coordinators 2016-2017 Published September 26, 2016 Prepared by the American Institutes for Research Descriptions of the operation of the Test Information

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

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

VII. Corente Services SSL Client

VII. Corente Services SSL Client VII. Corente Services SSL Client Corente Release 9.1 Manual 9.1.1 Copyright 2014, Oracle and/or its affiliates. All rights reserved. Table of Contents Preface... 5 I. Introduction... 6 Chapter 1. Requirements...

More information

Applied ICT Skills MS Windows

Applied ICT Skills MS Windows Applied ICT Skills MS Windows Lesson 1 - How to install an operating system into computer? Windows 7 is perhaps the best Microsoft operating system and is very easy to install compared to other windows.

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

Installing the Cisco Prime Optical Client

Installing the Cisco Prime Optical Client CHAPTER 7 This chapter describes how to install and start the Cisco Prime Optical 9.3.1 client on Windows, Solaris, or Linux. When you install the Prime Optical client, you automatically install Cisco

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

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

NetExtender for SSL-VPN

NetExtender for SSL-VPN NetExtender for SSL-VPN Document Scope This document describes how to plan, design, implement, and manage the NetExtender feature in a SonicWALL SSL-VPN Environment. This document contains the following

More information

Orchid Core VMS Installation Guide

Orchid Core VMS Installation Guide Orchid Core VMS Installation Guide Version 2.2.2 Orchid Core VMS Installation Guide v2.2.2 1 C O N T E N T S About the Orchid Core VMS Installation Guide 2 Installation 3 Working in Windows 3 Working in

More information

Anchor User Guide. Presented by: Last Revised: August 07, 2017

Anchor User Guide. Presented by: Last Revised: August 07, 2017 Anchor User Guide Presented by: Last Revised: August 07, 2017 TABLE OF CONTENTS GETTING STARTED... 1 How to Log In to the Web Portal... 1 How to Manage Account Settings... 2 How to Configure Two-Step Authentication...

More information

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved.

Install and upgrade Qlik Sense. Qlik Sense 3.2 Copyright QlikTech International AB. All rights reserved. Install and upgrade Qlik Sense Qlik Sense 3.2 Copyright 1993-2017 QlikTech International AB. All rights reserved. Copyright 1993-2017 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik

More information

How To Eject Cd Using Command Prompt >>>CLICK HERE<<<

How To Eject Cd Using Command Prompt >>>CLICK HERE<<< How To Eject Cd Using Command Prompt Windows 7 Eject and Close CD Tray Command line applications for ejecting or closing the Eject CD Helps you to easily eject/insert the cd-rom doors just by using the

More information

GRS Enterprise Synchronization Tool

GRS Enterprise Synchronization Tool GRS Enterprise Synchronization Tool Last Revised: Thursday, April 05, 2018 Page i TABLE OF CONTENTS Anchor End User Guide... Error! Bookmark not defined. Last Revised: Monday, March 12, 2018... 1 Table

More information

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials

RHEL 5 Essentials. Red Hat Enterprise Linux 5 Essentials Red Hat Enterprise Linux 5 Essentials 2 Red Hat Enterprise Linux 5 Essentials First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution

More information

LevelOne FNS bay/1usb Soho NAS. User s Manual

LevelOne FNS bay/1usb Soho NAS. User s Manual LevelOne FNS-1000 1- bay/1usb Soho NAS User s Manual Table of Contents Introduction... 2 The FNS-1000 NAS Server... 2 FNS-1000 Features... 2 Package Contents... 2 System Requirements... 2 Disclaimer...

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

1 Installation (briefly)

1 Installation (briefly) Jumpstart Linux Bo Waggoner Updated: 2014-09-15 Abstract A basic, rapid tutorial on Linux and its command line for the absolute beginner. Prerequisites: a computer on which to install, a DVD and/or USB

More information

L.A.M.P. Stack Part I

L.A.M.P. Stack Part I L.A.M.P. Stack Part I By George Beatty and Matt Frantz This lab will cover the basic installation and some configuration of a LAMP stack on a Ubuntu virtual box. Students will download and install the

More information

Addonics T E C H N O L O G I E S. mini NAS. Model: NAS25HDU Key Features

Addonics T E C H N O L O G I E S. mini NAS. Model: NAS25HDU Key Features 1.0 Key Features Addonics T E C H N O L O G I E S mini NAS Model: NAS25HDU2 Convert any 2.5 SATA drive into a Network Attached Storage device Connect a USB printer to share it over the network One Fast

More information

Installing MediaWiki using VirtualBox

Installing MediaWiki using VirtualBox Installing MediaWiki using VirtualBox Install VirtualBox with your package manager or download it from the https://www.virtualbox.org/ website and follow the installation instructions. Load an Image For

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 3 1.1 Introduction to RAID.. 3 1.2 RAID Configurations Precautions 4 1.3 Installing Windows 8 / 8 64-bit / 7 / 7 64-bit / Vista / Vista

More information

Ubuntu Supplement to X350 & X550 User s Guide NComputing X350 & X550 vspace Software for Linux on Ubuntu 8.04

Ubuntu Supplement to X350 & X550 User s Guide NComputing X350 & X550 vspace Software for Linux on Ubuntu 8.04 Ubuntu Supplement to X350 & X550 User s Guide NComputing X350 & X550 vspace Software for Linux on Ubuntu 8.04 Prepared by: NComputing TID 110.118-2c Revision 1.2 Updated: December 02, 2009 Copyright NComputing

More information

2018 XDT Pty Ltd Unit 2, 10 Westall Rd, Clayton VIC 3169 Australia Phone +61 (0) Fax

2018 XDT Pty Ltd Unit 2, 10 Westall Rd, Clayton VIC 3169 Australia Phone +61 (0) Fax Release 7 rev.388 2018 XDT Pty Ltd Unit 2, 10 Westall Rd, Clayton VIC 3169 Australia Phone +61 (0)3 9549-1122 Fax 9549-1199 http://www.catapultsoft.com 1 Table of contents 1 Table of contents... 2 2 About

More information

Orchid Fusion VMS Installation Guide

Orchid Fusion VMS Installation Guide Orchid Fusion VMS Installation Guide Version 2.4.0 Orchid Fusion VMS Installation Guide v2.4.0 1 C O N T E N T S About the Orchid Fusion VMS Installation Guide 2 Installation 3 Working in Windows 3 Working

More information

User Manual DIR-850L. Wireless AC1200 Dual Band Gigabit Router.

User Manual DIR-850L. Wireless AC1200 Dual Band Gigabit Router. User Manual DIR-850L Wireless AC1200 Dual Band Gigabit Router USER MANUAL: DIR-850L Wireless AC1200 Dual Band Gigabit Router SYSTEM REQUIREMENTS Network Requirements Web-based Configuration Utility Requirements

More information

Installing the Cisco Unified MeetingPlace Web Server Software

Installing the Cisco Unified MeetingPlace Web Server Software Installing the Cisco Unified MeetingPlace Web Server Software Release 8.5 Revised: 2/19/13 : Install the Application Server (which includes the Software Media Server) : Install the Hardware Media Server

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

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server.

You can use the WinSCP program to load or copy (FTP) files from your computer onto the Codd server. CODD SERVER ACCESS INSTRUCTIONS OVERVIEW Codd (codd.franklin.edu) is a server that is used for many Computer Science (COMP) courses. To access the Franklin University Linux Server called Codd, an SSH connection

More information

Simulation Manager Configuration Guide

Simulation Manager Configuration Guide Cornell University College of Veterinary Medicine Student Training Simulation Project Simulation Manager Configuration Guide 2018-Oct-1 Version 1.9 Prepared by: I-Town Design David Weiner 117 Burleigh

More information

eftp Application User Guide

eftp Application User Guide Team A eftp User Guide 1/30 eftp Application User Guide Table of Contents Page 1. Acknowledgement 2 2. Introduction a. Welcome eftp Audience 3 b. What s in this manual 3 c. Manual Conventions 3 d. Getting

More information

Virtual CD TS 1 Introduction... 3

Virtual CD TS 1 Introduction... 3 Table of Contents Table of Contents Virtual CD TS 1 Introduction... 3 Document Conventions...... 4 What Virtual CD TS Can Do for You...... 5 New Features in Version 10...... 6 Virtual CD TS Licensing......

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

Tutorial How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment

Tutorial How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment Tutorial How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment Version 1.6 This tutorial will walk you through how to create a bootable USB drive to enter into a WINPE

More information

TECHNICAL DOCUMENT. Upgrading to PathPilot v2.0.x. 1.1 What's New in PathPilot v2.0.x

TECHNICAL DOCUMENT. Upgrading to PathPilot v2.0.x. 1.1 What's New in PathPilot v2.0.x Upgrading to PathPilot v2.0.x Product Identification: This kit includes one PathPilot v2.0.x Installation USB Drive. Purpose: This document gives instructions on installing the PathPilot v2.0.x upgrade.

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

Install and setup TrueCrypt

Install and setup TrueCrypt Install and setup TrueCrypt Install and setup TrueCrypt This guide is for organisations and individuals who wish to use TrueCrypt to secure their computer(s) and/or portable USB drives. It explains how

More information

Setting Up a Linux Operating System

Setting Up a Linux Operating System Name: Setting Up a Linux Operating System We will be using the Linux operating system for most of our practical work in this class. Knoppix is a live CD distribution of Linux, based on the Debian distribution.

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Tutorial - How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment

Tutorial - How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment Tutorial - How to upgrade firmware on Phison S9 controller MyDigitalSSD using a Windows PE environment Version 1.9 This tutorial will walk you through how to create a bootable USB drive to enter into a

More information

Cisco CTL Client setup

Cisco CTL Client setup Cisco CTL Client setup This chapter provides information about Cisco CTL client setup. About Cisco CTL Client setup, page 2 Remove etoken Run Time Environment 3.00 for CTL Client 5.0 plug-in, page 2 Cisco

More information

The installation provides enhancements to earlier systems and fixes reported errors.

The installation provides enhancements to earlier systems and fixes reported errors. RandomWare Update Installation: Version 4.01.018 The installation provides enhancements to earlier systems and fixes reported errors. Contents 1. Installation from Disc... 2 2. Installation from Download...

More information

Automation Anywhere Enterprise 10 LTS

Automation Anywhere Enterprise 10 LTS Automation Anywhere Enterprise 10 LTS Document Version: 1.3 Installation Guide Date of Publication: 15 th November, 2016 Update(s) to this document edition: Table of Contents 1. Client Prerequisites Processor

More information

Install and Configure Ubuntu on a VirtualBox Virtual Machine

Install and Configure Ubuntu on a VirtualBox Virtual Machine Install and Configure Ubuntu on a VirtualBox Virtual Machine Ronald Mak Department of Computer Engineering Department of Computer Science January 11, 2019 Introduction Because the class will use Linux

More information

LiveNX Upgrade Guide from v5.2.0 to v5.2.1

LiveNX Upgrade Guide from v5.2.0 to v5.2.1 LIVEACTION, INC. LiveNX Upgrade Guide from v5.2.0 to v5.2.1 UPGRADE LiveAction, Inc. 3500 Copyright WEST BAYSHORE 2016 LiveAction, ROAD Inc. All rights reserved. LiveAction, LiveNX, LiveUX, the LiveAction

More information

Cisco CTL Client Setup

Cisco CTL Client Setup This chapter provides information about Cisco CTL client setup. About, page 2 Addition of Second SAST Role in the CTL File for Recovery, page 2 Cluster Encryption Configuration Through CLI, page 3 Remove

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide.. 2 1.1 Introduction to RAID.. 2 1.2 RAID Configurations Precautions 3 1.3 Installing Windows 7 / 7 64-bit / Vista TM / Vista TM 64-bit /

More information

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version... Contents Note: pay attention to where you are........................................... 1 Note: Plaintext version................................................... 1 Hello World of the Bash shell 2 Accessing

More information

Format Hard Drive After Install Ubuntu From Usb

Format Hard Drive After Install Ubuntu From Usb Format Hard Drive After Install Ubuntu From Usb is it possible to format and partition the new hdd (external to my laptop, and connected to my laptop via sata-usb adapter), and install Ubuntu on the new

More information

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation

Agent and Agent Browser. Updated Friday, January 26, Autotask Corporation Agent and Agent Browser Updated Friday, January 26, 2018 2018 Autotask Corporation Table of Contents Table of Contents 2 The AEM Agent and Agent Browser 3 AEM Agent 5 Privacy Mode 9 Agent Browser 11 Agent

More information

Setting up the Linksys Smart Wi-Fi Router using the Smart Setup Wizard

Setting up the Linksys Smart Wi-Fi Router using the Smart Setup Wizard Setting up the Linksys Smart Wi-Fi Router using the Smart Setup Wizard This article will guide you on how to set up your Linksys Smart Wi-Fi Router using the Smart Setup Wizard. QUICK TIP: The Smart Setup

More information

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1

Aspera Connect Windows XP, 2003, Vista, 2008, 7. Document Version: 1 Aspera Connect 2.6.3 Windows XP, 2003, Vista, 2008, 7 Document Version: 1 2 Contents Contents Introduction... 3 Setting Up... 4 Upgrading from a Previous Version...4 Installation... 4 Set Up Network Environment...

More information

Centurion Technologies

Centurion Technologies Centurion Technologies Answer File Installations Updated 03/25/14 Technical Support Available Monday to Friday hours: 8:30AM until 5:30PM CST/CDT 1-844-265-6055 support@centuriontech.com Introduction SmartShield

More information

Client Installation and User's Guide

Client Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1 Client Installation and User's Guide SC27-2809-03 IBM Tivoli Storage Manager FastBack for Workstations Version 7.1 Client Installation

More information

Installing and Configuring Worldox/Web Mobile

Installing and Configuring Worldox/Web Mobile Installing and Configuring Worldox/Web Mobile SETUP GUIDE v 1.1 Revised 6/16/2009 REVISION HISTORY Version Date Author Description 1.0 10/20/2008 Michael Devito Revised and expanded original draft document.

More information

USER GUIDE. CTERA Agent for Windows. June 2016 Version 5.5

USER GUIDE. CTERA Agent for Windows. June 2016 Version 5.5 USER GUIDE CTERA Agent for Windows June 2016 Version 5.5 Copyright 2009-2016 CTERA Networks Ltd. All rights reserved. No part of this document may be reproduced in any form or by any means without written

More information

Channel 4. User Manual. Version 2.0

Channel 4. User Manual. Version 2.0 Channel 4 User Manual Version 2.0 Table Of Contents Introduction... 1 System Requirements... 2 Installation... 3 Creating a Program... 7 Uploading a Program... 8 Support... 8 Introduction Evsl s Channel

More information

Operating Systems Linux 1-2 Measurements Background material

Operating Systems Linux 1-2 Measurements Background material Operating Systems Linux 1-2 Measurements Background material Introduction The Linux measurements were designed to allow you to have an impression about the administration of Linux severs along with providing

More information

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud

Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Bitnami ProcessMaker Community Edition for Huawei Enterprise Cloud Description ProcessMaker is an easy-to-use, open source workflow automation and Business Process Management platform, designed so Business

More information

College of Pharmacy Windows 10

College of Pharmacy Windows 10 College of Pharmacy Windows 10 Windows 10 is the version of Microsoft s flagship operating system that follows Windows 8; the OS was released in July 2015. Windows 10 is designed to address common criticisms

More information

Macintosh OS X 10.3 Tips

Macintosh OS X 10.3 Tips Macintosh OS X 10.3 Tips Copyright 2004 Oliver Jovanovic Mail Tips Mail ~/Library/Mail stores most mail files ~/Library/Mail/LSMMap file stores junk mail training ~/Library/Mail/Mailboxes stores mail (can

More information

Guide to your Plug Computer

Guide to your Plug Computer This document lives here: http://inst.eecs.berkeley.edu/~ee122/fa11/project3/guide-to-plug.pdf Guide to your Plug Computer UC Berkeley, EE 122, Fall 2011 Version 1 This document is a step-by-step guide

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

CHAPTER 7 ADVANCED ADMINISTRATION PC

CHAPTER 7 ADVANCED ADMINISTRATION PC ii Table of Contents CHAPTER 1 INTRODUCTION... 1 Broadband ADSL Router Features... 1 Package Contents... 3 Physical Details... 4 CHAPTER 2 INSTALLATION... 6 Requirements... 6 Procedure... 6 CHAPTER 3 SETUP...

More information

For this class we are going to create a file in Microsoft Word. Open Word on the desktop.

For this class we are going to create a file in Microsoft Word. Open Word on the desktop. File Management Windows 10 What is File Management? As you use your computer and create files you may need some help in storing and retrieving those files. File management shows you how to create, move,

More information

Wireless-G Router User s Guide

Wireless-G Router User s Guide Wireless-G Router User s Guide 1 Table of Contents Chapter 1: Introduction Installing Your Router System Requirements Installation Instructions Chapter 2: Preparing Your Network Preparing Your Network

More information

New to Mac. Viewing Options in Finder:

New to Mac. Viewing Options in Finder: New to Mac Finder Preferences Finder helps you find and organize your files. To set Finder preferences, click on your desktop > Click Finder on the top left menu > Preferences. General Check External Hard

More information

Bitnami Coppermine for Huawei Enterprise Cloud

Bitnami Coppermine for Huawei Enterprise Cloud Bitnami Coppermine for Huawei Enterprise Cloud Description Coppermine is a multi-purpose, full-featured web picture gallery. It includes user management, private galleries, automatic thumbnail creation,

More information

Cisco Host Upgrade Utility 3.0 User Guide

Cisco Host Upgrade Utility 3.0 User Guide First Published: 2016-12-14 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 2016-2018

More information

AST2500 ibmc Configuration Guide

AST2500 ibmc Configuration Guide AST2500 ibmc Configuration Guide Version 1.0b Copyright Copyright 2017 MITAC COMPUTING TECHNOLOGY CORPORATION. All rights reserved. No part of this manual may be reproduced or translated without prior

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

Deposit Wizard TellerScan Installation Guide

Deposit Wizard TellerScan Installation Guide Guide Table of Contents System Requirements... 2 WebScan Overview... 2 Hardware Requirements... 2 Supported Browsers... 2 Driver Installation... 2 Step 1 - Determining Windows Edition & Bit Count... 3

More information

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.06 AND 5.1.0 DU-07754-001 _v6.0 through 6.2 July 2018 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA vgpu Software License Server... 1 1.1. Overview

More information

TCP/IP CONFIGURATION 3-6

TCP/IP CONFIGURATION 3-6 TCP/IP CONFIGURATION 3. Type IPCONFIG /RENEW and press the Enter key. Verify that your IP Address is now 192.168.2.xxx, your Subnet Mask is 255.255.255.0 and your Default Gateway is 192.168.2.1. These

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

Ricoh Managed File Transfer (MFT) User Guide

Ricoh Managed File Transfer (MFT) User Guide Ricoh Managed File Transfer (MFT) User Guide -- TABLE OF CONTENTS 1 ACCESSING THE SITE... 3 1.1. WHAT IS RICOH MFT... 3 1.2. SUPPORTED BROWSERS... 3 1.3. LOG IN... 3 1.4. NAVIGATION... 4 1.5. FORGOTTEN

More information

VMware AirWatch: Directory and Certificate Authority

VMware AirWatch: Directory and Certificate Authority Table of Contents Lab Overview - HOL-1857-06-UEM - VMware AirWatch: Directory and Certificate Authority Integration... 2 Lab Guidance... 3 Module 1 - Advanced AirWatch Configuration, AD Integration/Certificates

More information

Kollaborate Server. Installation Guide

Kollaborate Server. Installation Guide 1 Kollaborate Server Installation Guide Kollaborate Server is a local implementation of the Kollaborate cloud workflow system that allows you to run the service in-house on your own server and storage.

More information

Linux Mint 18. Cinnamon Edition

Linux Mint 18. Cinnamon Edition Linux Mint 18 Cinnamon Edition NOTE from mikeb of Code-it Software Solutions: I personally take no credit for the content of this file it was stolen from the original copy from the Linux Mint web site

More information

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition

BLUEPRINT TEAM REPOSITORY. For Requirements Center & Requirements Center Test Definition BLUEPRINT TEAM REPOSITORY Installation Guide for Windows For Requirements Center & Requirements Center Test Definition Table Of Contents Contents Table of Contents Getting Started... 3 About the Blueprint

More information

power port make sure the ac adapter is plugged into the correct port Make sure to include at the beginning.

power port make sure the ac adapter is plugged into the correct port Make sure to include  at the beginning. Quickstart Guide If you have a blank SD card, you may insert it into the camera. To set up your camera for use on the network, connect the camera's wired network port to a router. Connect the AC adapter

More information

Macintosh OS X Tips. Mail Tips

Macintosh OS X Tips. Mail Tips Macintosh OS X Tips Copyright 2003 Oliver Jovanovic Mail Tips Mail Works with IMAP (Internet Message Access Protocol) or POP (Post Office Protocol) mail servers ~/Library/Mail stores most mail files ~/Library/Mail/LSMMap

More information

How To Install Windows Updates 8 From Usb

How To Install Windows Updates 8 From Usb How To Install Windows Updates 8 From Usb Hard Drive Iso You can also use Rufus to create a bootable USB drive with the ISO. writer, you can right-click on the ISO file in Windows 7 or 8 and burn it to

More information

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3

Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 Configuring GNS3 for CCNA Security Exam (for Windows) Software Requirements to Run GNS3 From Cisco s website, here are the minimum requirements for CCP 2.7 and CCP 2.8: The following info comes from many

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

BASICS OF PORT FORWARDING ON A ROUTER

BASICS OF PORT FORWARDING ON A ROUTER BASICS OF PORT FORWARDING ON A ROUTER FOR SECURITY DVRS 192.168.1.100 Internet Public IP Address 72.248.26.116 Private IP Address 192.168.1.1 192.168.1.150 192.168.1.200 www.nightowlsp.com Basics of Port

More information

BACKUP APP V7 MICROSOFT SYSTEM BACKUP AND RESTORE GUIDE

BACKUP APP V7 MICROSOFT SYSTEM BACKUP AND RESTORE GUIDE V7 MICROSOFT SYSTEM BACKUP AND RESTORE GUIDE Revision History Date Descriptions Type of modification 27 July 2016 First Draft New 3 Feb 2017 Added instructions and screen shots for Encryption New key handling

More information

Managing Files. In this chapter

Managing Files. In this chapter In this chapter Displaying Your Computer s Contents Navigating Folders Creating a New Folder Displaying and Selecting Files Deleting and Undeleting Files and Folders Renaming a File or Folder Moving Folders

More information

APPENDIX B: INSTALLATION AND SETUP

APPENDIX B: INSTALLATION AND SETUP APPENDIX B: INSTALLATION AND SETUP Page A. Overview... B:1 How do I install and setup ICMS?... B:1 Do I need special security rights to install ICMS?... B:1 Installation Basics... B:1 How do I get a quick

More information