Difference between revisions of "Linux1"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
=Introduction= | =Introduction= | ||
+ | |||
=Logging in= | =Logging in= | ||
+ | |||
+ | = Getting the content for this practical = | ||
+ | The necessary files for this practical are hosted in a version control system. To obtain them, just type the following command: | ||
+ | <pre> | ||
+ | svn co http://source.ggy.bris.ac.uk/subversion-open/intro-to-linux/trunk intro-to-linux | ||
+ | </pre> | ||
+ | This will fetch all necessary files and put them in a folder called <tt>intro-to-linux/</tt>. | ||
+ | |||
=Navigation= | =Navigation= | ||
+ | To change directories, the command <tt>cd</tt> is used. It stands for ... "<b>c</b>hange <b>d</b>irectory" (!) | ||
+ | To navigate to the directory folder containing the file, type: | ||
+ | <pre> | ||
+ | cd intro-to-linux | ||
+ | </pre> | ||
+ | |||
+ | |||
=Creating/deleting/modifying= | =Creating/deleting/modifying= |
Revision as of 10:37, 1 February 2008
Introduction
Logging in
Getting the content for this practical
The necessary files for this practical are hosted in a version control system. To obtain them, just type the following command:
svn co http://source.ggy.bris.ac.uk/subversion-open/intro-to-linux/trunk intro-to-linux
This will fetch all necessary files and put them in a folder called intro-to-linux/.
To change directories, the command cd is used. It stands for ... "change directory" (!) To navigate to the directory folder containing the file, type:
cd intro-to-linux