Translations by Namhyung Kim

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

51100 of 154 results
45.
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.
2008-03-25
<command>uname</command> 명령어에 <emphasis role="strong">-a</emphasis> 옵션을 사용하면, 머신 이름 과 커널 이름 및 버전 등을 포함한 모든 시스템 정보를 보여줍니다. 이 명령이 여러분이 사용하고 있는 커널 버전을 체크할 때 유용하게 사용됩니다.
46.
lsb_release
2008-03-25
lsb_release
48.
Executing Commands with Elevated Privileges
2008-03-25
다른 사용자 권한으로 명령어 실행하기
49.
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>.
2008-03-25
다음에 설명할 명령어들은 명령어의 앞쪽에 <command>sudo</command> 명령을 추가해서 사용할 필요가 있을 것입니다. <command>sudo</command> 에 대한 정보는 <ulink url="https://help.ubuntu.com/community/RootSudo">RootSudo</ulink> 문서를 살펴보기 바랍니다.
2008-03-25
다음에 설명할 명령어들은 명령어의 앞쪽에 <command>sudo</command> 명령을 추가해서 사용할 필요가 있을 것입니다. <command>sudo</command> 에 대한 정보는 <ulink url="https://help.ubuntu.com/community/RootSudo">RootSudo</ulink> 문서를 살펴보기 바랍니다.
2008-03-25
다음에 설명할 명령어들은 명령어의 앞쪽에 <command>sudo</command> 명령을 추가해서 사용할 필요가 있을 것입니다. <command>sudo</command> 에 대한 정보는 <ulink url="https://help.ubuntu.com/community/RootSudo">RootSudo</ulink> 문서를 살펴보기 바랍니다.
50.
Adding a New Group
2008-03-25
새로운 그룹 추가하기
51.
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>.
2008-03-25
<command>addgroup</command> 명령어는 시스템에 새로운 그룹을 생성하기 위해 사용됩니다. 새로운 그룹을 만들려면 다음과 같이 입력하세요: <screen>addgroup newgroup</screen> 위의 명령은 <emphasis role="strong">newgroup</emphasis> 이라는 이름의 그룹을 생성할 것입니다.
2008-03-25
<command>addgroup</command> 명령어는 시스템에 새로운 그룹을 생성하기 위해 사용됩니다. 새로운 그룹을 만들려면 다음과 같이 입력하세요: <screen>addgroup newgroup</screen> 위의 명령은 <emphasis role="strong">newgroup</emphasis> 이라는 이름의 그룹을 생성할 것입니다.
2008-03-25
<command>addgroup</command> 명령어는 시스템에 새로운 그룹을 생성하기 위해 사용됩니다. 새로운 그룹을 만들려면 다음과 같이 입력하세요: <screen>addgroup newgroup</screen> 위의 명령은 <emphasis role="strong">newgroup</emphasis> 이라는 이름의 그룹을 생성할 것입니다.
52.
Adding A New User
2008-03-25
새로운 사용자 추가하기
53.
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>.
2008-03-25
<command>adduser</command> 명령어는 시스템에 새로운 사용자를 생성하기 위해 사용됩니다. 새로운 사용자를 만들려면 다음과 같이 입력하세요: <screen>adduser newuser</screen> 위의 명령은 <emphasis role="strong">newuser</emphasis> 이라는 이름의 사용자를 생성할 것입니다.
2008-03-25
<command>adduser</command> 명령어는 시스템에 새로운 사용자를 생성하기 위해 사용됩니다. 새로운 사용자를 만들려면 다음과 같이 입력하세요: <screen>adduser newuser</screen> 위의 명령은 <emphasis role="strong">newuser</emphasis> 이라는 이름의 사용자를 생성할 것입니다.
2008-03-25
<command>adduser</command> 명령어는 시스템에 새로운 사용자를 생성하기 위해 사용됩니다. 새로운 사용자를 만들려면 다음과 같이 입력하세요: <screen>adduser newuser</screen> 위의 명령은 <emphasis role="strong">newuser</emphasis> 이라는 이름의 사용자를 생성할 것입니다.
54.
To assign a password for the new user use the <command>passwd</command> command: <screen>passwd newuser</screen>
2008-03-25
새로 생성된 사용자에게 암호를 설정하려면 <command>passwd</command> 명령어를 사용하세요: <screen>passwd newuser</screen>
55.
Finally, to assign the new user to the new group, type: <screen>adduser newuser newgroup</screen>
2008-03-25
마지막으로, 새로운 사용자를 새로운 그룹에 추가하려면 다음과 같이 입력하세요: <screen>adduser newuser newgroup</screen>
56.
Options
2008-03-25
옵션
57.
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.
2008-03-25
각 명령들의 기본 동작은 일반적으로 명령어에 <emphasis role="strong">-- <emphasis>옵션</emphasis></emphasis> 을 추가하는 방식으로 변경할 수 있습니다. <link linkend="ls"><command>ls</command></link> 명령어를 예로 들면, 다음과 같이 <emphasis role="strong">-s</emphasis> 옵션을 사용하여 <command>ls -s</command> 와 같이 입력하면 출력 결과에 파일 크기(size)를 포함시킬 것입니다. 또한 <emphasis role="strong">-h</emphasis> 옵션을 추가하면 파일 크기를 "사람이 읽기 편한(human readable)" 형식으로 표시합니다.
2008-03-25
각 명령들의 기본 동작은 일반적으로 명령어에 <emphasis role="strong">-- <emphasis>옵션</emphasis></emphasis> 을 추가하는 방식으로 변경할 수 있습니다. <link linkend="ls"><command>ls</command></link> 명령어를 예로 들면, 다음과 같이 <emphasis role="strong">-s</emphasis> 옵션을 사용하여 <command>ls -s</command> 와 같이 입력하면 출력 결과에 파일 크기(size)를 포함시킬 것입니다. 또한 <emphasis role="strong">-h</emphasis> 옵션을 추가하면 파일 크기를 "사람이 읽기 편한(human readable)" 형식으로 표시합니다.
2008-03-25
각 명령들의 기본 동작은 일반적으로 명령어에 <emphasis role="strong">-- <emphasis>옵션</emphasis></emphasis> 을 추가하는 방식으로 변경할 수 있습니다. <link linkend="ls"><command>ls</command></link> 명령어를 예로 들면, 다음과 같이 <emphasis role="strong">-s</emphasis> 옵션을 사용하여 <command>ls -s</command> 와 같이 입력하면 출력 결과에 파일 크기(size)를 포함시킬 것입니다. 또한 <emphasis role="strong">-h</emphasis> 옵션을 추가하면 파일 크기를 "사람이 읽기 편한(human readable)" 형식으로 표시합니다.
58.
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.
2008-03-25
각 옵션들은 하나로 묶어서 사용할 수 있으며, 따라서 <screen>ls -sh</screen> 명령은 <screen>ls -s -h</screen> 명령과 완전히 동일합니다. 대부분의 옵션은 하나의 대시(-) 문자 대신 두 개의 대시 문자를 사용하는 긴 이름을 가지고 있습니다. 즉 위의 명령과 <screen>ls --size --human-readable</screen> 명령은 동일합니다.
59.
"Man" and getting help
2008-03-25
"man" 페이지와 도움 얻기
60.
<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.
2008-03-25
<emphasis role="strong"><emphasis>command</emphasis> --help</emphasis> 명령과 <emphasis role="strong">man <emphasis>command</emphasis></emphasis> 명령은 명령행에서 가장 중요한 도구입니다.
61.
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.
2008-03-25
거의 대부분의 명령어들은 자신과 각 옵션들에 대한 간단한 사용법을 설명해 주고 다시 명령행으로 돌아오는 <emphasis role="strong">-h</emphasis> (혹은 <emphasis role="strong">--help</emphasis>) 옵션을 가지고 있습니다. 이 옵션이 잘 동작하는지 보려면 <screen>man -h</screen> 혹은 <screen>man --help</screen> 명령을 입력해 보십시오.
2008-03-25
거의 대부분의 명령어들은 자신과 각 옵션들에 대한 간단한 사용법을 설명해 주고 다시 명령행으로 돌아오는 <emphasis role="strong">-h</emphasis> (혹은 <emphasis role="strong">--help</emphasis>) 옵션을 가지고 있습니다. 이 옵션이 잘 동작하는지 보려면 <screen>man -h</screen> 혹은 <screen>man --help</screen> 명령을 입력해 보십시오.
2008-03-25
거의 대부분의 명령어들은 자신과 각 옵션들에 대한 간단한 사용법을 설명해 주고 다시 명령행으로 돌아오는 <emphasis role="strong">-h</emphasis> (혹은 <emphasis role="strong">--help</emphasis>) 옵션을 가지고 있습니다. 이 옵션이 잘 동작하는지 보려면 <screen>man -h</screen> 혹은 <screen>man --help</screen> 명령을 입력해 보십시오.
62.
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.
2008-03-25
리눅스 상의 모든 명령어와 거의 대부분의 프로그램들은 man (manual) 파일을 가지고 있습니다. 따라서 해당 명령어에 대한 보다 자세한 설명서(manual)를 찾아보려면 단지 <command>man 명령어 이름</command> 을 입력하면 됩니다. 예를 들어, <screen>man mv</screen> 명령은 <command>mv</command> (move) 명령에 대한 설명서를 보여줍니다.
2008-03-25
리눅스 상의 모든 명령어와 거의 대부분의 프로그램들은 man (manual) 파일을 가지고 있습니다. 따라서 해당 명령어에 대한 보다 자세한 설명서(manual)를 찾아보려면 단지 <command>man 명령어 이름</command> 을 입력하면 됩니다. 예를 들어, <screen>man mv</screen> 명령은 <command>mv</command> (move) 명령에 대한 설명서를 보여줍니다.
2008-03-25
리눅스 상의 모든 명령어와 거의 대부분의 프로그램들은 man (manual) 파일을 가지고 있습니다. 따라서 해당 명령어에 대한 보다 자세한 설명서(manual)를 찾아보려면 단지 <command>man 명령어 이름</command> 을 입력하면 됩니다. 예를 들어, <screen>man mv</screen> 명령은 <command>mv</command> (move) 명령에 대한 설명서를 보여줍니다.
63.
Move up and down the man file with the arrow keys, and quit back to the command prompt with <keycap>q</keycap>.
2008-03-25
man 파일을 위아래로 살펴보려면 방향키를 이용하고, 다시 명령행으로 돌아오려면 <keycap>q</keycap> 키를 누릅니다.
2008-03-25
man 파일을 위아래로 살펴보려면 방향키를 이용하고, 다시 명령행으로 돌아오려면 <keycap>q</keycap> 키를 누릅니다.
2008-03-25
man 파일을 위아래로 살펴보려면 방향키를 이용하고, 다시 명령행으로 돌아오려면 <keycap>q</keycap> 키를 누릅니다.
64.
<screen>man man</screen> will bring up the manual entry for the <command>man</command> command, which is a good place to start.
2008-03-25
<screen>man man</screen> 명령은 <command>man</command> 명령어 자체에 대한 설명서를 보여주므로, man 명령어에 익숙치 않은 사람이라면 이 설명서부터 자세히 읽어보는 것이 좋습니다.
2008-03-25
<screen>man man</screen> 명령은 <command>man</command> 명령어 자체에 대한 설명서를 보여주므로, man 명령어에 익숙치 않은 사람이라면 이 설명서부터 자세히 읽어보는 것이 좋습니다.
2008-03-25
<screen>man man</screen> 명령은 <command>man</command> 명령어 자체에 대한 설명서를 보여주므로, man 명령어에 익숙치 않은 사람이라면 이 설명서부터 자세히 읽어보는 것이 좋습니다.
65.
<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.
2008-03-25
<screen>man intro</screen> 명령도 유용하게 사용될 것입니다. 이 명령은 리눅스 명령행에 대해 잘 설명된 간결한 "사용자 명령어 소개서" 를 보여줍니다.
2008-03-25
<screen>man intro</screen> 명령도 유용하게 사용될 것입니다. 이 명령은 리눅스 명령행에 대해 잘 설명된 간결한 "사용자 명령어 소개서" 를 보여줍니다.
2008-03-25
<screen>man intro</screen> 명령도 유용하게 사용될 것입니다. 이 명령은 리눅스 명령행에 대해 잘 설명된 간결한 "사용자 명령어 소개서" 를 보여줍니다.
66.
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.
2008-03-25
이 외에도 일반적으로 <command>man</command> 페이지보다 자세한 설명이 수록되어 있는 <command>info</command> 페이지가 있습니다. info 페이지에 대한 설명은 <screen>info info</screen> 명령을 통해 확인해 보기 바랍니다.
67.
Searching for man files
2008-03-25
man 파일 검색
68.
If you aren't sure which command or application you need to use, you can try searching the man files.
2008-03-25
만약 여러분이 사용하고 싶은 명령어나 프로그램이 어떤 것인지 잘 모르겠다면, man 파일을 검색해 볼 수 있습니다.
2008-03-25
만약 여러분이 사용하고 싶은 명령어나 프로그램이 어떤 것인지 잘 모르겠다면, man 파일을 검색해 볼 수 있습니다.
2008-03-25
만약 여러분이 사용하고 싶은 명령어나 프로그램이 어떤 것인지 잘 모르겠다면, man 파일을 검색해 볼 수 있습니다.
69.
This is the same as the <command>apropos</command> command.
2008-03-25
이것은 <command>apropos</command> 명령어와 동일한 작업을 수행합니다.
2008-03-25
이것은 <command>apropos</command> 명령어와 동일한 작업을 수행합니다.
2008-03-25
이것은 <command>apropos</command> 명령어와 동일한 작업을 수행합니다.
70.
<command>man -k foo</command>, will search the man files for <emphasis>foo</emphasis>. Try <screen>man -k thunar</screen> to see how this works. <placeholder-1/>
2008-03-25
<command>man -k foo</command> 명령은 <emphasis>foo</emphasis>에 대한 man 파일을 검색할 것입니다. 이것이 실제로 어떻게 동작하는지 궁금하다면 <screen>man -k thunar</screen> 명령을 실행해 보기 바랍니다. <placeholder-1/>
71.
This is the same as the <command>whatis</command> command.
2008-03-25
이것은 <command>whatis</command> 명령어와 동일한 작업을 수행합니다.
2008-03-25
이것은 <command>whatis</command> 명령어와 동일한 작업을 수행합니다.
2008-03-25
이것은 <command>whatis</command> 명령어와 동일한 작업을 수행합니다.