|
22.
|
|
|
Starting a Terminal
|
|
|
|
شروع یک پایانه
|
|
Translated and reviewed by
Danial Behzadi
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:68(title)
|
|
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
Danial Behzadi
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:75(title)
|
|
27.
|
|
|
cd
|
|
|
|
cd
|
|
Translated by
Arash
|
|
Reviewed by
Danial Behzadi
|
|
|
|
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>.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:79(para)
|
|
29.
|
|
|
To navigate into the root directory, type: <screen>cd /</screen>
|
|
|
|
برای ورود به شاخهی ریشه فرمان مقابل را تایپ کنید: <screen>cd /</screen>
|
|
Translated and reviewed by
Danial Behzadi
|
|
|
|
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
Danial Behzadi
|
|
|
|
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.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:100(para)
|