|
4.
|
|
|
"Under Linux there are GUIs (graphical user interfaces), where you can point and click and drag, and hopefully get work done without first reading lots of documentation. The traditional Unix environment is a CLI (command line interface), where you type commands to tell the computer what to do. That is faster and more powerful, but requires finding out what the commands are." -- from <placeholder-1/>
|
|
|
|
Unter Linux gibt es grafische Benutzeroberflächen, die Sie mit der Maus bedienen können. Meist ermöglichen sie Ihnen Ihre Arbeit zu erledigen, ohne vorher Handbücher und Hilfedateien gelesen haben zu müssen. Die traditionelle Unix-Umgebung ist jedoch die Befehlszeile. Hier geben Sie Befehle ein, die Ihrem Rechner sagen, was er tun soll. Das ist schneller und leistungsfähiger, setzt aber die Kenntnis der Befehle voraus."--von <placeholder-1/>
|
|
Translated and reviewed by
Maren Reinecke
|
Shared: |
|
Unter Linux gibt es grafische Benutzeroberflächen, die Sie mit der Maus bedienen können. Meist ermöglichen sie Ihnen Ihre Arbeit zu erledigen, ohne vorher Handbücher und Hilfedateien gelesen haben zu müssen. Die traditionelle Unix-Umgebung ist jedoch die Befehlszeile. Hier geben Sie Befehle ein, die Ihrem Rechner sagen, was er tun soll. Das ist schneller und leistungsfähiger, setzt aber die Kenntnis der Befehle voraus." --von <placeholder-1/>
|
|
|
Suggested by
Daniel Schury
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:17(emphasis)
|
|
8.
|
|
|
<emphasis role="strong">Note that your system is case sensitive.</emphasis> User, user, and USER are all different, be careful with your capitalization.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:58(para)
|
|
10.
|
|
|
To open a <application>Terminal</application> do as follow:
|
|
|
|
Um ein <application>Terminal</application> zu öffnen, gehen Sie wie folgt vor:
|
|
Translated by
Severin H
|
|
Reviewed by
Maren Reinecke
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:67(para)
|
|
15.
|
|
|
The <command>cd</command> command will allow you to change the directory you are in (<acronym>cd</acronym> stands simply for "change directory"). When you open a terminal you will be in your home directory. Examples:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:98(para)
|
|
20.
|
|
|
To navigate through multiple levels of directory at once, specify the full directory path that you want to go to. For example, type: <screen>cd /var/www</screen> to go directly to the <filename class="directory">/www</filename> subdirectory of <filename class="directory">/var/</filename>. As another example, type: <screen>cd ~/Desktop</screen> to move you to the <filename class="directory">Desktop</filename> subdirectory inside your home directory.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:136(para)
|
|
22.
|
|
|
The <application>Xfce4 Terminal</application> also displays this information in the title bar of its window.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:164(para)
|
|
23.
|
|
|
The <acronym>pwd</acronym> command will allow you to know in which directory you're located (<acronym>pwd</acronym> stands for "print working directory"). For example, typing <screen>pwd</screen> in the <filename class="directory">Desktop</filename> directory, will show <computeroutput>~/Desktop</computeroutput>. <placeholder-1/>
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:154(para)
|
|
25.
|
|
|
The <command>ls</command> command will allow you to see the files in the directory you are in (<acronym>ls</acronym> stands simply for "list"). Used with certain options, you can see sizes of files, when files where made, and permissions of files. For example, typing <screen>ls ~</screen> will show you the files that are in your home directory. Examples:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:174(para)
|
|
26.
|
|
|
To list all the files (including hidden files), type: <screen>ls -a</screen>
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:186(para)
|
|
27.
|
|
|
To list information in a long format, type: <screen>ls -l</screen>. This will include information about permissions, owner, and last modification time.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:192(para)
|