|
23.
|
|
|
To open a <application>Terminal</application> do as follow:
|
|
|
|
(no translation yet)
|
|
|
|
24.
|
|
|
Choose <menuchoice><guimenu>Applications</guimenu><guimenuitem>Accessories</guimenuitem><guimenuitem>Terminal</guimenuitem></menuchoice>;
|
|
|
|
(no translation yet)
|
|
|
|
25.
|
|
|
Or press <keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo> and type <command>gnome-terminal</command>.
|
|
|
|
(no translation yet)
|
|
|
|
26.
|
|
|
File and Directory Commands
|
|
|
|
Команде датотека и директоријума
|
|
Translated and reviewed by
Мирослав Николић
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:75(title)
|
|
27.
|
|
|
cd
|
|
|
|
cd
|
|
Translated and reviewed by
Filip Knežić
|
|
|
|
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>.
|
|
|
|
Команда <command>cd</command> мења директоријуме. Када отворите терминал бићете у Вашем личном директоријуму. Да се крећете по систему датотека користићете<command>cd</command>.
|
|
Translated and reviewed by
Мирослав Николић
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:79(para)
|
|
29.
|
|
|
To navigate into the root directory, type: <screen>cd /</screen>
|
|
|
|
Да се крећете по матичном (root) директоријуму, упишите: <screen>cd /</screen>
|
|
Translated and reviewed by
Мирослав Николић
|
|
|
|
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>
|
|
|
|
Да се крећете по Вашем личном директоријуму, упишите: <screen>cd</screen> или <screen>cd ~</screen>
|
|
Translated and reviewed by
Мирослав Николић
|
|
|
|
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.
|
|
|
|
Знак <command>~</command> представља лични директоријум тренутног корисника. Као што се види горе, <command>cd ~</command> је исто што и <command>cd /home/username/</command>. Међутим, када покрећете команду као администратор (користећи <command>sudo</command>, на пример), <command>~</command> указује уместо <filename class="directory">/root</filename>. Када покрећете команду користећи <command>sudo</command>, пуна путања до Вашег личног директоријума мора бити дата.
|
|
Translated and reviewed by
Мирослав Николић
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:100(para)
|
|
32.
|
|
|
To navigate up one directory level, type: <screen>cd ..</screen>
|
|
|
|
Да пређете на следећи ниво директоријума, упишите: <screen>cd ..</screen>
|
|
Translated and reviewed by
Мирослав Николић
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:111(para)
|