一、系统管理相关
1、文件管理
1.ls list的简写
2.cd change directory
3.pwd print working directory
4.cp copy
5.mv move
6.rm remove
7.pushd push to directory
8.popd pop from directory
9.mkdir make directory
10.rmdir remove directory
11.cat catenate/concatenate
12.sed stream editor
13.diff difference
14.wc word count
15.chmod change mode
16.chown change owner
17.chgrp change group
18.grep general regular expression print
19.ln Link
20.tar Tarball
二、硬件管理
2、硬件管理
1.df disk free
2.du disk usage
3.dd convert and copy, 但是cc被用掉了,就用dd,其功能是用指定大小的块拷贝一个文件,并在拷贝的同时进行指定的转换
4.parted partition editor
三、软件及软件包管理
1.man manual
2.dpkg debian package
3.yum yellow dog updater, modified:是一个在Fedora和RedHat以及SUSE中的Shell前端软件包管理器。基于RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软体包,无需繁琐地一次次下载、安装。
4.rpm RPM package manager/redhat package manager:rpm命令是RPM软件包的管理工具。rpm原本是Red Hat Linux发行版专门用来管理Linux各项套件的程序,由于它遵循GPL规则且功能强大方便,因而广受欢迎。逐渐受到其他发行版的采用。RPM套件管理方式的出现,让Linux易于安装,升级,间接提升了Linux的适用度。
四、系统管理
1.ps processes status
2.su substitute user
3.ssh secure shell
4.passwd password
5.tty teleType
6.sudo super user do
7.grub grand unified bootloader
8.top top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的资源管理器。top命令默认只展示部分属性值,比如想查看进程的swap区使用情况,就可以用shift o进入属性选择页面,然后再选中需要展示的属性值。
五、编辑器
1.ed editor
2.emacs editor macros
3.vi visual
4.vim vi improved
参考博客:
1. https://blog.csdn.net/frankarmstrong/article/details/53353642 Linux中常用的命令都是哪些单词的缩写
2. https://www.cnblogs.com/ginvip/p/6370836.html Linux命令总结dd命令详解
3. https://www.runoob.com/linux/linux-yum.html linux yum命令
4. https://www.cnblogs.com/ftl1012/p/rpm.html linux rpm命令详解
5. https://www.cnblogs.com/xiao-xue-di/p/11056861.html top命令详解