|
23.
|
|
|
To open a <application>Terminal</application> do as follow:
|
|
|
|
Pro otevření <application>Terminálu</application> proveďte následující :
|
|
Translated and reviewed by
Kamil Páral
|
|
|
|
24.
|
|
|
Choose <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem><guimenuitem>Terminal</guimenuitem></menuchoice>;
|
|
|
|
Zvolte <menuchoice><guimenu>Aplikace</guimenu><guimenuitem>Příslušenství</guimenuitem><guimenuitem>Terminál</guimenuitem></menuchoice>;
|
|
Translated by
Lubomír Sedlář
|
|
Reviewed by
Kamil Páral
|
|
|
|
25.
|
|
|
Or press <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> and type <command>gnome-terminal</command>.
|
|
|
|
Nebo stiskněte <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> a zadejte <command>gnome-terminal</command>.
|
|
Translated by
Adewzen
|
|
Reviewed by
Kamil Páral
|
|
|
|
26.
|
|
|
File and Directory Commands
|
|
|
|
Souborové a adresářové příkazy
|
|
Translated by
stuchy
|
|
Reviewed by
Kamil Páral
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:75(title)
|
|
27.
|
|
|
cd
|
|
|
|
cd
|
|
Translated and reviewed by
Kamil Páral
|
|
|
|
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>.
|
|
|
|
Příkaz <command>cd</command> mění adresáře. Když si otevřete terminál, budete ve svém domovském adresáři. Pro pohyb v souborovém systému použijte příkaz <command>cd</command>.
|
|
Translated and reviewed by
Kamil Páral
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:79(para)
|
|
29.
|
|
|
To navigate into the root directory, type: <screen>cd /</screen>
|
|
|
|
Pro přesun do kořenového adresáře napište: <screen>cd /</screen>
|
|
Translated by
stuchy
|
|
Reviewed by
Kamil Páral
|
|
|
|
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>
|
|
|
|
Pro přesun do vašeho domovského adresáře napište: <screen>cd</screen> nebo <screen>cd ~</screen>
|
|
Translated by
stuchy
|
|
Reviewed by
Kamil Páral
|
|
|
|
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.
|
|
|
|
Tento <command>~</command> znak představuje domovský adresář aktuálního uživatele. Jak vidíte, <command>cd ~</command> je ekvivalentem k <command>cd /home/uživatel/</command>. Toto pravidlo však neplatí, pokud příkaz spouštíte pod uživatelem root (např. pomocí <command>sudo</command>). V tomto případě <command>~</command> zobrazí obsah adresáře <filename class="directory">/root</filename>. Když spouštíte příkaz se <command>sudo</command>, musíte pro přístup ke svému domovskému adresáři použít celou cestu.
|
|
Translated and reviewed by
Kamil Páral
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:100(para)
|
|
32.
|
|
|
To navigate up one directory level, type: <screen>cd ..</screen>
|
|
|
|
Pro přesun o jednu adresář výše napište: <screen>cd ..</screen>
|
|
Translated and reviewed by
Kamil Páral
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:111(para)
|