【Debian管理员手册】附录 B. 简短辅导课程

尽管这本书的主要目标用户是管理员和高级用户,但是我们也不想忽视初学者。这篇附录是一篇讲述操作Unix 计算机基础内容。

B.1. Shell 和基本命令

在Uinx 世界中,每一个管理员迟早都要使用命令行;例如,当系统可能启动失败后只给了一个命令行恢复模式。所以在这样的环境种能够使用命令行是一种基本的生存技能。

速览启动命令解释器

A command-line environment can be run from the graphical desktop, by an application known as a “terminal”. In GNOME, you can start it from the “Activities” overview (that you get when you move the mouse in the top-left corner of the screen) by typing the first letters of the application name. In Plasma, you will find it in the
K
Applications
System menu. 这一部分只会展示各个命令的简单用法,它们还有许多此处尚未描述的可用选项。请阅读它们对应的手册页,其中详细的文档可供你参考。

B.1.1. 浏览目录与管理文件

打开会话之后,
pwd 命令(
print working directory)会显示当前位置。当前目录可以通过
cd 目录命令(
cd
change directory)。上级目录叫
..(两个点),当前目录为
.(一个点)。
ls 命令会
列举目录中的内容,若没有参数,则其将对当前目录进行操作。

$ pwd
/home/rhertzog
$ cd 桌面
$ pwd
/home/rhertzog/桌面
$ cd .
$ pwd
/home/rhertzog/桌面
$ cd ..
$ pwd
/home/rhertzog
$ ls
桌面  下载  图片  模板  文档  音乐  公共  视频

您可以使用
mkdir 目录名 命令创建一个新的目录,且可以使用
rmdir 目录名 命令删除一个已存在的(空的)目录。
mv 命令可以
移动和/或重命名文件和目录;
删除一个文件可以使用
rm 文件名 命令来完成。

$ mkdir test
$ ls
桌面    下载  图片  模板  视频
文档  音乐      公共    test
$ mv test new
$ ls
桌面   下载  new       公共     视频
文档  音乐      图片  模板
$ rmdir new
$ ls
桌面    下载  图片  模板  视频
文档  音乐      公共

B.1.2. 显示和修改文本文件

cat 文件名命令(用于
连接(concatenate)文件并将内容送至标准输出设备)读取文件并将其内容显示在终端上。如果文件过大而不适合屏幕显示的话,可以使用一个分页器进行辅助,例如
less(或者
more)以按页在屏幕上显示内容。 The
editor command starts a text editor (such as
vi or
nano) and allows creating, modifying and reading text files. The simplest files can sometimes be created directly from the command interpreter thanks to redirection:
echo "text" >file creates a file named
file with “
text” as its contents. Adding a line at the end of this file is possible too, with a command such as
echo "moretext" >>file. Note the
>> in this example.

B.1.3. 搜索文件和在文件中搜索

The
find directory criteria command looks for files in the hierarchy under
directory according to several criteria. The most commonly used criterion is
-name name: that allows looking for a file by its name. The
grep expression files command searches the contents of the files and extracts the lines matching the regular expression (see sidebar
BACK TO BASICS Regular expression). Adding the
-r option enables a recursive search on all files contained in the directory passed as a parameter. This allows looking for a file when only a part of the contents are known.

B.1.4. 管理进程

The
ps aux command lists the processes currently running and helps identifying them by showing their
pid (process id). Once the
pid of a process is known, the
kill -signal pid command allows sending it a signal (if the process belongs to the current user). Several signals exist; most commonly used are
TERM (a request to terminate gracefully) and
KILL (a forced kill). The command interpreter can also run programs in the background if the command is followed by a “&”. By using the ampersand, the user resumes control of the shell immediately even though the command is still running (hidden from the user; as a background process). The
jobs command lists the processes running in the background; running
fg %job-number (for
foreground) restores a job to the foreground. When a command is running in the foreground (either because it was started normally, or brought back to the foreground with
fg), the
Control+
Z key combination pauses the process and resumes control of the command-line. The process can then be restarted in the background with
bg %job-number (for
background).

B.1.5. 系统信息:内存、磁盘空间、身份信息

The
free command displays information on memory;
df (
disk free) reports on the available disk space on each of the disks mounted in the filesystem. Its
-h option (for
human readable) converts the sizes into a more legible unit (usually mebibytes or gibibytes). In a similar fashion, the
free command supports the
-m and
-g options, and displays its data either in mebibytes or in gibibytes, respectively.

$ free
              total        used        free      shared  buff/cache   available
Mem:       16279260     5910248      523432      871036     9845580     9128964
Swap:      16601084      240640    16360444
$ df
Filesystem                1K-blocks      Used Available Use% Mounted on
udev                        8108516         0   8108516   0% /dev
tmpfs                       1627928    161800   1466128  10% /run
/dev/mapper/vg_main-root  466644576 451332520  12919912  98% /
tmpfs                       8139628    146796   7992832   2% /dev/shm
tmpfs                          5120         4      5116   1% /run/lock
tmpfs                       8139628         0   8139628   0% /sys/fs/cgroup
/dev/sda1                    523248      1676    521572   1% /boot/efi
tmpfs                       1627924        88   1627836   1% /run/user/1000

The
id command displays the identity of the user running the session, along with the list of groups they belong to. Since access to some files or devices may be limited to group members, checking available group membership may be useful.

$ id
uid=1000(rhertzog) gid=1000(rhertzog) groups=1000(rhertzog),24(cdrom),25(floppy),27(sudo),29(audio),30(dip),44(video),46(plugdev),108(netdev),109(bluetooth),115(scanner)

原创文章,作者:晴川运维,如若转载,请注明出处:https://baike.qcidc.com/4484.html

(0)
晴川运维晴川运维
上一篇 2025年6月8日
下一篇 2025年6月8日

相关推荐

  • ssh_scan:远程验证你 SSH 服务的配置和策略

    ssh_scan 是一个面向 Linux 和 UNIX 服务器的易用的 SSH 服务参数配置和策略的扫描器程序,其思路来自Mozilla OpenSSH 安全指南,这个指南为 SS…

    Debian 2025年6月8日
  • 【Debian GNU/Linux 安装手册】7.2. 挂载加密的卷

    7.2. 挂载加密的卷 如果在安装时创建了加密的卷,并为其指定了挂载点,那么在引导的时候会要求为每个这样的卷输入密码。 对于使用 dm-crypt 来加密的分区,引导的时…

    Debian 2025年6月8日
  • 详解Linux终端运算符

    Linux终端常用的运算符有bash 、let命令、expr命令、bc命令 awk命令factor命令等,本篇文章重点为大家讲解一下Linux终端运算符的具体使用方法,有需要的小伙…

    Debian 2025年6月13日
  • Linux下使用tmpwatch删除文件

    我们知道系统里面常常会有一些忘记删除的长时间不用而且确实没有用处的文件,如果不去处理,这些无用的文件会越来越多,浪费许多系统资源。在不知道文件名的情况下,很难去检查某一目录下到底是…

    Debian 2025年6月11日
  • Linux查看内存版本具体方法

    Linux内核版本命名在不同时期有着不同的规范,在涉及到Linux版本问题时经常容易混淆,主线版本/稳定版/长期支持版本经常搞不清楚,下面大家详细讲解一下查看Linux内核版本具体…

    Debian 2025年6月8日
  • Linux下使用unzip命令解压文件

    unzip命令是用于.zip格式文件的解压缩工具 ,unzip命令将列出、测试或从zip格式存档中提取文件,这些文件通常位于MS-DOS系统上。 默认行为(就是没有选项)是从指定的…

    Debian 2025年6月12日
  • 【Debian GNU/Linux 安装手册】5.3. 引导参数

    5.3. 引导参数 引导参数是 linux 内核参数,一般用于确保能够正确地处理外围设备。对于其中的大多数部分来说,内核能够自动检测外围设备的相关信息。但是在某些情况下,…

    Debian 2025年6月4日
  • 【Debian管理员手册】第 6 章 维护和更新:APT 工具

    6.1. 写入sources.list文件 6.1.1. 句法 6.1.2. 给Stable 使用者的仓库 6.1.3. 给测试/非稳定 版本用户的仓库 6.1.4. Using …

    Debian 2025年6月4日
  • 【Debian管理员手册】第 4 章 安装

    4.1. 安装方式 4.1.1. 从CD-ROM/DVD-ROM安装 4.1.2. 从U盘引导 4.1.3. 从网络引导安装 4.1.4. 其他安装方式 4.2. 安装,一步一步来…

    Debian 2025年6月12日
  • 【Debian GNU/Linux 安装手册】C.1. 决定 Debian 分区以及大小

    C.1. 决定 Debian 分区以及大小 最小化情况下,GNU/linux 需要一个分区。您可以有一个包含整个操作系统,应用程序以及您私人数据的分区。大多数人感到一个分…

    Debian 2025年6月8日

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注