Translations by Matt C

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

150 of 88 results
1.
ubuntu-doc@lists.ubuntu.com (Ubuntu Documentation Project)
2007-11-09
ubuntu-doc@lists.ubuntu.com (Ubuntu Documentation Project)
3.
2006-09-07
2007-11-09
2006-09-07
4.
Placeholder.
2007-11-09
Placeholder.
15.
Using this Guide
2007-11-09
Using this Guide
18.
This guide will make you familiar with basic GNU/Linux shell commands. It is not intended to be a complete guide to the command line, just an introduction to complement Ubuntu's graphical tools.
2007-11-09
This guide will make you familiar with basic GNU/Linux shell commands. It is not intended to be a complete guide to the command line, just an introduction to complement Ubuntu's graphical tools.
19.
All command names, file names or paths to directories will be shown using a <command>monospace font</command>.
2007-11-09
All command names, file names or paths to directories will be shown using a <command>monospace font</command>.
20.
All the commands on this guide are to be issued from a command prompt in a <application>Terminal</application> and will be shown as: <screen>command to type</screen>
2007-11-09
All the commands on this guide are to be issued from a command prompt in a <application>Terminal</application> and will be shown as: <screen>command to type</screen>
22.
Starting a Terminal
2007-11-09
Starting a Terminal
24.
File and Directory Commands
2007-11-09
File and Directory Commands
25.
cd
2007-11-09
cd
27.
To navigate into the root directory, type: <screen>cd /</screen>
2007-11-09
To navigate into the root directory, type: <screen>cd /</screen>
28.
To navigate to your home directory, type: <screen>cd</screen> or <screen>cd ~</screen>
2007-11-09
To navigate to your home directory, type: <screen>cd</screen> or <screen>cd ~</screen>
30.
To navigate up one directory level, type: <screen>cd ..</screen>
2007-11-09
To navigate up one directory level, type: <screen>cd ..</screen>
31.
To navigate to the previous directory (or back), type: <screen>cd -</screen>
2007-11-09
To navigate to the previous directory (or back), type: <screen>cd -</screen>
33.
pwd
2007-11-09
pwd
36.
ls
2007-11-09
ls
39.
cp
2007-11-09
cp
41.
mv
2007-11-09
mv
43.
rm
2007-11-09
rm
46.
mkdir
2007-11-09
mkdir
48.
System Information Commands
2007-11-09
System Information Commands
49.
df
2007-11-09
df
50.
The <command>df</command> command displays filesystem disk space usage for all partitions. <screen>df -h</screen> will give information using megabytes (M) and gigabytes (G) instead of blocks (<emphasis role="strong">-h</emphasis> means "human-readable").
2007-11-09
The <command>df</command> command displays filesystem disk space usage for all partitions. <screen>df -h</screen> will give information using megabytes (M) and gigabytes (G) instead of blocks (<emphasis role="strong">-h</emphasis> means "human-readable").
51.
free
2007-11-09
free
52.
The <command>free</command> command displays the amount of free and used memory in the system. <screen>free -m</screen> will give the information using megabytes, which is probably most useful for current computers.
2007-11-09
The <command>free</command> command displays the amount of free and used memory in the system. <screen>free -m</screen> will give the information using megabytes, which is probably most useful for current computers.
53.
top
2007-11-09
top
54.
The <command>top</command> command displays information on your GNU/Linux system, running processes and system resources, including CPU, RAM &amp; swap usage and total number of tasks being run. To exit <application>top</application>, press <keycap>q</keycap>.
2007-11-09
The <command>top</command> command displays information on your GNU/Linux system, running processes and system resources, including CPU, RAM &amp; swap usage and total number of tasks being run. To exit <application>top</application>, press <keycap>q</keycap>.
55.
uname
2007-11-09
uname
56.
The <command>uname</command> command with the <emphasis role="strong">-a</emphasis> option, prints all system information, including machine name, kernel name &amp; version, and a few other details. Most useful for checking which kernel you're using.
2007-11-09
The <command>uname</command> command with the <emphasis role="strong">-a</emphasis> option, prints all system information, including machine name, kernel name &amp; version, and a few other details. Most useful for checking which kernel you're using.
57.
lsb_release
2007-11-09
lsb_release
59.
Executing Commands with Elevated Privileges
2007-11-09
Executing Commands with Elevated Privileges
60.
The following commands will need to be prefaced with the <command>sudo</command> command. Please see <ulink url="https://help.ubuntu.com/community/RootSudo">RootSudo</ulink> for information on using <command>sudo</command>.
2007-11-09
The following commands will need to be prefaced with the <command>sudo</command> command. Please see <ulink url="https://help.ubuntu.com/community/RootSudo">RootSudo</ulink> for information on using <command>sudo</command>.
61.
Adding a New Group
2007-11-09
Adding a New Group
62.
The <command>addgroup</command> command is used to create a new group on the system. To create a new group, type: <screen>addgroup newgroup</screen> The above command will create a new group called <emphasis role="strong">newgroup</emphasis>.
2007-11-09
The <command>addgroup</command> command is used to create a new group on the system. To create a new group, type: <screen>addgroup newgroup</screen> The above command will create a new group called <emphasis role="strong">newgroup</emphasis>.
63.
Adding A New User
2007-11-09
Adding A New User
64.
The <command>adduser</command> is used to create new users on the system. To create a new user, type: <screen>adduser newuser</screen> The above command will create a new user called <emphasis role="strong">newuser</emphasis>.
2007-11-09
The <command>adduser</command> is used to create new users on the system. To create a new user, type: <screen>adduser newuser</screen> The above command will create a new user called <emphasis role="strong">newuser</emphasis>.
65.
To assign a password for the new user use the <command>passwd</command> command: <screen>passwd newuser</screen>
2007-11-09
To assign a password for the new user use the <command>passwd</command> command: <screen>passwd newuser</screen>
66.
Finally, to assign the new user to the new group, type: <screen>adduser newuser newgroup</screen>
2007-11-09
Finally, to assign the new user to the new group, type: <screen>adduser newuser newgroup</screen>
67.
Options
2007-11-09
Options
68.
The default behavior for a command may usually be modified by adding a <emphasis role="strong">-- <emphasis>option</emphasis></emphasis> to the command. The <link linkend="ls"><command>ls</command></link> command, for example, has a <emphasis role="strong">-s</emphasis> option so that <command>ls -s</command> will include file sizes in the listing. There is also a <emphasis role="strong">-h</emphasis> option to get those sizes in a "human readable" format.
2007-11-09
The default behaviour for a command may usually be modified by adding a <emphasis role="strong">-- <emphasis>option</emphasis></emphasis> to the command. The <link linkend="ls"><command>ls</command></link> command, for example, has a <emphasis role="strong">-s</emphasis> option so that <command>ls -s</command> will include file sizes in the listing. There is also a <emphasis role="strong">-h</emphasis> option to get those sizes in a "human readable" format.
69.
Options can be grouped in clusters so <screen>ls -sh</screen> is exactly the same command as <screen>ls -s -h</screen> Most options have a long version, prefixed with two dashes instead of one, so even <screen>ls --size --human-readable</screen> is the same command.
2007-11-09
Options can be grouped in clusters so <screen>ls -sh</screen> is exactly the same command as <screen>ls -s -h</screen> Most options have a long version, prefixed with two dashes instead of one, so even <screen>ls --size --human-readable</screen> is the same command.
70.
"Man" and getting help
2007-11-09
"Man" and getting help
71.
<emphasis role="strong"><emphasis>command</emphasis> --help</emphasis> and <emphasis role="strong">man <emphasis>command</emphasis></emphasis> are the two most important tools at the command line.
2007-11-09
<emphasis role="strong"><emphasis>command</emphasis> --help</emphasis> and <emphasis role="strong">man <emphasis>command</emphasis></emphasis> are the two most important tools at the command line.
72.
Virtually all commands understand the <emphasis role="strong">-h</emphasis> (or <emphasis role="strong">--help</emphasis>) option which will produce a short usage description of the command and it's options, then exit back to the command prompt. Type <screen>man -h</screen> or <screen>man --help</screen> to see this in action.
2007-11-09
Virtually all commands understand the <emphasis role="strong">-h</emphasis> (or <emphasis role="strong">--help</emphasis>) option which will produce a short usage description of the command and it's options, then exit back to the command prompt. Type <screen>man -h</screen> or <screen>man --help</screen> to see this in action.
73.
Every command and nearly every application in Linux will have a man (manual) file, so finding them is as simple as typing <command>man command</command> to bring up a longer manual entry for the specified command. For example, <screen>man mv</screen> will bring up the <command>mv</command> (move) manual.
2007-11-09
Every command and nearly every application in Linux will have a man (manual) file, so finding them is as simple as typing <command>man command</command> to bring up a longer manual entry for the specified command. For example, <screen>man mv</screen> will bring up the <command>mv</command> (move) manual.
74.
Move up and down the man file with the arrow keys, and quit back to the command prompt with <keycap>q</keycap>.
2007-11-09
Move up and down the man file with the arrow keys, and quit back to the command prompt with <keycap>q</keycap>.
75.
<screen>man man</screen> will bring up the manual entry for the <command>man</command> command, which is a good place to start.
2007-11-09
<screen>man man</screen> will bring up the manual entry for the <command>man</command> command, which is a good place to start.
76.
<screen>man intro</screen> is especially useful - it displays the "Introduction to user commands" which is a well-written, fairly brief introduction to the Linux command line.
2007-11-09
<screen>man intro</screen> is especially useful - it displays the "Introduction to user commands" which is a well-written, fairly brief introduction to the Linux command line.
77.
There are also <command>info</command> pages, which are generally more in-depth than <command>man</command> pages. Try <screen>info info</screen> for the introduction to info pages.
2007-11-09
There are also <command>info</command> pages, which are generally more in-depth than <command>man</command> pages. Try <screen>info info</screen> for the introduction to info pages.
78.
Searching for man files
2007-11-09
Searching for man files