Free Essay

Endurance Training

In:

Submitted By sunnykumar
Words 3626
Pages 15
An Introduction to the Linux Command Shell For Beginners

Presented by:

Victor Gedris
In Co-Operation With:

The Ottawa Canada Linux Users Group and ExitCertified

Copyright and Redistribution
This manual was written with the intention of being a helpful guide to Linux users who are trying to become familiar with the Bash shell and basic Linux commands. To make this manual useful to the widest range of people, I decided to release it under a free documentation license, with the hopes that people benefit from it by updating it and re-distributing modified copies. You have permission to modify and distribute this document, as specified under the terms of the GNU Free Documentation License. Comments and suggestions for improvement may be directed to: vic@gedris.org. This document was created using an Open Source office application called Open Office. The file format is non-proprietary, and the document is also published in various other formats online. Updated copies will be available on Vic Gedris' web site [http://vic.dyndns.org/]. For more information on Open Office, please visit http://www.openoffice.org/. Copyright © 2003 Victor Gedris. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is available from the Free Software Foundation's website: http://www.fsf.org/copyleft/fdl.html

Document Version: 1.2, 2003-06-25

1.0

Introduction

The purpose of this document is to provide the reader with a fast and simple introduction to using the Linux command shell and some of its basic utilities. It is assumed that the reader has zero or very limited exposure to the Linux command prompt. This document is designed to accompany an instructor-led tutorial on this subject, and therefore some details have been left out. Explanations, practical examples, and references to DOS commands are made, where appropriate.

1.1

What is a command shell?
A program that interprets commands Allows a user to execute commands by typing them manually at a terminal, or automatically in programs called shell scripts. A shell is not an operating system. It is a way to interface with the operating system and run commands.

1.2

1.3

What is BASH?
BASH = Bourne Again SHell Bash is a shell written as a free replacement to the standard Bourne Shell (/bin/sh) originally written by Steve Bourne for UNIX systems. It has all of the features of the original Bourne Shell, plus additions that make it easier to program with and use from the command line. Since it is Free Software, it has been adopted as the default shell on most Linux systems.

How is BASH different from the DOS command prompt?
Case Sensitivity: In Linux/UNIX, commands and filenames are case sensitive, meaning that typing “EXIT” instead of the proper “exit” is a mistake. “\” vs. “/”: In DOS, the forward-slash “/” is the command argument delimiter, while the backslash “\” is a directory separator. In Linux/UNIX, the “/” is the directory separator, and the “\” is an escape character. More about these special characters in a minute! The DOS world uses the “eight dot three” filename convention, meaning that all files followed a format that allowed up to 8 characters in the filename, followed by a period (“dot”), followed by an option extension, up to 3 characters long (e.g. FILENAME.TXT). In UNIX/Linux, there is no such thing as a file extension. Periods can be placed at any part of the filename, and “extensions” may be interpreted differently by all programs, or not at all.

Filenames:

1.4

Special Characters

Before we continue to learn about Linux shell commands, it is important to know that there are many symbols and characters that the shell interprets in special ways. This means that certain typed characters: a) cannot be used in certain situations, b) may be used to perform special operations, or, c) must be “escaped” if you want to use them in a normal way. Character \ Description Escape character. If you want to reference a special character, you must “escape” it with a backslash first. Example: / . .. ~ * Example: touch /tmp/filename\* /usr/src/linux Directory separator, used to separate a string of directory names. Current directory. Can also “hide” files when it is the first character in a filename. Parent directory User's home directory Represents 0 or more characters in a filename, or by itself, all files in a directory. Example: ? pic*2002 can represent the files pic2002, picJanuary2002, picFeb292002, etc. hello?.txt can represent hello1.txt, helloz.txt, but not hello22.txt hello[0-2].txt represents the names hello0.txt, hello1.txt, and hello2.txt ls | more ls > myfiles.txt echo “Mary 555-1234” >> phonenumbers.txt more < phonenumbers.txt cd /var/log ; less messages

Represents a single character in a filename. Example:

[ ]

Can be used to represent a range of values, e.g. [0-9], [A-Z], etc. Example:

| > >> < ; &&

“Pipe”. Redirect the output of one command into another command. Example: Example: Example: Example: Example: Redirect output of a command into a new file. If the file already exists, over-write it. Redirect the output of a command onto the end of an existing file. Redirect a file as input to a program. Command separator. Allows you to execute multiple commands on a single line. Command separator as above, but only runs the second command if the first one finished without errors. Example: cd /var/logs && less messages find / -name core > /tmp/corefiles.txt & Execute a command in the background, and immediately get your shell back. Example:

&

1.5

Executing Commands

The Command PATH:
Most common commands are located in your shell's “PATH”, meaning that you can just type the name of the program to execute it.

Example: Typing “ ls” will execute the “ ls” command. Your shell's “PATH” variable includes the most common program locations, such as /bin, /usr/bin, /usr/X11R6/bin, and others. To execute commands that are not in your current PATH, you have to give the complete location of the command. Examples: /home/bob/myprogram ./program (Execute a program in the current directory) ~/bin/program (Execute program from a personal bin directory)

Command Syntax
Commands can be run by themselves, or you can pass in additional arguments to make them do different things. Typical command syntax can look something like this: command [-argument] [-argument] [--argument] [file] Examples: ls ls -l ls -l --color cat filename cat -n filename List files in current directory Lists files in “long” format As above, with colourized output Show contents of a file Show contents of a file, with line numbers

2.0

Getting Help

When you're stuck and need help with a Linux command, help is usually only a few keystrokes away! Help on most Linux commands is typically built right into the commands themselves, available through online help programs (“man pages” and “info pages”), and of course online.

2.1

Using a Command's Built-In Help

Many commands have simple “help” screens that can be invoked with special command flags. These flags usually look like “-h” or “--help”. Example: grep --help

2.2

Online Manuals: “Man Pages”

The best source of information for most commands can be found in the online manual pages, known as “man pages” for short. To read a command's man page, type “man command”. Examples: man ls man man Get help on the “ls” command. A manual about how to use the manual!

To search for a particular word within a man page, type “/word”. To quit from a man page, just type the “Q” key. Sometimes, you might not remember the name of Linux command and you need to search for it. For example, if you want to know how to change a file's permissions, you can search the man page descriptions for the word “permission” like this: man -k permission If you look at the output of this command, you will find a line that looks something like: chmod (1) - change file access permissions Now you know that “chmod” is the command you were looking for. Typing “man chmod” will show you the chmod command's manual page!

2.3

Info Pages

Some programs, particularly those released by the Free Software Foundation, use info pages as their main source of online documentation. Info pages are similar to man page, but instead of being displayed on one long scrolling screen, they are presented in shorter segments with links to other pieces of information. Info pages are accessed with the “info” command, or on some Linux distributions, “pinfo” (a nicer info browser). For example: info df Loads the “df” info page.

3.0

Navigating the Linux Filesystem

The Linux filesystem is a tree-like hierarchy hierarchy of directories and files. At the base of the filesystem is the “/” directory, otherwise known as the “root” (not to be confused with the root user). Unlike DOS or Windows filesystems that have multiple “roots”, one for each disk drive, the Linux filesystem mounts all disks somewhere underneath the / filesystem. The following table describes many of the most common Linux directories.

3.1

The Linux Directory Layout
Directory Description The nameless base of the filesystem. All other directories, files, drives, and devices are attached to this root. Commonly (but incorrectly) referred to as the “slash” or “/” directory. The “/” is just a directory separator, not a directory itself.

/bin /boot /dev /etc /home /lib /proc /root /sbin /tmp /usr /usr/bin /usr/lib /usr/local

Essential command binaries (programs) are stored here (bash, ls, mount, tar, etc.) Static files of the boot loader. Device files. In Linux, hardware devices are acceessd just like other files, and they are kept under this directory. Host-specific system configuration files. Location of users' personal home directories (e.g. /home/susan). Essential shared libraries and kernel modules. Process information pseudo-filesystem. An interface to kernel data structures. The root (superuser) home directory. Essential system binaries (fdisk, fsck, init, etc). Temporary files. All users have permission to place temporary files here. The base directory for most shareable, read-only data (programs, libraries, documentation, and much more). Most user programs are kept here (cc, find, du, etc.). Libraries for most binary programs. “Locally” installed files. This directory only really matters in environments where files are stored on the network. Locally-installed files go in /usr/local/bin, /usr/local/lib, etc.). Also often used for software packages installed from source, or software not officially shipped with the distribution. Non-vital system binaries (lpd, useradd, etc.) Architecture-independent data (icons, backgrounds, documentation, terminfo, man pages, etc.). Program source code. E.g. The Linux Kernel, source RPMs, etc. The X Window System. Variable data: mail and printer spools, log files, lock files, etc.

/usr/include Header files for compiling C programs.

/usr/sbin /usr/share /usr/src /usr/X11R6 /var

3.2

Commands for Navigating the Linux Filesystems

The first thing you usually want to do when learning about the Linux filesystem is take some time to look around and see what's there! These next few commands will: a) Tell you where you are, b) take you somewhere else, and c) show you what's there. The following table describes the basic operation of the pwd, cd, and ls commands, and compares them to certain DOS commands that you might already be familiar with.

Linux Command pwd cd cd directory cd ~

DOS Command cd cd, chdir cd directory

Description “Print Working Directory”. location in the directory tree. Shows the current

“Change Directory”. When typed all by itself, it returns you to your home directory. Change into the specified directory Example: cd /usr/src/linux name.

“~” is an alias for your home directory. It can be used as a shortcut to your “home”, or other directories relative to your home. cd.. Move up one directory. For example, if you are in /home/vic and you type “cd ..”, you will end up in /home. Return to previous directory. An easy way to get back to your previous location! dir /w List all files in the current directory, in column format. Example: ls /var/log

cd ..

cd ls ls directory ls -l

dir directory List the files in the specified directory. dir List files in “long” format, one file per line. This also shows you additional info about the file, such as ownership, permissions, date, and size. List all files, including “hidden” files. Hidden files are those files that begin with a “.”, e.g. The .bash_history file in your home directory. A “long” list of “directory”, but instead of showing the directory contents, show the directory's detailed information. For example, compare the output of the following two commands: ls -l /usr/bin ls -ld /usr/bin

ls -a

dir /a

ls -ld directory

ls /usr/bin/d*

dir d*.*

List all files whose names begin with the letter “d” in the /usr/bin directory.

4.0

Piping and Re-Direction

Before we move on to learning even more commands, let's side-track to the topics of piping and re-direction. The basic UNIX philosophy, therefore by extension the Linux philosophy, is to have many small programs and utilities that do a particular job very well. It is the responsibility of the programmer or user to combine these utilities to make more useful command sequences.

4.1

Piping Commands Together

The pipe character, “|”, is used to chain two or more commands together. The output of the first command is “piped” into the next program, and if there is a second pipe, the output is sent to the third program, etc. For example: ls -la /usr/bin | less In this example, we run the command “ls -la /usr/bin”, which gives us a long listing of all of the files in /usr/bin. Because the output of this command is typically very long, we pipe the output to a program called “less”, which displays the output for us one screen at a time.

4.2

Redirecting Program Output to Files

There are times when it is useful to save the output of a command to a file, instead of displaying it to the screen. For example, if we want to create a file that lists all of the MP3 files in a directory, we can do something like this, using the “>” redirection character: ls -l /home/vic/MP3/*.mp3 > mp3files.txt A similar command can be written so that instead of creating a new file called mp3files.txt, we can append to the end of the original file: ls -l /home/vic/extraMP3s/*.mp3 >> mp3files.txt

5.0

Other Linux Commands

The following sections describe many other commands that you will find on most Linux systems. I can't possibly cover the details of all of these commands in this document, so don't forget that you can check the “man pages” for additional information. Not all of the listed commands will be available on all Linux or UNIX distributions.

5.1

Working With Files and Directories

These commands can be used to: find out information about files, display files, and manipulate them in other ways (copy, move, delete).

Linux Command file

DOS Command

Description Find out what kind of file it is. For example, “file /bin/ls” tells us that it is a Linux executable file.

cat

type

Display the contents of a text file on the screen. For example: cat mp3files.txt would display the file we created in the previous section. Display the first few lines of a text file. Example: head /etc/services Display the last few lines of a text file. Example: tail /etc/services Display the last few lines of a text file, and then output appended data as the file grows (very useful for following log files!). Example: tail -f /var/log/messages

head tail tail -f

cp

copy

Copies a file from one location to another. Example: cp mp3files.txt /tmp (copies the mp3files.txt file to the /tmp directory)

mv

rename, ren, move

Moves a file to a new location, or renames it. For example: mv mp3files.txt /tmp (copy the file to /tmp, and delete it from the original location)

rm mkdir rmdir

del md rd, rmdir

Delete a file. Example: rm /tmp/mp3files.txt Make Directory. Example: mkdir /tmp/myfiles/ Remove Directory. Example: rmdir /tmp/myfiles/

5.2

Finding Things

The following commands are used to find files. “ls” is good for finding files if you already know approximately where they are, but sometimes you need more powerful tools such as these:

Linux Command which

Description Shows the full path of shell commands found in your path. For example, if you want to know exactly where the “grep” command is located on the filesystem, you can type “which grep”. The output should be something like: /bin/grep Locates the program, source code, and manual page for a command (if all information is available). For example, to find out where “ls” and its man page are, type: “whereis ls” The output will look something like: ls: /bin/ls /usr/share/man/man1/ls.1.gz A quick way to search for files anywhere on the filesystem. For example, you can find all files and directories that contain the name “mozilla” by typing: locate mozilla A very powerful command, but sometimes tricky to use. It can be used to search for files matching certain patterns, as well as many other types of searches. A simple example is: find . -name \*mp3 This example starts searching in the current directory “.” and all subdirectories, looking for files with “mp3” at the end of their names.

whereis

locate

find

5.3

Informational Commands
Linux Command Explanation Lists currently running process (programs). Show who is logged on and what they are doing. Print your user-id and group id's Report filesystem disk space usage (“Disk Free” is how I remember it) Disk Usage in a particular directory. “du -s” provides a summary for the current directory. Displays CPU processes in a full-screen GUI. A great way to see the activity on your computer in real-time. Type “Q” to quit. Displays amount of free and used memory in the system.

The following commands are used to find out some information about the user or the system. ps w id df du top free

cat /proc/cpuinfo Displays information about your CPU. cat /proc/meminfo Display lots of information about current memory usage. uname -a Prints system information to the screen (kernel version, machine type, etc.)

5.4

Other Utilities
Description Clear the screen Display text on the screen. Mostly useful when writing shell scripts. For example: echo “Hello World” Display a file, or program output one page at a time. Examples: more mp3files.txt ls -la | more

Here are some other commands that are useful to know. Linux Command clear echo more

less grep

An improved replacement for the “more” command. Allows you to scroll backwards as well as forwards. Search for a pattern in a file or program output. For example, to find out which TCP network port is used by the “nfs” service, you can do this: grep “nfs” /etc/services This looks for any line that contains the string “nfs” in the file “/etc/services” and displays only those lines.

lpr

Print a file or program output. Examples: lpr mp3files.txt - Print the mp3files.txt file ls -la | lpr - Print the output of the “ls -la” command.

sort su

Sort a file or program output. Example: sort mp3files.txt “Switch User”. Allows you to switch to another user's account temporarily. The default account to switch to is the root/superuser account. Examples: su su - Switch the root account - Switch to root, and log in with root's environment

su larry - Switch to Larry's account

5.5

Shortcuts to Make it all Easier!

When you start using the Bash shell more often, you will appreciate these shortcuts that can save you very much typing time. Shortcut Up/Down Arrow Keys Description Scroll through your most recent commands. You can scroll back to an old command, hit ENTER, and execute the command without having to re-type it. Show your complete command history. If you type a partial command or filename that the shell recognizes, you can have it automatically completed for you if you press the TAB key. Try typing the first few characters of your favourite Linux command, then hit TAB a couple of times to see what happens.

“history” command TAB Completion

Complete recent commands with “!” Try this: Type “!” followed by the first couple of letters of a recent command and press ENTER! For example, type: find /usr/bin -type f -name m\* ...and now type: !fi Search your command history with CTRL-R Scrolling the screen with ShiftPageUp and Page Down Press CTRL-R and then type any portion of a recent command. It will search the commands for you, and once you find the command you want, just press ENTER. Scroll back and forward through your terminal.

6.0

Further Reading
Link Address Description Ottawa Canada Linux Users Group. A group with an active mailing list, monthly meetings, and much more. Ottawa's source for Sun training, and the host of OCLUG's technology seminars. The Free Software Foundation. Documentation, source code, and much more for many programs commonly found on Linux systems.

http://www.oclug.on.ca

http://www.exitcertified.com http://www.fsf.org

http://linux.org.mt/article/terminal “A Beginner's Bash”. Another very good introduction to Bash. http://www.oreilly.com/catalog/bash2 An excellent book if you want to learn how to customize Bash and use it for shell script programming.

Similar Documents

Premium Essay

Gym Essay

...------------------------------------------------- My Fitness Program ------------------------------------------------- Hour 3 ------------------------------------------------- Wednesday, November 07, 2007 ------------------------------------------------- ------------------------------------------------- ------------------------------------------------- I took this class because I take my physical health seriously. Even before I started this school year, I had been training 4 days a week, learning about many different systems of martial arts. Good physical health means having muscle strength, muscle endurance, cardiovascular endurance, flexibility, and core strength. ------------------------------------------------- Muscular strength is the ability to exert maximum force. Muscular endurance is the ability to repeat a lift many times. Improving muscular strength and endurance makes completing daily tasks easier. If anyone ever needed help moving furniture, or any other heavy objects, I will be able to help because of the strength training I’ve done. Also, muscular strength and endurance gives obvious advantages in the martial arts, such as striking power, and the ability to overpower someone when grappling. In other words, if a...

Words: 2119 - Pages: 9

Premium Essay

Resilience In Elizabeth Laird's A Little Piece Of Ground

...Elizabeth Laird’s A Little Piece of Ground shows that resilience and endurance are required to survive in a conflict zone, such as the one portrayed in the book, and that endurance leads to resilience. Elizabeth Laird portrays that enduring Israeli actions has led to development of resilience in Karim, Hassan, and Hopper. This development took place in Karim’s experiences in a conflict zone, Hassan’s endurance, and Hopper’s losses. Karim’s experiences and endurance in Ramallah under Israeli occupation has led to his development of resilience. Karim, being the main character, has endured many events and Israeli actions, which in turn has developed resilience in him. One such event was the embarrassment of his father, Hassan Aboudi, and other Palestinians by the Israeli soldiers. When talking to a...

Words: 1226 - Pages: 5

Premium Essay

Characters in the Minority

...minor characters serve the same function, standing as moral or spiritual beacons to which Jane may aspire, but may not ever reach. Maria Temple - the charitable schoolteacher is both an example and a warning. She can and does serve as a role-model for Jane but is also powerless, having to answer for her independence to a wrathful Mr Brocklehurst, and having no real authority when he is on the premises. Her position is inferior and she submits too. Jane later will break this pattern at Thornfield, in her dealings with her employer, but ironically her habit of submissiveness is gained as a direct result of her interaction with Maria Temple. Helen Burns is the saint-like Christian child who teaches Jane the philosophy of submission and endurance. Her religious conviction of Christ as a father and a loving friend is an important facet of the novel. This, together with Helen's insistence that trials and sufferings are to be endured and their perpetrators forgiven, is the essence...

Words: 387 - Pages: 2

Free Essay

What Is Success

...person successful? Attitude! Being able to look back at all of the trauma and hardships one has endured and realizing that you made it through. Through it all, you never gave up. Success is to believe in your self. Success is facing challenges that come your way with the attitude “I will endure and overcome”. It is being able, when you feel like giving up, to delve into your innermost self to find strength and courage. It is being able to wake up to a new day, content with what lies ahead. It is being happy with who you are and what you have achieved. It is the power of positive thinking. Success to some may be measured in money or possessions. A true successful person is one that can look at accomplishments, remembering the endurance needed to get there, and realize although times were tough, they never gave up. Having money, a big house, and a fancy car doesn’t mean you are successful. It just means that you make money. To define success, ask yourself these questions: Are you happy with your life? Do you feel that you have made the most of your life? Do you feel triumphant in knowing that you never lost sight of what is important to you? Do you feel like you have been victorious with life’s battles? Success does not come from what others believe about you. Success comes from what you believe about...

Words: 282 - Pages: 2

Free Essay

Sucess

...successful? Attitude! Being able to look back at all of the trauma and hardships one has endured and realizing that you made it through. Through it all, you never gave up. Success is to believe in your self. Success is facing challenges that come your way with the attitude “I will endure and overcome”. It is being able, when you feel like giving up, to delve into your innermost self to find strength and courage. It is being able to wake up to a new day, content with what lies ahead. It is being happy with who you are and what you have achieved. It is the power of positive thinking. Success to some may be measured in money or possessions. A true successful person is one that can look at accomplishments, remembering the endurance needed to get there, and realize although times were tough, they never gave up. Having money, a big house, and a fancy car doesn’t mean you are successful. It just means that you make money. To define success, ask yourself these questions: Are you happy with your life? Do you feel that you have made the most of your life? Do you feel triumphant in knowing that you never lost sight of what is important to you? Do you feel like you have been victorious with life’s battles? Success does not come from what others believe about you. Success comes from what you believe about...

Words: 307 - Pages: 2

Free Essay

Crow Dog Formal Summary #!

...Word Count: 306 Writing 95 Mary Crow Dog: Civilize them with a Stick Mary Crow Dog, the Author of, Civilize them with a Stick, writes of the trauma young Indian children endured in mission school. Crow Dog tells of how these young children are taken away from their family and homes at a very young age, to be educated by “the white man”, and the abuse they endure. The day would start at Five a.m. for Crow Dog and the other children. It would begin with prayer followed by breakfast, chores then study. If the children were spotted not praying properly or chatting while doing chores, they would get “swats”. Crow Dog tells the “swats” were given by one of the nuns with a board wrapped with tape and not just one or two swats but many. A lot of the children including Crow Dog herself, had tried to run away to escape the abuse, but they were eventually caught and brought back only to endure more physical abuse. The mission had gotten a new priest to teach English. One day the priest has asked a young boy a question. The boy answered to question correctly but had mispronounced the word. The priest kept after his to pronounce it correct. Crow Dog stuck up for the boy and this got her in trouble. The priest made her stay after class, he grabbed her arm, pushed her against the blackboard. She had had enough; she gave in a bloody nose. The priest and Crow Dog had to meet with Sister Bernard and it was at this moment Crow Dog quit...

Words: 272 - Pages: 2

Premium Essay

Book Report: Roots Of Endurance

...Roots of Endurance Have you ever had passion that moves you to make a change even when things are against you? The book Roots of Endurance talks about three men that concurred their obstacles and dreams to make change for their community. There are multiple stories from the book that have taught me lessons on how to be a great leader, I am going to share the three that mean the most to me. John Newtown is the first gentleman to discuss. He is known for his transformation from a slave boat owner to a devoted Christian and activist against the slave trade. Below is the story and lesson I learned from John. “A company of travelers fall into a pit: one of them gets a passengers to draw him out. Now we should not be angry with the rest for falling...

Words: 668 - Pages: 3

Free Essay

Case Study: Epic of Survival

...Case Study of “EPIC OF SURVIVAL – Ernest Shackleton’s Voyage to the South Pole” By Reuben Q. Binasoy, SILVER Group, UB EMBA Intake 17 I. Most Compelling Facts / Main Learning Points a. The Imperial Trans-Antarctic Expedition started out on August 8, 1914. The last of the crew members were rescued on August 30, 1916. More than 2 years after they had set out – in the face of the many dangers they faced during the failed expedition – Shackleton mustered together the courage, willpower, wit, & leadership and brought each and every member back home alive. b. Shackleton assembled a group of men that were willing to go with him on a hazardous journey. They were paid little, there were long months of complete darkness, and constant danger. Safe return was doubtful. The only thing they would have gotten out of it was honor and recognition. Other people would have thought them desperate or crazy. Yet it’s most likely the allure of being in a Shackleton expedition that made them go anyway. Such was the power that Shackleton wielded over them. c. Ernest Shackleton provides a very good contrast vs. Rob Hall and Steve Fischer – group leaders of the 1996 Mt. Everest tragedy. While all 3 can be said to have both formal and personal power, Shackleton was able to harness his power effectively to rally the crew to survival. His crew had well-defined roles and responsibilities. They were a team with a common overriding goal – that of survival. d. Shackleton put his people first. Yes, he was...

Words: 1464 - Pages: 6

Free Essay

Sports

...Unit 1 Fitness for Sport and Exercise Unit 1, Fitness for Sport and Exercise, is an externally assessed, compulsory unit with three learning aims: ●● ●● ●● Learning aim A: Know about the components of fitness and the principles of training Learning aim B: Explore different fitness training methods Learning aim C: Investigate fitness testing to determine fitness levels. Unit 1 is a core unit and its content underpins the other BTEC sport units. Learning aim A looks at the components of physical and skill-related fitness and principles of training. Learning aim B covers the various training methods that can be used to develop the different components of fitness and learning aim C focuses on fitness tests. The second section contains two sample external assessments. You will be given 1 hour to complete the external assessment for this unit and the marks are out of 50. Your assessment will take place by an online, computer-based test and our two sample external assessments are designed to show you the types of questions, and question formats, you might face. Answers for the two sample external assessments can be found at the end of the book.  Unit 1 Fitness for Sport and Exercise The unit is divided in to two sections. The first section contains the content of the learning aim, broken down in to bite-sized chunks. Each topic is covered and you can tick them off as you study them. 1 BTEC Sport Level 2 Assessment Guide Units 1 and 2 uncorrected first proofs issued by marketing...

Words: 4045 - Pages: 17

Premium Essay

Ernest Shackleton Research Paper

...Really, there was two crews, one that went with the Aurora, and the other went with the Endurance. In this essay i’ll be focusing on the crew of the Endurance. The leader of the expedition was Ernest Shackleton, an experienced polar explorer who had good knowledge of the terrain. The rest of the crew was carefully picked by Shackleton. 5000 people applied for the expedition, but only these people were picked. The second in command was Frank Wild, since he was very much like Shackleton, he was in charge of the 21 Men still on Elephant Island when Shackleton took his men to South Georgia Island. There were three officers on board Endurance, Lionel Greenstreet, Tom Crean, Alfred Cheetham. The captain of the Endurance, not to be confused with the...

Words: 660 - Pages: 3

Premium Essay

How Did Harriet Tubman Show Persemination

...Harriet Tubman showed perseverance and determination when she would travel from Maryland to Canada to bring freedom to the slaves. Even though Harriet never been or seen Canada, she knew it would be a perfect place. A place where slaves will finally receive civil rights, equality, and liberty. The long journey would be exhausting and uncomfortable but Harriet would still try to accomplish her goal. Sometimes, the stops she was supposed to take would be unavailable for her and the slaves however she never gave up on her mission. She never allowed herself or the others to give up and go back to the harsh conditions of Maryland. Harriet exhibited her fearlessness behavior by risking her own life for the slaves. Harriet also known as "Moses"...

Words: 384 - Pages: 2

Free Essay

3min Speech

...My presence here today is proof that you are my true strength. I never expected that I will be here taking my oath of office before you, as your president. I never entertained the ambition to be the symbol of hope, and to inherit the problems of our nation. I had a simple goal in life: to be true to my parents and our country as an honorable daughter, a caring sister, and a good citizen. We all know what it is like to have a government that plays deaf and dumb. We know what it is like to be denied justice, to be ignored by those in whom we placed our trust and tasked to become our advocates. Have you ever been ignored by the very government you helped put in power? I have. Have you had to endure being rudely shoved aside by the siren-blaring escorts of those who love to display their position and power over you? I have, too. Have you experienced exasperation and anger at a government that instead of serving you, needs to be endured by you? So have I. I am like you. Many of our countrymen have already voted with their feet - migrating to other countries in search of change or tranquility. They have endured hardship, risked their lives because they believe that compared to their current state here, there is more hope for them in another country, no matter how bleak it may be. In moments when I thought of only my own welfare, I also wondered - is it possible that I can find the peace and quiet that I crave in another country? Is our government beyond redemption? Through good...

Words: 444 - Pages: 2

Premium Essay

Circuit Training Program Analysis

...In sport culture, competitiveness has caused people to attempt to achieve perfection in sports. Human beings have a natural competitive nature; we try our best to win, doing whatever it takes. And the key to athletic success is by intense training. Not only does training help strengthen your muscles, it also makes you appear to be more physically powerful than others. We set goals and achieve them by putting hard work into a certain activity. An especially successful training method is circuit training. A circuit training program is a training cycle that involves doing an activity for a certain amount of time,then the next, and so on until you are making “loops” around your program. My circuit training exercise will be for Track & Field, specifically...

Words: 1767 - Pages: 8

Free Essay

Case Study Analysis: Zombie Invasion

...situation of traveling to New York state’s CDC in July to find a cure for zombie-ism by co-teaching a proposed zombie evasion training program, especially for the 10 out of 50 scientist who had no training and would be traveling with Carol Montega. This training class had two goals: 1. Scientist would know how to hunt, build a fire, and to find edible plants to eat. 2. Generally survive in the wilderness With the nature of this training program that should begin on June15th, certain stipulation have to occur such as trainees must arrive with their own rifles and camping equipment, and lastly, all trainees must have undergone a 10-day quarantine to ensure they have not been infected with the zombie virus. However, the brief study finds the prospects of the training program in its current state are not positive. The major areas of flaw require further investigation and remedial action by the co-trainers. Recommendations include: • Discussing with co-trainers about why 3 of 10 scientists haven’t been quarantined • Improving/increasing scientists learning how build fire without matches and surviving in general • Increasing the usage of rifles of scientist who did not have rifles with them, including ammunition or camping supplies The training program has successfully identified key solutions to avoid being eaten by zombies, through a training program to prepare the scientists on their travels to New York State’s CDC, but other areas will need improvement before the...

Words: 1133 - Pages: 5

Premium Essay

Rehabilitation Plan

...degree has the client adjusted to the handicapping aspects of the disability? a. Does the person use “disability” as an excuse for failure? b. Are any of physical symptoms psychologically based? c. Does the client have the emotional stability to engage in a vocational rehabilitation program at the present time? In the near future? Family and Friends 1. What positive or negative role will the individual’s family and friends play in the rehabilitation process (e.g. supportive, overprotective or unrealistic regarding client potential)? 2. What personal counseling and/or family counseling services will be necessary (e.g. psychotherapy, personal adjustment training, relaxation training)? Educational-Vocational Factors Education Consideration 1. What types of vocational training or jobs that client’s educational histories suggest?...

Words: 4190 - Pages: 17