summaryrefslogtreecommitdiff
path: root/ult/ult_1/ult1.tex
diff options
context:
space:
mode:
authorJovina2012-01-10 11:33:42 +0530
committerJovina2012-01-10 11:33:42 +0530
commitb9ae96bc54a41bf1a40a15f17bb436695973a42a (patch)
tree25cb7430e7298ed160c4e29946552d400f10fad4 /ult/ult_1/ult1.tex
parent057876fd49befd8fab86a593d03508d16df87ba3 (diff)
downloadsees-b9ae96bc54a41bf1a40a15f17bb436695973a42a.tar.gz
sees-b9ae96bc54a41bf1a40a15f17bb436695973a42a.tar.bz2
sees-b9ae96bc54a41bf1a40a15f17bb436695973a42a.zip
Modified the script and slides based on the review.
Diffstat (limited to 'ult/ult_1/ult1.tex')
-rw-r--r--ult/ult_1/ult1.tex22
1 files changed, 11 insertions, 11 deletions
diff --git a/ult/ult_1/ult1.tex b/ult/ult_1/ult1.tex
index 68b25d5..9ad3f03 100644
--- a/ult/ult_1/ult1.tex
+++ b/ult/ult_1/ult1.tex
@@ -62,14 +62,13 @@
At the end of this tutorial, you will be able to,
\begin{itemize}
-\item Know what is linux and it's need.
+\item Know what is linux.
+\item Understand the need for linux in today's world.
\item Move around in directories and files.
\item Use basic commands of Linux.
\end{itemize}
\end{frame}
-
-\section{Introduction}
\begin{frame}[fragile]
\begin{block}{What is the Linux OS?}
\begin{itemize}
@@ -80,10 +79,10 @@ At the end of this tutorial, you will be able to,
\item[Open-Source]
Permit modifications and redistribution of source code
\end{description}
+ \item Also called GNU/Linux
\item Unix-inspired
- \item Linux Kernel + Application software
\item Runs on a variety of hardware
- \item Also called GNU/Linux
+ \item Linux Kernel + Application software
\end{itemize}
\end{block}
\end{frame}
@@ -105,20 +104,18 @@ At the end of this tutorial, you will be able to,
\end{block}
\end{frame}
-\section{Getting Started}
\begin{frame}[fragile]
\frametitle{Logging in}
\begin{itemize}
\item GNU/Linux does have a GUI
\item Command Line for this module
\item Hit \texttt{Ctrl + Alt + F1}
- \item Login
\item \texttt{logout} command logs you out
\end{itemize}
\end{frame}
\begin{frame}[fragile]
- \frametitle{New folders}
+ \frametitle{Creating folders}
\begin{itemize}
\item Special characters need to be escaped OR quoted
\end{itemize}
@@ -135,7 +132,7 @@ At the end of this tutorial, you will be able to,
\frametitle{Using additional options}
\begin{itemize}
- \item \texttt{-h} or \texttt{--help} give summary of command usage
+ \item \texttt{-h} or \texttt{--help} gives summary of command usage
\end{itemize}
\begin{lstlisting}
$ ls --help
@@ -160,11 +157,14 @@ At the end of this tutorial, you will be able to,
\begin{itemize}
\item Understand the basic structure of linux and it's need.
-\item Move around in directories and files.
-\item Use commands like ``mkdir'' and ``rmdir'' to make and remove directories
+\item See the current directory in which we are working, using the command ``pwd''.
+\item List a directory's contents by using the command ``ls''.
+\item Change file timestamps, using the command ``touch''.
+ \item Use commands like ``mkdir'' and ``rmdir'' to make and remove directories
respectively.
\item Use commands such as ``man'' and ``whatis'' to get a description of
what a particular command does.
+\item Search the manual page names and descriptions, using the `` apropos'' command.
\end{itemize}
\end{frame}
\begin{frame}[fragile]