Free Essay

Haddoop Installation

In:

Submitted By saicharen1995
Words 2067
Pages 9
In this tutorial, the required steps has been described for setting up a pseudo-distributed, single-node Hadoop cluster backed by the Hadoop Distributed File System, running on Ubuntu Linux.
Installing Python
$ sudo apt-get install python-software-properties
$ sudo add-apt-repository ppa:ferramroberto/java

Update the source list
$ sudo apt-get update

Install Sun Java 6 JDK
$ sudo apt-get install sun-java6-jdk

Select Sun's Java as the default on your machine. (See 'sudo update-alternatives --config java' for more information.)
$ sudo update-java-alternatives -s java-6-sun

The full JDK which will be placed in /usr/lib/jvm/java-6-sun (well, this directory is actually a symlink on Ubuntu).

After installation, make a quick check whether Sun’s JDK is correctly set up:
$ java –version

java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) Client VM (build 16.3-b01, mixed mode, sharing)

Adding a dedicated Hadoop system user $ sudo addgroup hadoop
$ sudo adduser --ingroup hadoop hduser

This will add the user hduser and the group hadoop to your local machine.

Configuring SSH user@ubuntu:~$ su – hduser hduser@ubuntu:~$ ssh-keygen -t rsa -P ""
Generating public/private rsa key pair.
Enter file in which to save the key (/home/hduser/.ssh/id_rsa):
Created directory '/home/hduser/.ssh'.
Your identification has been saved in /home/hduser/.ssh/id_rsa.
Your public key has been saved in /home/hduser/.ssh/id_rsa.pub.
The key fingerprint is:
9b:82:ea:58:b4:e0:35:d7:ff:19:66:a6:ef:ae:0e:d2 hduser@ubuntu
The key's randomart image is:
[...snipp...]
hduser@ubuntu:~$ cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys hduser@ubuntu:~$ ssh localhost
The authenticity of host 'localhost (::1)' can't be established.
RSA key fingerprint is d7:87:25:47:ae:02:00:eb:1d:75:4f:bb:44:f9:36:26.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'localhost' (RSA) to the list of known hosts.
Linux ubuntu 2.6.32-22-generic #33-Ubuntu SMP Wed Apr 28 13:27:30 UTC 2010 i686 GNU/Linux
Ubuntu 10.04 LTS
[...snipp...]
hduser@ubuntu:~$

If the SSH connect should fail, these general tips might help:
Enable debugging with ssh -vvv localhost and investigate the error in detail.
Check the SSH server configuration in /etc/ssh/sshd_config, in particular the options PubkeyAuthentication (which should be set to yes) and AllowUsers (if this option is active, add the hduser user to it). If you made any changes to the SSH server configuration file, you can force a configuration reload with sudo /etc/init.d/ssh reload.

Disabling IPv6

One problem with IPv6 on Ubuntu is that using 0.0.0.0 for the various networking-related Hadoop configuration options will result in Hadoop binding to the IPv6 addresses of my Ubuntu box. In my case, I realized that there’s no practical point in enabling IPv6 on a box when you are not connected to any IPv6 network. Hence, I simply disabled IPv6 on my Ubuntu machine. Your mileage may vary.
To disable IPv6 on Ubuntu 10.04 LTS, open /etc/sysctl.conf in the editor of your choice and add the following lines to the end of the file:
/etc/sysctl.conf
# disable ipv6 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1

You have to reboot your machine in order to make the changes take effect.
You can check whether IPv6 is enabled on your machine with the following command:
$ cat /proc/sys/net/ipv6/conf/all/disable_ipv6
A return value of 0 means IPv6 is enabled, a value of 1 means disabled (that’s what we want).
Hadoop Installation
Download Hadoop from the Apache Download Mirrors and extract the contents of the Hadoop package to a location of your choice. I picked /usr/local/hadoop. Make sure to change the owner of all the files to the hduser user and hadoop group, for example:
$ cd /usr/local
$ sudo tar xzf hadoop-1.0.3.tar.gz
$ sudo mv hadoop-1.0.3 hadoop
$ sudo chown -R hduser:hadoop hadoop
(Just to give you the idea, YMMV – personally, I create a symlink from hadoop-1.0.3 to hadoop.)

Update $HOME/.bashrc

Add the following lines to the end of the $HOME/.bashrc file of user hduser.

$HOME/.bashrc
# Set Hadoop-related environment variables export HADOOP_HOME=/usr/local/hadoop

# Set JAVA_HOME (we will also configure JAVA_HOME directly for Hadoop later on) export JAVA_HOME=/usr/lib/jvm/java-6-sun

# Some convenient aliases and functions for running Hadoop-related commands unalias fs &> /dev/null alias fs="hadoop fs" unalias hls &> /dev/null alias hls="fs -ls"

# If you have LZO compression enabled in your Hadoop cluster and
# compress job outputs with LZOP (not covered in this tutorial):
# Conveniently inspect an LZOP compressed file from the command
# line; run via:
#
# $ lzohead /hdfs/path/to/lzop/compressed/file.lzo
#
# Requires installed 'lzop' command.
#
lzohead () { hadoop fs -cat $1 | lzop -dc | head -1000 | less
}

# Add Hadoop bin/ directory to PATH export PATH=$PATH:$HADOOP_HOME/bin

Configuration hadoop-env.sh The only required environment variable we have to configure for Hadoop in this tutorial is JAVA_HOME. Open conf/hadoop-env.sh in the editor of your choice (if you used the installation path in this tutorial, the full path is /usr/local/hadoop/conf/hadoop-env.sh) and set the JAVA_HOME environment variable to the Sun JDK/JRE 6 directory.

Change conf/hadoop-env.sh # The java implementation to use. Required.
# export JAVA_HOME=/usr/lib/j2sdk1.5-sun

to

conf/hadoop-env.sh
# The java implementation to use. Required. export JAVA_HOME=/usr/lib/jvm/java-6-sun

Note: If you are on a Mac with OS X 10.7 you can use the following line to set up JAVA_HOME in conf/hadoop-env.sh.

conf/hadoop-env.sh (on Mac systems)
# for our Mac users export JAVA_HOME=`/usr/libexec/java_home` conf/*-site.xml In this section, we will configure the directory where Hadoop will store its data files, the network ports it listens to, etc. Our setup will use Hadoop’s Distributed File System, HDFS, even though our little “cluster” only contains our single local machine.
You can leave the settings below “as is” with the exception of the hadoop.tmp.dir parameter – this parameter you must change to a directory of your choice. We will use the directory /app/hadoop/tmp in this tutorial. Hadoop’s default configurations use hadoop.tmp.dir as the base temporary directory both for the local file system and HDFS, so don’t be surprised if you see Hadoop creating the specified directory automatically on HDFS at some later point.
Now we create the directory and set the required ownerships and permissions:
$ sudo mkdir -p /app/hadoop/tmp
$ sudo chown hduser:hadoop /app/hadoop/tmp
$ sudo chmod 750 /app/hadoop/tmp

If you forget to set the required ownerships and permissions, you will see a java.io.IOException when you try to format the name node in the next section).

Add the following snippets between the ... tags in the respective configuration XML file.
In file conf/core-site.xml: conf/core-site.xml hadoop.tmp.dir /app/hadoop/tmp A base for other temporary directories.

fs.default.name hdfs://localhost:54310 The name of the default file system. A URI whose scheme and authority determine the FileSystem implementation. The uri's scheme determines the config property (fs.SCHEME.impl) naming the FileSystem implementation class. The uri's authority is used to determine the host, port, etc. for a filesystem.

In file conf/mapred-site.xml: conf/mapred-site.xml mapred.job.tracker localhost:54311 The host and port that the MapReduce job tracker runs at. If "local", then jobs are run in-process as a single map and reduce task.

In file conf/hdfs-site.xml: conf/hdfs-site.xml dfs.replication 1 Default block replication.

The actual number of replications can be specified when the file is created. The default is used if replication is not specified in create time.

Formatting the HDFS filesystem via the NameNode
The first step to starting up your Hadoop installation is formatting the Hadoop filesystem which is implemented on top of the local filesystem of your “cluster” (which includes only your local machine if you followed this tutorial). You need to do this the first time you set up a Hadoop cluster.

Do not format a running Hadoop filesystem as you will lose all the data currently in the cluster (in HDFS)!

To format the filesystem (which simply initializes the directory specified by the dfs.name.dirvariable), run the command

hduser@ubuntu:~$ /usr/local/hadoop/bin/hadoop namenode -format

The output will look like this:

hduser@ubuntu:/usr/local/hadoop$ bin/hadoop namenode -format
10/05/08 16:59:56 INFO namenode.NameNode: STARTUP_MSG:
/************************************************************
STARTUP_MSG: Starting NameNode
STARTUP_MSG: host = ubuntu/127.0.1.1
STARTUP_MSG: args = [-format]
STARTUP_MSG: version = 0.20.2
STARTUP_MSG: build = https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20 -r 911707; compiled by 'chrisdo' on Fri Feb 19 08:07:34 UTC 2010
************************************************************/
10/05/08 16:59:56 INFO namenode.FSNamesystem: fsOwner=hduser,hadoop
10/05/08 16:59:56 INFO namenode.FSNamesystem: supergroup=supergroup
10/05/08 16:59:56 INFO namenode.FSNamesystem: isPermissionEnabled=true
10/05/08 16:59:56 INFO common.Storage: Image file of size 96 saved in 0 seconds.
10/05/08 16:59:57 INFO common.Storage: Storage directory .../hadoop-hduser/dfs/name has been successfully formatted.
10/05/08 16:59:57 INFO namenode.NameNode: SHUTDOWN_MSG:
/************************************************************
SHUTDOWN_MSG: Shutting down NameNode at ubuntu/127.0.1.1
************************************************************/
hduser@ubuntu:/usr/local/hadoop$
Starting your single-node cluster
Run the command:

hduser@ubuntu:~$ /usr/local/hadoop/bin/start-all.sh

This will startup a Namenode, Datanode, Jobtracker and a Tasktracker on your machine.

The output will look like this:

hduser@ubuntu:/usr/local/hadoop$ bin/start-all.sh

starting namenode, logging to /usr/local/hadoop/bin/../logs/hadoop-hduser-namenode-ubuntu.out localhost: starting datanode, logging to /usr/local/hadoop/bin/../logs/hadoop-hduser-datanode-ubuntu.out localhost: starting secondarynamenode, logging to /usr/local/hadoop/bin/../logs/hadoop-hduser-secondarynamenode-ubuntu.out starting jobtracker, logging to /usr/local/hadoop/bin/../logs/hadoop-hduser-jobtracker-ubuntu.out localhost: starting tasktracker, logging to /usr/local/hadoop/bin/../logs/hadoop-hduser-tasktracker-ubuntu.out hduser@ubuntu:/usr/local/hadoop$ A nifty tool for checking whether the expected Hadoop processes are running is jps (part of Sun’s Java since v1.5.0). See also How to debug MapReduce programs. hduser@ubuntu:/usr/local/hadoop$ jps
2287 TaskTracker
2149 JobTracker
1938 DataNode
2085 SecondaryNameNode
2349 Jps
1788 NameNode

Stopping your single-node cluster
Run the command

hduser@ubuntu:~$ /usr/local/hadoop/bin/stop-all.sh

to stop all the daemons running on your machine.

Hadoop Web Interfaces

Hadoop comes with several web interfaces which are by default (see conf/hadoop-default.xml) available at these locations:

http://localhost:50070/ – web UI of the NameNode daemon http://localhost:50030/ – web UI of the JobTracker daemon http://localhost:50060/ – web UI of the TaskTracker daemon

These web interfaces provide concise information about what’s happening in your Hadoop cluster. You might want to give them a try.

NameNode Web Interface (HDFS layer)
The name node web UI shows you a cluster summary including information about total/remaining capacity, live and dead nodes. Additionally, it allows you to browse the HDFS namespace and view the contents of its files in the web browser. It also gives access to the local machine’s Hadoop log files.

By default, it’s available at http://localhost:50070/. JobTracker Web Interface (MapReduce layer)
The JobTracker web UI provides information about general job statistics of the Hadoop cluster, running/completed/failed jobs and a job history log file. It also gives access to the ‘‘local machine’s’’ Hadoop log files (the machine on which the web UI is running on).

By default, it’s available at http://localhost:50030/. TaskTracker Web Interface (MapReduce layer)
The task tracker web UI shows you running and non-running tasks. It also gives access to the ‘‘local machine’s’’ Hadoop log files. By default, it’s available at http://localhost:50060/. For more clarity
http://www.michael-noll.com/tutorials/running-hadoop-on-ubuntu-linux-single-node-cluster/

Similar Documents

Free Essay

Zsfdzfdzf

...================================================================== Robin Hood – The Legend of Sherwood v1.0 Readme file – October 25th, 2002 ================================================================== Thank you for purchasing Robin Hood – The Legend of Sherwood. The Spellbound Team wishes you a lot of fun with their new game. This readme file contains useful information that could help you to solve problems with the game. ================================================================== CONTENTS Getting Started · System Requirements · DirectXtm and driver information · Installing and starting the game · Uninstallation Problems and Solutions · Performance optimisation on slow systems · Known problems · Technical Support ================================================================== GETTING STARTED ================================================================== System Requirements ------------------------------------------------------------------ OS: Windows 98/ME/2000/XP CPU: 233 MHz Intel Pentium II or similar CPU RAM: 64 MB CD/DVD-ROM speed: 4x Hard drive space: 1GB available Video: 4 MB RAM and DirectXtm-compatible Sound: DirectXtm compatible sound device Input: Keyboard, Mouse Recommended: CPU: 500 MHz Pentium III or similar CPU RAM: 128 MB DirectXtm and driver information ------------------------------------------------------------------ ...

Words: 1079 - Pages: 5

Free Essay

Case Analysis

...| 1 Deep Freeze Standard User Guide 2 | Last modified: April, 2010 © 1999 - 2010 Faronics Corporation. All rights reserved. Faronics, Deep Freeze, Faronics Core Console, Faronics Anti-Executable, Faronics Device Filter, Faronics Power Save, Faronics Insight, Faronics System Profiler, and WINSelect are trademarks and/or registered trademarks of Faronics Corporation. All other company and product names are trademarks of their respective owners. Deep Freeze Standard User Guide | Contents Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Important Information. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 About Faronics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 Product Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 Technical Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Contact Information. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 System Requirements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...

Words: 1981 - Pages: 8

Free Essay

Apple

...(.EXE, 2.5 Mb) Click here to install the MegaStat® add-in for Excel® Mac®: 2011 (.ZIP, 1.8 Mb) Click here to download the MegaStat® User’s Guide (PDF, 3.5 Mb) System Requirements: Operating system (32 or 64 bit): Windows® XP® / Vista® / 7® / 8® and Mac® OS-X® Excel® 32 bit versions: 2007 / 2010 / 2013 and Excel® Mac®: 2011 You must use the version designed for your operating system. If you want more technical details regarding MegaStat® system requirements and the installation process, see the FAQ document posted at www.mhhe.com/megastat. MegaStat® Start-up Instructions  How to Install the Windows® version: After clicking on the link above, you will be prompted to run or save the file. Click ‘Run’ and the add-in will install to a default add-ins directory. You will also get a pop-up window for User Account Control. Click Yes to proceed. It is recommended that you accept all default settings as the program prompts during the installation. You must exit Excel® before running the installation program. The file you are running is an executable (.exe). Some firewalls may block .exe files for security purposes. If you receive warnings when you try to download/run this file, please follow the instructions of your firewall program to allow this download. NOTE: You may need administrative rights to install this software on your computer. To activate MegaStat:  After running the MegaStat® installer program, you need to get MegaStat® on the Excel Add-Ins ribbon...

Words: 1007 - Pages: 5

Premium Essay

Information Technology

...a user’s Documents, Desktop, and other folders so that they are stored on a network drive rather than the local computer 8. Settings in the Kerberos Policy section of Group Policy allow you to configure the maximum allowable clock skew between a client and a domain controller. 9. Auditing for Policy Change Events will alert you when a change is made to User Rights assignments, IPSec policies, or trust relationships. 10. You can create a consistent service startup configuration for multiple computers by using the System Services node in Group Policy. Matching: 1. This feature of Group Policy software installation will automatically reinstall critical application files if they are accidentally or maliciously deleted- G. Self Healing 2. Group Policy software installations rely on this file type to create an installation package that can be cleanly Assigned and Published and that has self-healing capabilities- I. msi file 3. This default security level in software...

Words: 481 - Pages: 2

Premium Essay

Repair Shop

...Unit 10 Analysis 1: Repair Shop NT1110-T Repair Shop Since a computer repair shop will pretty much automatically due two things before working on your computer, which is back up any pictures, videos and documents to a DVD and format the hard drive and reinstall the operating system, it sounds like a good thing to do. However, there can be some pros and some cons to this. The pros would be that everything is backed up and saved on a DVD, therefore none of the customers information is lost on the computer; this would be less time consuming for the customer. The customer would also benefit from a formatted hard drive and the reinstallation of the operating system. Once done, the customer has a repaired computer. The cons to this, is that the customer could be out of a considerable amount of money. Most repair shops will charge for the backup of all files. So it would be best to this on your own before taking it in. Also, the repair shop will not install all the applications that you were using on your computer. Again, you would have to take the time to do this yourself after all repairs are done. Different users can be affected much differently by the policies of this repair shop. Someone with a brand new computer would not have anything to back up versus someone that has had their computer for several years. A user that mostly browses the internet and does not email will not lose documents, files versus a business professional that creates these things on a daily...

Words: 319 - Pages: 2

Free Essay

Scince

...| 1 Deep Freeze Standard User Guide 2 | Last modified: April, 2010 © 1999 - 2010 Faronics Corporation. All rights reserved. Faronics, Deep Freeze, Faronics Core Console, Faronics Anti-Executable, Faronics Device Filter, Faronics Power Save, Faronics Insight, Faronics System Profiler, and WINSelect are trademarks and/or registered trademarks of Faronics Corporation. All other company and product names are trademarks of their respective owners. Deep Freeze Standard User Guide | Contents 3 Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Important Information. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 About Faronics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 Product Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 Technical Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Contact Information. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 System Requirements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ....

Words: 1981 - Pages: 8

Free Essay

Corporate Low

...all those 3 informations you are good to go! 1 - Download bootstrap files (Kernel and ramdisk image). # cd /boot # mkdir centos6 # cd centos6 # wget http://mirror.centos.org/centos/6/os/x86_64/isolinux/vmlinuz # wget http://mirror.centos.org/centos/6/os/x86_64/isolinux/initrd.img Add an entry to the Grub Loader # vi /boot/grub/menu.lst ## Add the following lines to the end of the file and count how many lines starts with tittle: title CentOS 6 VNC Installation         root (hd0,0)               kernel /centos6/vmlinuz vnc vncpassword=houseoflinux headless ip=10.0.0.10 netmask=255.255.255.0 gateway=10.0.0.1 dns=10.0.0.5 ksdevice=eth0 method=http://mirror.centos.org/centos/6/os/x86_64/ lang=en_US keymap=us         initrd /centos6/initrd.img In my case with I had total 3 entries because I am updating a CentOS 5.6 to CentOS 6 and I had a couple update. If we have 3 title entries there, the 3rd one should be our CentOS 6 installation but Grub starts counting the first one as 0, so our Centos 6 installation is actually 2 for grub.   Here is my menu.lst file: # grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file # NOTICE:  You...

Words: 600 - Pages: 3

Free Essay

Software Development

...in any group policy-based software installation is obtaining the installer file for the software you are deploying. It is a requirement that this installation file be in Microsoft Software Installer (MSI) format. "Once you have obtained the appropriate MSI file, you must create a distribution point for the software to be deployed from. Your distribution point needs to be a centralized location, preferably on a server, where a shared folder can be created that all users have read access to. Once you have created this shared folder, you need only to copy the MSI file into it." "Now that we have prepared our installation file we are ready to create the group policy object that will push out the installation. To do this, we will be using the Group Policy Management Console (GPMC), which is a free download from Microsoft. Create a new GPO by opening the GPMC, clicking on 'Group Policy Objects' in the left pane, and right-clicking in the center pane and clicking 'Create New Group Policy Object.' Finally, type a name for this GPO and hit the Enter key. The name of your GPO should be something brief but descriptive, such as a 'Virus Protection Installation.' "Having a fresh clean GPO to work with, we can now proceed to assigning the installation packing to it. You will begin this by right-clicking your newly created GPO and clicking 'Edit.' Under the Computer Configuration heading, expand 'Software Settings.' Right-click 'Software Installation,' point to 'New,' and click 'Package’...

Words: 368 - Pages: 2

Free Essay

Marketing

...Solution for Installation Error for HP Devices – Windows Vista We have detected that you were unable to successfully complete the installation for your HP device. All of the files that we attempted to install have been removed. Follow the procedures in this document to install your HP device after receiving an installation error. Note|Please make sure you have turned off and restarted your PC before trying the steps outlined below.| Step 1: Run the Disk Cleanup utility The software installation process uses certain system folders for preparing files for installation. Periodically, these folders need to be cleared. Prior to installing again, run the Disk Cleanup utility, which will help you: · Delete temporary Internet files · Delete downloaded program files · Empty the Recycle Bin · Delete files from the temporary folder · Delete files created by other Windows tools · Remove unused, optional Windows components To use the Disk Cleanup utility: 1. Click Start ( ), click All Programs, click Accessories, click System Tools, and then click Disk Cleanup. 2. After the Disk Cleanup utility analyzes the hard drive, a report with a list of options appears on the computer. Click the appropriate check boxes to remove unwanted files from the computer, and then click OK. 3. Click Yes on the confirmation screen that appears on the computer. Step 2: Reinstall HP Software Note|Before starting the installation process again, please confirm the following:· Unplug the USB...

Words: 1178 - Pages: 5

Free Essay

Introduction About Enrolment Grading System

...degree requirements of Worcester Polytechnic Institute. The views and opinions expressed herein are those of the authors and do not necessarily reflect the positions or opinions of Worcester Polytechnic Institute. This report is the product of an educational program, and is intended to serve as partial documentation for the evaluation of academic achievement. The reader should not construe the report as a working document. Abstract The WPI OfCourse! course management system provides educators with a set of tools to extend their existent course websites. While this toolset offers great functionality, the installation and configuration of the system is complex and difficult. The project team created a two-tiered installation package that is both simplified and easy to use. User testing was conducted and indicated a significant improvement in the installation procedure. In conclusion, the OfCourse! system was improved by the newly created installer. -i- Executive Summary As the web evolves and grows, educational professionals continue to pursue the use of online tools. While a variety of software exists, educators of average computer literacy seek a feature-rich application that is easy to install and use. Educators demand a well-designed user interface and a comprehensive set of features. The OfCourse! course management system is a set of online educational tools that can be integrated into existent websites. While the toolset provided is packed with great ...

Words: 6392 - Pages: 26

Premium Essay

Nt1320 Unit 1

...The problem is a bad VGA port on the computer or monitor. I came up with the problem by gathering information from the customer, identifying symptoms by checking the computer and monitor and determining if anything has changed by asking the customer. Information – Problem started 2 years after customer purchased computer and monitor. Desktop computer powers on, but does not display on external monitor. VGA ports are being used on computer and Monitor. Computer and monitor have DVI ports. Identifying symptoms – Monitor display is blank when computer is powered on. Determining if anything has changed – No changes have occurred since purchase of computer and monitor. Step 2: Establish a theory of probable cause. The probable cause of the problem is wear and tear of the computer or monitor VGA port. Step 3: Test the theory to determine the cause. The VGA cord was tested on another computer and monitor and was good. The computer was connected to good monitor using the VGA cord and the display was blank. The monitor was connected to good computer using the VGA cord and display was good. A good DVI cord was used to test the computer and monitor’s DVI ports and both were good. The problem is a damaged VGA port on the computer due to wear and tear. Step 4: Establish a plan of action to resolve the problem. Install a new VGA card on the computer. Step 5: Implement the solution or escalate if necessary. A new VGA card was installed on the computer and the problem was solved. Installing...

Words: 485 - Pages: 2

Free Essay

Zytaba

...machine, such as installing software or performing updates, the computer needs to be put into a Thawed state. A reboot is required every time the state of the computer is changed. Requirements Deep Freeze requires Windows 95/98/Me/2000/XP/Vista and 10% free hard drive space. The hardware requirements are the same as the recommended hardware requirements for the host operating system. Installing Deep Freeze Standard When installing Deep Freeze, close and disable all background utilities and antivirus software. Complete the following steps to install Deep Freeze Standard: 1. 2. Double-click the DeepFreezeSTDEval.exe file to begin the installation process. The Deep Freeze Standard Installation Dialog appears. Click Install to begin the installation. Follow the steps presented. Read and accept the license agreement. At the end of the installation, the machine reboots. After the reboot Deep Freeze is installed. After the reboot, a Password Initialization screen appears. This screen allows you to enter a password for Deep Freeze. This...

Words: 852 - Pages: 4

Free Essay

It Memory Installation

...IT/280 Computer Hardware Fundamentals “CPU and Memory Installation Paper” Student: __________ Instructor: __________ JSTONE Associates LLC requires many different tasks which are performed by out IT department of technicians. Upgrades are a must for any business that wants to stay relevant in the market. We at JSTONE Associates LLC understand these upgrades not just viable but necessary. As our company grows and prospers so much our systems. In this portion of your handbook we will be covering the installation or upgrading of memory within our company. These step by step instructions must be completed as required by our company policy and procedure guidelines. 1. Acquire unit or unit’s specs from the company database to retain the compatible upgraded RAM for the system or systems being updated. 2. Pull the allotted memory upgrades from our warehouse and proceed to your specified area of operation. 3. Power down the unit(s) and remove all connections from the system. 4. Locate and procure a clean and clear area to process the work order. 5. Pull cover from system and clean the unit of dust and other materials with your kit. 6. Wash and dry hands thoroughly and put on company issued static shield bracelet. 7. Carefully pull each individual RAM stick from the motherboard and place the dated hardware in the shield sleeves from your kit. 8. Clear all connections or components that may obstruct your path to the motherboard. 9. If removal...

Words: 488 - Pages: 2

Free Essay

Critique

...CRITIQUE The following is a critique of the Joomla! User Manual 1.0. The URL of the page is as follows http://help.joomla.org/images/User_manual/user_manual_v1%200%201_10%2021%2006.pdf. This a critique of the installation portion. It also covers some features of the Joomla! Installer that is based on browser and the Manual Installation. The links for these are http://help.joomla.org/content/view/39/165/ and http://help.joomla.org/content/view/40/132/ respectively. Only recently, I installed the software Joomla!. At first I tried the “easy browser install”. But I couldn’t do it and I failed. I then tried using the manual for instructions to help me to install the software. But, the installation procedure through the user manual took me over 15 hours. I later realized, it was not entirely the mistakes of the install process of the software due to which I consumed so much time, but rather the user manual was fairly out-of-date, deceptive and deficient. Overview: • The first and major fault with the document was that it was a “fair weather friend”. If everything operates smoothly, then you rarely need to consult the installation portion. But if some trouble arises, the user manual is ill-equipped to handle it. A quick scan of the Installation part of this manual gives the idea of many users who are having trouble installing the software because they have broken and incomplete installs. • The attempt of the manual to make itself user friendly is actually a drawback for it. It...

Words: 985 - Pages: 4

Free Essay

Paper

...(.EXE, 2.5 Mb) Click here to install the MegaStat® add-in for Excel® Mac®: 2011 (.ZIP, 1.8 Mb) Click here to download the MegaStat® User’s Guide (PDF, 3.5 Mb) System Requirements: Operating system (32 or 64 bit): Windows® XP® / Vista® / 7® / 8® and Mac® OS-X® Excel® 32 bit versions: 2007 / 2010 / 2013 and Excel® Mac®: 2011 You must use the version designed for your operating system. If you want more technical details regarding MegaStat® system requirements and the installation process, see the FAQ document posted at www.mhhe.com/megastat. MegaStat® Start-up Instructions  How to Install the Windows® version: After clicking on the link above, you will be prompted to run or save the file. Click ‘Run’ and the add-in will install to a default add-ins directory. You will also get a pop-up window for User Account Control. Click Yes to proceed. It is recommended that you accept all default settings as the program prompts during the installation. You must exit Excel® before running the installation program. The file you are running is an executable (.exe). Some firewalls may block .exe files for security purposes. If you receive warnings when you try to download/run this file, please follow the instructions of your firewall program to allow this download. NOTE: You may need administrative rights to install this software on your computer. To activate MegaStat:  After running the MegaStat® installer program, you need to get MegaStat® on the Excel Add-Ins ribbon...

Words: 1007 - Pages: 5