|
22.
|
|
|
Starting a Terminal
|
|
|
|
Een terminalvenster openen
|
|
Translated and reviewed by
Balaam's Miracle
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:68(title)
|
|
23.
|
|
|
To open a <application>Terminal</application> do as follow:
|
|
|
|
Een <application>Terminalvenster</application> openen doet u als volgt:
|
|
Translated and reviewed by
Balaam's Miracle
|
|
|
|
24.
|
|
|
Choose <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem><guimenuitem>Terminal</guimenuitem></menuchoice>;
|
|
|
|
Ga naar <menuchoice><guimenu>Toepassingen</guimenu><guimenuitem>Hulpmiddelen</guimenuitem><guimenuitem>Terminalvenster</guimenuitem></menuchoice>;
|
|
Translated and reviewed by
Tino Meinen
|
|
|
|
25.
|
|
|
Or press <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> and type <command>gnome-terminal</command>.
|
|
|
|
Of druk op <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> en type <command>gnome-terminal</command>.
|
|
Translated and reviewed by
Balaam's Miracle
|
|
|
|
26.
|
|
|
File and Directory Commands
|
|
|
|
Opdrachten voor bestanden en mappen
|
|
Translated and reviewed by
Tino Meinen
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:75(title)
|
|
27.
|
|
|
cd
|
|
|
|
cd
|
|
Translated by
Bart Cramer
|
|
Reviewed by
Tino Meinen
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:78(title)
|
|
28.
|
|
|
The <command>cd</command> command changes directories. When you open a terminal you will be in your home directory. To move around the file system you will use <command>cd</command>.
|
|
|
|
Met de opdracht <command>cd</command> kunt u van map wisselen. Wanneer u een terminalvenster opent, bevindt u zich in uw persoonlijke map. Om binnen het bestandssysteem te navigeren zult u de opdracht <command>cd</command> moeten gebruiken.
|
|
Translated and reviewed by
Balaam's Miracle
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:79(para)
|
|
29.
|
|
|
To navigate into the root directory, type: <screen>cd /</screen>
|
|
|
|
Om naar de root-map te gaan typt u: <screen>cd /</screen>
|
|
Translated and reviewed by
Redmar
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:88(para)
|
|
30.
|
|
|
To navigate to your home directory, type: <screen>cd</screen> or <screen>cd ~</screen>
|
|
|
|
Om naar uw persoonlijke map te gaan, typt u: <screen>cd</screen> of <screen>cd ~</screen>
|
|
Translated and reviewed by
Balaam's Miracle
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:94(para)
|
|
31.
|
|
|
The <command>~</command> character represents the current user's home directory. As seen above, <command>cd ~</command> is equivalent to <command>cd /home/username/</command>. However, when running a command as root (using <command>sudo</command>, for example), <command>~</command> points instead to <filename class="directory">/root</filename>. When running a command with <command>sudo</command>, the full path to your home directory must be given.
|
|
|
|
Het <command>~</command> karakter staat voor de persoonlijke map van de huidige gebruiker. Zoals hierboven getoond, is <command>cd ~</command> gelijk aan <command>cd /home/username/</command>. Echter, als u een opdracht als beheerder uitvoert (bijvoorbeeld, door <command>sudo</command> te gebruiken), zal <command>~</command> in plaats daarvan naar <filename class="directory">/root</filename> verwijzen. Zodra u een opdracht met <command>sudo</command> uitvoert, moet het voledige pad naar uw persoonlijke map worden opgegeven.
|
|
Translated and reviewed by
Balaam's Miracle
|
In upstream: |
|
Het teken <command>~</command> staat voor de persoonlijke map van de huidige gebruiker. Zoals hierboven getoond, is <command>cd ~</command> gelijk aan <command>cd /home/username/</command>. Echter, als u een opdracht als beheerder uitvoert (bijvoorbeeld, door <command>sudo</command> te gebruiken), zal <command>~</command> in plaats daarvan naar <filename class="directory">/root</filename> verwijzen. Zodra u een opdracht met <command>sudo</command> uitvoert, moet het volledige pad naar uw persoonlijke map worden opgegeven.
|
|
|
Suggested by
Removed by request
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:100(para)
|