Translations by Robert Readman

Robert Readman has submitted the following strings to this translation. Contributions are visually coded: currently used translations, unreviewed suggestions, rejected suggestions.

150 of 132 results
1.
@@image: 'help:/images/C/C/konsole.png'; md5=THIS FILE DOESN'T EXIST
2010-04-21
@@image: 'help:/images/C/C/konsole.png'; md5=THIS FILE DOESN'T EXIST
2.
Introduction To The Command Line
2010-04-21
Introduction To The Command Line
3.
Credits and License
2010-04-21
Credits and Licence
4.
This document is maintained by the Ubuntu documentation team (https://wiki.ubuntu.com/DocumentationTeam). For a list of contributors, see the <ulink url="help:/kubuntu/contributors.html">contributors page</ulink>
2010-04-21
This document is maintained by the Ubuntu documentation team (https://wiki.ubuntu.com/DocumentationTeam). For a list of contributors, see the <ulink url="help:/kubuntu/contributors.html">contributors page</ulink>
5.
This document is made available under the Creative Commons ShareAlike 2.5 License (CC-BY-SA).
2010-04-21
This document is made available under the Creative Commons ShareAlike 2.5 Licence (CC-BY-SA).
6.
You are free to modify, extend, and improve the Ubuntu documentation source code under the terms of this license. All derivative works must be released under this license.
2010-04-21
You are free to modify, extend, and improve the Ubuntu documentation source code under the terms of this licence. All derivative works must be released under this licence.
7.
This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE AS DESCRIBED IN THE DISCLAIMER.
2010-04-21
This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE AS DESCRIBED IN THE DISCLAIMER.
8.
A copy of the license is available here: <ulink url="help:/kubuntu/copyright.html">Creative Commons ShareAlike License</ulink>.
2010-04-21
A copy of the licence is available here: <ulink url="help:/kubuntu/copyright.html">Creative Commons ShareAlike Licence</ulink>.
9.
2009
2010-04-21
2009
10.
Ubuntu Documentation Project
2010-04-21
Ubuntu Documentation Project
11.
Canonical Ltd. and members of the <placeholder-1/>
2010-04-21
Canonical Ltd. and members of the <placeholder-1/>
12.
The Ubuntu Documentation Project
2010-04-21
The Ubuntu Documentation Project
13.
This document provides a brief description of the Linux command line. It is not a complete guide to the command line, but rather an introduction to complement <phrase>Kubuntu</phrase>'s graphical tools.
2010-04-21
This document provides a brief description of the Linux command line. It is not a complete guide to the command line, but rather an introduction to complement <phrase>Kubuntu</phrase>'s graphical tools.
14.
Introduction
2010-04-21
Introduction
15.
man intro(1)
2010-04-21
man intro(1)
16.
"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/>
2010-04-21
"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/>
17.
This guide describes some basic GNU/Linux shell commands. It is not intended to be a complete guide to the command line, just an introduction to complement <phrase>Kubuntu</phrase>'s graphical tools.
2010-04-21
This guide describes some basic GNU/Linux shell commands. It is not intended to be a complete guide to the command line, just an introduction to complement <phrase>Kubuntu</phrase>'s graphical tools.
18.
All command names, file names or paths to directories will be shown using a <command>monospace font</command>.
2010-04-21
All command names, file names or paths to directories will be shown using a <command>monospace font</command>.
19.
The commands should be issued from a command prompt within a <application>Terminal</application> and will be shown as: <screen>command to type</screen>
2010-04-21
The commands should be issued from a command prompt within a <application>Terminal</application> and will be shown as: <screen>command to type</screen>
20.
<emphasis role="strong">Command Line Linux is case sensitive.</emphasis> User, user, and USER are each different and distinct in Linux.
2010-04-21
<emphasis role="strong">Command Line Linux is case sensitive.</emphasis> User, user, and USER are each different and distinct in Linux.
21.
Starting A Terminal
2010-04-21
Starting A Terminal
22.
<phrase>Kubuntu</phrase>'s Terminal application is called <application>Konsole</application>, and is opened by going to <menuchoice><guimenu>Kickoff Application Launcher</guimenu><guisubmenu>Applications</guisubmenu><guisubmenu>System</guisubmenu><guimenuitem>Terminal (Konsole)</guimenuitem></menuchoice>.
2010-04-21
<phrase>Kubuntu</phrase>'s Terminal application is called <application>Konsole</application>, and is opened by going to <menuchoice><guimenu>Kickoff Application Launcher</guimenu><guisubmenu>Applications</guisubmenu><guisubmenu>System</guisubmenu><guimenuitem>Terminal (Konsole)</guimenuitem></menuchoice>.
23.
<phrase>Kubuntu</phrase>'s terminal - Konsole
2010-04-21
<phrase>Kubuntu</phrase>'s terminal - Konsole
24.
File and Directory Commands
2010-04-21
File and Directory Commands
25.
pwd - print working directory
2010-04-21
pwd - print working directory
26.
<application>Konsole</application> also displays this information in both the tab and title bar of its window.
2010-04-21
<application>Konsole</application> also displays this information in both the tab and title bar of its window.
27.
The <command>pwd</command> command displays the directory where the user is currently located (<acronym>pwd</acronym> stands for <quote>print working directory</quote>). For example, typing <screen>pwd</screen> while in the <filename class="directory">Desktop</filename> will show <computeroutput>/home/[username]/Desktop</computeroutput>. <placeholder-1/>
2010-04-21
The <command>pwd</command> command displays the directory where the user is currently located (<acronym>pwd</acronym> stands for <quote>print working directory</quote>). For example, typing <screen>pwd</screen> while in the <filename class="directory">Desktop</filename> will show <computeroutput>/home/[username]/Desktop</computeroutput>. <placeholder-1/>
28.
cd - change directory
2010-04-21
cd - change directory
29.
The <command>cd</command> command changes directories (<acronym>cd</acronym> stands for <quote>change directory</quote>). When a terminal window is opened, it will be located in the user's home directory. Moving around the file system requires the use of <command>cd</command>.
2010-04-21
The <command>cd</command> command changes directories (<acronym>cd</acronym> stands for <quote>change directory</quote>). When a terminal window is opened, it will be located in the user's home directory. Moving around the file system requires the use of <command>cd</command>.
30.
To navigate into the root directory, type: <screen>cd /</screen>
2010-04-21
To navigate into the root directory, type: <screen>cd /</screen>
31.
To navigate to the current user's home directory, type: <screen>cd</screen> or <screen>cd ~</screen>
2010-04-21
To navigate to the current user's home directory, type: <screen>cd</screen> or <screen>cd ~</screen>
32.
The <command>~</command> character represents the current user's home directory. As shown 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 to <filename class="directory">/root</filename>. When running a <command>cd</command> command with <command>sudo</command>, the full path to the home directory must be given.
2010-04-21
The <command>~</command> character represents the current user's home directory. As shown 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 to <filename class="directory">/root</filename>. When running a <command>cd</command> command with <command>sudo</command>, the full path to the home directory must be given.
33.
To navigate up one directory level, type: <screen>cd ..</screen>
2010-04-21
To navigate up one directory level, type: <screen>cd ..</screen>
34.
To navigate up two directory levels, type: <screen>cd ../../</screen>
2010-04-21
To navigate up two directory levels, type: <screen>cd ../../</screen>
35.
To navigate to the previous directory (go back), type: <screen>cd -</screen>
2010-04-21
To navigate to the previous directory (go back), type: <screen>cd -</screen>
36.
To navigate through multiple levels of directories at once, specify the full directory path. For example, type: <screen>cd /var/log</screen> to go directly to the <filename class="directory">/log</filename> subdirectory of <filename class="directory">/var/</filename>. For another example, typing: <screen>cd ~/Desktop</screen> moves to the <filename class="directory">Desktop</filename> subdirectory inside the current user's home directory.
2010-04-21
To navigate through multiple levels of directories at once, specify the full directory path. For example, type: <screen>cd /var/log</screen> to go directly to the <filename class="directory">/log</filename> subdirectory of <filename class="directory">/var/</filename>. For another example, typing: <screen>cd ~/Desktop</screen> moves to the <filename class="directory">Desktop</filename> subdirectory inside the current user's home directory.
37.
ls - list files
2010-04-21
ls - list files
38.
The <command>ls</command> command outputs a list of the files in the current directory (<acronym>ls</acronym> is short for <quote>list</quote>). For example, typing <screen>ls ~</screen> will display the files that are in the current user's home directory.
2010-04-21
The <command>ls</command> command outputs a list of the files in the current directory (<acronym>ls</acronym> is short for <quote>list</quote>). For example, typing <screen>ls ~</screen> will display the files that are in the current user's home directory.
39.
Used with the <command>-l</command> option, <command>ls</command> outputs other information along with the filename, such as the permissions on the file, the file's owner, and more.
2010-04-21
Used with the <command>-l</command> option, <command>ls</command> outputs other information along with the filename, such as the permissions on the file, the file's owner, and more.
40.
Used with the <command>-al</command> options, <command>ls</command> outputs the information associated with the <command>-l</command> option in addition to showing hidden files (<command>a</command> option).
2010-04-21
Used with the <command>-al</command> options, <command>ls</command> outputs the information associated with the <command>-l</command> option in addition to showing hidden files (<command>a</command> option).
41.
touch - create empty file
2010-04-21
touch - create empty file
42.
The <command>touch</command> command is used either to change a file's access and modification timestamps or to create a new empty file. For example, <screen>touch foo</screen> will create a new empty file named <filename>foo</filename>. If <filename>foo</filename> is already a file, then using <command>touch</command> will update the timestamps on the file which will show the last time a file was <emphasis>touched</emphasis>.
2010-04-21
The <command>touch</command> command is used either to change a file's access and modification timestamps or to create a new empty file. For example, <screen>touch foo</screen> will create a new empty file named <filename>foo</filename>. If <filename>foo</filename> is already a file, then using <command>touch</command> will update the timestamps on the file which will show the last time a file was <emphasis>touched</emphasis>.
43.
mkdir - make directory
2010-04-21
mkdir - make directory
44.
The <command>mkdir</command> command is used to create a new directory (<acronym>mkdir</acronym> stands for <quote>make directory</quote>). To create a new directory named <filename class="directory">foobar</filename>, type: <screen>mkdir foobar</screen>
2010-04-21
The <command>mkdir</command> command is used to create a new directory (<acronym>mkdir</acronym> stands for <quote>make directory</quote>). To create a new directory named <filename class="directory">foobar</filename>, type: <screen>mkdir foobar</screen>
45.
cp - copy files or directories
2010-04-21
cp - copy files or directories
46.
The <command>cp</command> command makes a copy of a file or directory (<acronym>cp</acronym> is short for <quote>copy</quote>). To make an exact copy of <filename>foo</filename> and name it <filename>bar</filename>, type: <screen>cp foo bar</screen> To make an exact copy of the <filename class="directory">foo_dir</filename> directory and name it <filename class="directory">bar_dir</filename>, type: <screen>cp -r foo_dir bar_dir</screen>
2010-04-21
The <command>cp</command> command makes a copy of a file or directory (<acronym>cp</acronym> is short for <quote>copy</quote>). To make an exact copy of <filename>foo</filename> and name it <filename>bar</filename>, type: <screen>cp foo bar</screen> To make an exact copy of the <filename class="directory">foo_dir</filename> directory and name it <filename class="directory">bar_dir</filename>, type: <screen>cp -r foo_dir bar_dir</screen>
47.
mv - move files or directories
2010-04-21
mv - move files or directories
48.
The <command>mv</command> command moves a file or directory to a different location or will rename a file or directory (<acronym>mv</acronym> is short for <quote>move</quote>). To rename the file <filename>foo</filename> to <filename>bar</filename>, type: <screen>mv foo bar</screen> To move the file <filename>foo</filename> into the current user's <filename class="directory">Desktop</filename> directory, type: <screen>mv foo ~/Desktop</screen> This will not rename <filename>foo</filename> to <filename>Desktop</filename> because <filename>foo</filename> is a file and <filename class="directory">Desktop</filename> is a directory.
2010-04-21
The <command>mv</command> command moves a file or directory to a different location or will rename a file or directory (<acronym>mv</acronym> is short for <quote>move</quote>). To rename the file <filename>foo</filename> to <filename>bar</filename>, type: <screen>mv foo bar</screen> To move the file <filename>foo</filename> into the current user's <filename class="directory">Desktop</filename> directory, type: <screen>mv foo ~/Desktop</screen> This will not rename <filename>foo</filename> to <filename>Desktop</filename> because <filename>foo</filename> is a file and <filename class="directory">Desktop</filename> is a directory.
49.
rm - remove files or directories
2010-04-21
rm - remove files or directories
50.
The <command>rm</command> command is used to delete files and directories (<acronym>rm</acronym> is short for <quote>remove</quote>). To delete the file <filename>foo</filename> for the current directory, type: <screen>rm foo</screen>
2010-04-21
The <command>rm</command> command is used to delete files and directories (<acronym>rm</acronym> is short for <quote>remove</quote>). To delete the file <filename>foo</filename> for the current directory, type: <screen>rm foo</screen>