Linux学习前的准备

Linux学习前的准备

Linux的学习也是这次项目的一个点。

我的学习教材是 The Linux Command Line,这是本已经被翻译好了的 中英版本的教材,知识点还是比较入门的

我使用的是 VMware Player + Unbuntu 16.0 。至于安装虚拟机的问题网络上有很多的教程,这里就不多提。


关于 The Linux Command Line (TLCL )

这不是一本关于Linux系统管理的书,这本书是围绕着Linux而写的,这本书是为已经从其它平台移民到 Linux 系统的新手而写的。但是我们必须知道,命令行可不是轻轻松松就能学好的。

This is not a book about Linux system administration.This book is very Linux-centric.This book is for new Linux users who have migrated from other platforms.But we must know that the command line has survived the test of time.

这本书从四个方面行学习 :

  1. 学习 shell 开始探究命令行基本语言,包括命令组成结构, 文件系统浏览,编写命令行,查找命令帮助文档。
  2. 配置文件及环境,讲述了如何编写配置文件,通过配置文件,用命令行来 操控计算机
  3. 常见任务及主要工具,探究了许多命令行经常执行的普通任务。
  4. 编写 Shell 脚本 介绍了 shell 编程

This book will learn it form four aspects:

  1. Learning The Shell starts our exploration of the basic language of the command line including such things as the structure of commands, file system navigation, command line editing, and finding help and documentation for commands.
  2. Configuration And The Environment covers editing configuration files that control the computer’s operation from the command line.
  3. Common Tasks And Essential Tools explores many of the ordinary tasks that are commonly performed from the command line.
  4. Writing Shell Scripts introduces shell programming

Yesterday you said tomorrow

原文地址:https://www.cnblogs.com/Huzr/p/8661364.html