[转载] linux 速查表
原文: http://www.nixtutor.com/linux/all-the-best-linux-cheat-sheets/
1. Linux Command Line
Linux Reference Card - Great reference published on FOSSwire website
One page Linux Manual - Great one page reference to the most popular Linux commands
Unix Tool Box - An incredibly exhaustive reference for all things Linux.
Treebeard’s Unix Cheat Sheet - A great reference with Dos comparisons
Terminal Shortcuts - Cheat sheet for the most common terminal shortcuts
More Terminal Shortcuts - More shortcuts for history and X
2. Linux Security
Linux Security Quick Reference Guide - An awesome security checklist reference
IP Tables - If you are interested in Linux firewalls this is a must have
TCPDump - Great cheat sheet to an awesome security tool
Wireshark Filters - An awesome list of filters for the best packet sniffing utility
IP Access Lists - Cheat sheet for IP Access Lists
Common Ports - In case you don’t have all common ports memorized
netcat - Reference to the swiss army knife of networking
3. Linux Administration
Linux Admin Quick Reference - PDF cheat sheet of common Linux administration tasks
Crontab Reference - Also see Learning Cron by Example
4. Gnome/KDE
KDE Cheat Sheet - KDE specific cheat sheet
5. sed/awk/vim and other tools
Vi Cheat Sheet - Who doesn’t love Vi/Vim. Also check out my guest post on Vim.
awk nawk and gawk cheat sheet - Awesome awk sheet, also check out awk is a beautiful tool
Screen Quick Reference - Quick reference to a must have screen emulator, Also check out Introduction to GNU Screen
Screen Terminal Emulator Cheat Sheet - PDF cheat sheet for screen
Vi/Vim Cheat Sheet - Nice vim/vi keyboard layout reference
6. Distro Specific
Ubuntu Cheat Sheet - Ubuntu specific cheat sheet
Debian Cheat Sheet - Debian specific cheat sheet
7. Everything Else
- Online Man Pages - The ultimate cheat sheet repository. Also use the ‘man’ command.
[转载] linux 速查表的更多相关文章
- Python系列教程-详细版 | 图文+代码,快速搞定Python编程(附全套速查表)
作者:韩信子@ShowMeAI 教程地址:http://showmeai.tech/article-detail/python-tutorial 声明:版权所有,转载请联系平台与作者并注明出处 引言 ...
- OpenStack 命令行速查表
OpenStack 命令行速查表 updated: 2017-07-18 08:53 Contents 认证 (keystone) 镜像(glance) 计算 (nova) 实例的暂停.挂起.停止 ...
- Tools - 速查表与备忘单(Cheat Sheet)
Cheat Sheets Rico's cheatsheets Cheat-Sheets.org Python Python Cheat sheet Python Programming Cheat ...
- 【转】shell速查表
shell速查表 转自:https://www.jianshu.com/p/a98a334bfb25 1. 变量 #!/bin/bash msg="hello world" ech ...
- 【转】Vim速查表-帮你提高N倍效率
Vim速查表-帮你提高N倍效率 转自:https://www.jianshu.com/p/6aa2e0e39f99 去年上半年开始全面使用linux进行开发和娱乐了,现在已经回不去windows了. ...
- GNU Emacs命令速查表
GNU Emacs命令速查表 第一章 Emacs的基本概念 表1-1:Emacs编辑器的主模式 模式 功能 基本模式(fundamental mode) 默认模式,无特殊行为 文本模式(text m ...
- 分享 - 27 个机器学习、数学、Python 速查表
转载自:伯乐在线 - iPytLab,原文链接,侵删 机器学习涉及到的方面非常多.当我开始准备复习这些内容的时候,我找到了许多不同的”速查表”, 这些速查表针对某一主题都罗列出了所有我需要知道的知 ...
- bash基本命令速查表
来源:https://github.com/skywind3000/awesome-cheatsheets/blob/master/languages/bash.sh ################ ...
- Git命令速查表【转】
本文转载自:http://www.cnblogs.com/kenshinobiy/p/4543976.html 一. Git 常用命令速查 git branch 查看本地所有分支git status ...
随机推荐
- Volley Get Post 方法
Get String url = CommonInterfaceUrl.COMM_GetWorksDetailUrl + "/" + worksID; RequestQueue m ...
- JavaEE基础(二十五)/多线程、GUI
1.多线程(单例设计模式) 单例设计模式:保证类在内存中只有一个对象. 如何保证类在内存中只有一个对象呢? (1)控制类的创建,不让其他类来创建本类的对象.private (2)在本类中定义一个本类的 ...
- 有关对字符串的处理,需要用到List时的简化写法
这是项目中的需要根据ComputerName来获取IP的一个方法,如果出现多个ComputerName,需要将多个ComputerName的字符串以“:”分开,传进方法中,然后再处理不同的Name,然 ...
- js词法作用域规则
function foo() {console.log( a ); // 2不是3} function bar() {var a = 3;foo();} var a = 2;bar(); js中的作用 ...
- sql截断日志
--收缩数据库 DBCC SHRINKDATABASE(fas) --截断事务日志: BACKUP LOG fas WITH NO_LOG 1.清空日志 DUMP TRANSACTION 库名 WIT ...
- Human Gene Functions
Human Gene Functions Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 18053 Accepted: 1004 ...
- OracleHelper
/// <summary> /// OracleServer数据库访问的通用工具类 /// </summary> public abstract class OracleHel ...
- 南阳oj 求N!的二进制表示最低位的1的位置(从右向左数)。
N! 时间限制:1000 ms | 内存限制:65535 KB 难度:3 描述 阶乘(Factorial)是一个很有意思的函数,但是不少人都比较怕它.现在这里有一个问题,给定一个N(0< ...
- 2016年12月4日 星期日 --出埃及记 Exodus 20:25
2016年12月4日 星期日 --出埃及记 Exodus 20:25 If you make an altar of stones for me, do not build it with dress ...
- java-资源管理器try-with-resource
在java编程中会遇到很多关闭资源的问题,但是,往往我们的关闭不能百分百正确,所以java7中出现了新的资源管理器方法try-with-resource,这是一项重要的改进,因为没人能再手动关闭资源时 ...