Files
freeCodeCamp/guide/chinese/linux/getting-started/index.md
Randell Dawson 0a1eeea424 fix(guide) Replace invalid prism code block names (#35961)
* fix: replace sh with shell

fix replace terminal with shell

fix replace node with js

fix replace output with shell

fix replace cs with csharp

fix replace c++ with cpp

fix replace c# with csharp

fix replace javasctipt with js

fix replace syntax  with js

fix replace unix with shell

fix replace linux with shell

fix replace java 8 with java

fix replace swift4 with swift

fix replace react.js with jsx

fix replace javascriot with js

fix replace javacsript with js

fix replace c++ -  with cpp

fix: corrected various typos

fix: replace Algorithm with nothing

fix: replace xaml with xml

fix: replace solidity with nothing

fix: replace c++ with cpp

fix: replace txt with shell

fix: replace code with json and css

fix: replace console with shell
2019-05-15 19:08:19 +02:00

37 lines
1.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Getting Started
localeTitle: 入门
---
## 选择分配。
目前有各种类型的Linux发行版可供选择选择一个是当前Linux世界的主要关注点。考虑到易于使用的操作系统此类别的顶级狗是 Ubuntu - 稳定的Debian系统的衍生产品Ubuntu在易于使用和最新的环境中蓬勃发展。 Mint - 基于Ubuntu和Debian这个操作系统具有很多功能比如Ubuntu的PPA兼容性apt包管理器。基本薄荷分布提醒Windows这对于从Windows进行的用户来说可能是一个很好的特性。 Trisquel - 源自Ubuntu的发行版专注于仅使用完全免费的软件避免使用专有软件。 Trisquel得到了自由软件基金会FSF的认可。
## 安装。
大多数Linux发行版都非常容易安装所有信息都显示在安装的每个步骤之间。
需要注意的一个重要步骤是决定在哪里安装新的Linux发行版。对于初级用户最好选择“引导”选项因为它将为您完成所有工作。
请记住仔细阅读所有步骤并在硬盘中留出一些空间用于新发行版我想说最低约30Gb是一件好事。
## 可怕的终端。
Linux的终端不用担心实际上它很容易使用一些练习它可以使我们的日常任务大大自动化。
在Debian / Ubuntu和衍生产品中打开cliComman Line Interface的快捷方式是“Ctrl + Alt + T”。让我们打开终端并尝试一些命令。
cd更改目录 - cd命令是您在linux命令行中使用最多的命令之一。它允许您更改工作目录。您可以使用它在文件系统的层次结构中移动。
```shell
cd
```
单独使用cd命令会将当前目录更改为用户主目录位于“/ home / username”中如“/ home / mark”中所示。
lsList - 该命令列出当前目录中的内容。它还可以用于列出文件信息。
```shell
ls
```
现在我们可以在家中看到我们的目录。