常见的linux快捷方式和英文错误提示
第5章 linux常见的快捷方式
|
Ctrl +l |
清屏的意思 |
|
|
2 |
Ctrl +c |
退出当前的进程 |
|
3 |
Ctrl +w |
删除光标到空格之间的信息 |
|
4 |
Ctrl +a |
快速移动到光标行首 |
|
5 |
Ctrl +e |
快速移动到光标行尾 |
|
6 |
Ctrl +u |
从光标开始的地方将删除(剪切)前面的内容 |
|
7 |
Ctrl +k |
从光标开始的地方将删除(剪切)后面的内容 |
|
8 |
Ctrl +y |
粘贴内容 |
|
9 |
Tab键 |
快速不全命令 |
|
10 |
方向上下键 |
快速调用历史命令 |
|
11 |
Ctrl+insert |
选中光标复制的内容 |
|
12 |
Shift+insert |
粘贴光标复制的内容 |
|
13 |
Esc+. |
调取上一次命令的最后一个参数 |
|
14 |
Ctrl+q |
解屏 |
|
15 |
Ctrl+s |
锁屏 |
|
16 |
||
|
17 |
||
|
18 |
第6章 linux中常见的系统错误提示
|
ID |
错误提示(英文) |
错误提示(中文) |
例子 |
|
|
1 |
command not found |
命令没有找到 |
[root@oldboyedu ~]# cdd -bash: cdd: command not found [root@oldboyedu ~]# |
|
|
2 |
No such file or directory |
没有这个文件或者目录 |
[root@oldboyedu ~]# ls /oldboy ls: cannot access /oldboy: No such file or directory |
|
|
3 |
Permission denied |
权限不足 |
[root@oldboyedu ~]# useradd lyx [root@oldboyedu ~]# passwd lyx Changing password for user lyx. New password: BAD PASSWORD: The password is shorter than 8 characters Retype new password: passwd: all authentication tokens updated successfully. [root@oldboyedu ~]# su lyx [lyx@oldboyedu root]$ mkdir oldboy mkdir: cannot create directory 'oldboy': Permission denied [lyx@oldboyedu root]$ |
|
|
4 |
cannot create directory 'oldboy': File exists |
文件已存在 |
[root@oldboyedu ~]# mkdir oldboy [root@oldboyedu ~]# mkdir oldboy mkdir: cannot create directory 'oldboy': File exists [root@oldboyedu ~]# |
|
|
5 |
Is a directory |
这是一个目录 |
[root@oldboyedu ~]# cat oldboy/ cat: oldboy/: Is a directory [root@oldboyedu ~]# |
|
|
6 |
Not a directory |
不是一个目录 |
[root@oldboyedu ~]# touch 1.txt [root@oldboyedu ~]# cd 1.txt -bash: cd: 1.txt: Not a directory [root@oldboyedu ~]# |
|
|
7 |
Warning: Changing a readonly file |
警告:改变一个可读的文件 |
[root@oldboyedu ~]# su lyx [lyx@oldboyedu root]$ ls ls: cannot open directory .: Permission denied [lyx@oldboyedu root]$ vi 1.txt 111111111111
-- INSERT -- W10: Warning: Changing a readonly file |
|
|
8 |
Found a swap file by the name ".1.swp" |
找到一个缓存文件为1.swp |
E325: ATTENTION Found a swap file by the name ".1.txt.swp" 解决办法: [root@oldboyedu ~]# ll -a total 56 -rw-r--r--. 1 root root 10 Sep 5 08:57 1.txt -rw-r--r--. 1 root root 12288 Sep 5 09:00 .1.txt.swp [root@oldboyedu ~]# rm -rf . ./ .1.txt.swp .bash_logout .bashrc .tcshrc ../ .bash_history .bash_profile .cshrc .viminfo [root@oldboyedu ~]# rm -rf .1.txt.swp [root@oldboyedu ~]# vi 1.txt 1111111` ~ |
|
|
9 |
unrecognized option '--oldboy' |
不识别的选项 |
[root@oldboyedu ~]# man --lyx man: unrecognized option '--lyx' Try 'man --help' or 'man --usage' for more information. [root@oldboyedu ~]# |
|
|
connection refused |
连接拒绝 |
[f:\~]$ telnet 10.0.0.200 22
Connecting to 10.0.0.200:22... Could not connect to '10.0.0.200' (port 22): Connection failed.
Type `help' to learn how to use Xshell prompt. [f:\~]$ |
||
|
No write since last change (add ! to override) |
文件被编辑了,是否退出(添加!号就可以正常的退出) |
E37: No write since last change (add ! to override) |
||
|
14 |
not an editor command |
没有这个编辑命令 |
||
|
15 |
omitting directory 'oldboy01' |
忽略目录,'oldboy01' |
[root@oldboyedu oldboy]# cp oldboy01 /tmp/ cp: omitting directory 'oldboy01' [root@oldboyedu oldboy]# |
|
|
16 |
cp: overwrite '/tmp/1.txt'? |
覆盖/tmp/1.txt文件吗? |
[root@oldboyedu oldboy02]# touch 1.txt [root@oldboyedu oldboy02]# cd .. [root@oldboyedu oldboy01]# ls oldboy02 [root@oldboyedu oldboy01]# cp oldboy02/1.txt /tmp/ [root@oldboyedu oldboy01]# cp oldboy02/1.txt /tmp/ cp: overwrite '/tmp/1.txt'? n [root@oldboyedu oldboy01]# |
|
|
17 |
remove regular empty file 'oldboy.txt'? |
是否有规律的删除一个空文件 |
[root@oldboyedu oldboy01]# rm oldboy02/1.txt rm: remove regular empty file 'oldboy02/1.txt'? n [root@oldboyedu oldboy01]# |
|
|
18 |
cannot remove 'oldboy02': Is a directory |
不可以删除oldboy02,它是一个目录 |
[root@oldboyedu oldboy01]# rm oldboy02 rm: cannot remove 'oldboy02': Is a directory |
|
|
19 |
Network is unreachable |
网络不可达(是因为将网关没有填写正确导致的) |
[root@oldboy6666 ~]# ping 223.5.5.5 connect: Network is unreachable [root@oldboy6666 ~]# |
|
|
20 |
ping: baidu.com: Name or service not known |
服务或者名字没有找到(这个是你的DNS设置有问题) |
[root@oldboy6666 ~]# ping www.baidu.com ping: www.baidu.com: Name or service not known [root@oldboy6666 ~]# |
|
|
21 |
The password is too similar to the old one |
这个密码和旧密码太相似 |
[oldboy101@oldboy6666 ~] $ passwd Changing password for user oldboy101. Changing password for oldboy101. (current) UNIX password: New password: BAD PASSWORD: The password is too similar to the old one New password: BAD PASSWORD: The password is too similar to the old one New password: |
|
|
22 |
||||
|
23 |
||||
|
24 |
||||
|
25 |
||||
|
26 |
||||
|
27 |
||||
|
28 |
||||
|
29 |
||||
|
30 |
||||
|
31 |
||||
|
32 |
||||
|
33 |
||||
|
34 |
||||
|
35 |
||||
|
36 |
||||
|
37 |
第7章 linux中常见的英文
|
ID |
英文 |
中文 |
|
1 |
Command |
命令 |
|
2 |
No such |
没有这样的 |
|
3 |
Permission |
许可证/权限 |
|
4 |
File exists |
文件存在 |
|
5 |
Directory |
目录 |
|
6 |
unrecognized |
无法识别 |
|
7 |
refused |
拒绝 |
|
8 |
denied |
否认 |
|
9 |
continue |
下一步,继续 |
|
10 |
Configure |
配置,设置 |
|
11 |
general |
通用,常规 |
|
12 |
Manual |
手动 |
|
13 |
Standard(标准) Partition(分区) |
标准分区 |
|
14 |
Cancel |
取消,中断 |
|
15 |
Edit |
编辑 |
|
16 |
Control |
控制 |
|
17 |
Connection established |
连接已经建立 |
|
18 |
Inactive/active |
未激活的/激活的 |
|
19 |
omitting |
省略,忽略 |
|
20 |
overwrite |
覆盖 |
|
21 |
Search |
搜索 |
|
22 |
Global |
全球的 |
|
23 |
Another |
另一个 |
|
24 |
End up |
最终 |
|
25 |
instances |
实例,实际 |
|
26 |
Caution |
告诫,提醒 |
|
27 |
crashed. |
撞击 |
|
28 |
Case |
事例 |
|
29 |
avoid |
避免 |
|
30 |
Network is unreachable |
网络不可达 |
|
31 |
dynamic |
动态的 |
|
32 |
static |
静态的 |
|
33 |
depth |
深度 |
|
34 |
prompt |
提示 |
|
35 |
Complete |
完成;完毕 |
|
36 |
secure |
安全 |
|
37 |
Accepted |
授权;同意 |
|
38 |
session |
会话 |
|
39 |
authentication |
认证失败 |
|
40 |
Socket |
插槽 |
|
41 |
policy |
策略 |
|
42 |
enforce |
开启的 |
|
43 |
arguments |
论据 |
|
44 |
taken to be |
被认为是 |
|
45 |
reverse |
反向,逆向 |
常见的linux快捷方式和英文错误提示的更多相关文章
- linux command not found错误提示
错误提示:screen: command not found, 如果提示screen: command not found 命令不存在可以执行:yum install screen 或 apt-get ...
- iOS开发OC基础:Xcode中常见英文总结,OC常见英文错误
在开发的过程中难免会遇到很多的错误,可是当看到系统给出的英文时,又不知道是什么意思.所以这篇文章总结了Xcode中常见的一些英文单词及词组,可以帮助初学的人快速了解给出的提示.多练习,就肯定能基本掌握 ...
- Linux中syntax error near unexpected token 错误提示解决方法
Linux中syntax error near unexpected token ... 错误提示有一般有两种原因: 1)window和Linux下换行符不一致导致 window下的换行和Linux下 ...
- jsp编写页面时常见错误提示
jsp编写页面时常见错误提示 404-->未部署web应用 500-->代码有问题 无法显示网页-->未启动tomcat webRoot-->URL输入有误 web-inf-- ...
- 杂项-Tmod:常见错误提示
ylbtech-杂项-Tmod:常见错误提示 1.返回顶部 1. The column 'Content' was specified multiple times for 'T'.select a. ...
- github常见操作和常见错误!错误提示:fatal: remote origin already exists.
如果输入$ git remote add origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git 提示出错信息:fatal: remote ...
- Linux下执行ls命令提示CMake Error错误
一.系统环境 Fedora10 二.出错情况 执行ls命令出现如下错误提示: CMake Error: The source directory "/etc/--color=auto&quo ...
- github常见操作和常见错误!错误提示:fatal: remote origin already exist
如果输入$ git remote add origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git 提示出错信息:fatal: remote ...
- linux 出现ping,错误提示:connect :network is unreachable
今天克隆Centos7后 修改IP地址 修改前: IP:172.16.0.198 默认网关:172.16.0.254 修改后: IP:172.16.1.100 默认网关:172.16.0.25 ...
随机推荐
- ubuntu安装应用日志
1.安装搜狗输入法,去官网下 2.安装vim 3.安装vbox5.16,导入win7(还未成功,报错UUID不匹配),改5.14试试 4.安装微信:http://www.cnblogs.com/Blu ...
- vim可视化模式
进入:v 移动光标选中 c剪切.y复制(自动退出v模式,进入插入模式) p粘贴
- 0MQ是会阻塞的,不要字面上看到队列就等同非阻塞。
如果你是希望通过0MQ来做缓冲队列,非阻塞的效果,那你就必须清楚 0MQ Socket是会阻塞,你要搞清楚0MQ Socket与队列的关系. 官方协议文档规定了,一部分类型的 0MQ Socket为不 ...
- php中static关键字的理解
函数内的static变量 static静态变量的理解 静态变量 类型说明符是static. 静态变量属于静态存储方式,其存储空间为内存中的静态数据区(在 静态存储区内分配存储单元),该区域中的数据在整 ...
- Linux下为知笔记和蚂蚁笔记测评,推荐蚂蚁笔记!(非广告)
本人由于学习Linux,需要一款可以在Linux平台下可以运行的一款软件,了解到为知笔记之笔记(下文以W代替)和蚂蚁笔记(下文以M代替)比较出名,由于某云和某象笔记在linux平台下没有对应的软件,所 ...
- Spring中,多个service发生嵌套,事务是怎么样的?
前言 最近在项目中发现了一则报错:"org.springframework.transaction.UnexpectedRollbackException: Transaction roll ...
- fastjson自定义序列化竟然有这么多姿势?
本文介绍下fastjson自定义序列化的各种操作. 一.什么是fastjson? fastjson是阿里巴巴的开源JSON解析库,它可以解析JSON格式的字符串,支持将Java Bean序列化为JSO ...
- Python执行系统命令的四种方法
一.os.system方法 在子终端运行系统命令,可以获取命令执行后的返回信息以及执行返回的状态.执行后返回两行结果,第一行是结果, 第二行是执行状态信息,如果命令成功执行,这条语句返回0,否则返回1 ...
- Stack Overflow 上 370万浏览量的一个问题:如何比较 Java 的字符串?
在逛 Stack Overflow 的时候,发现了一些访问量像喜马拉雅山一样高的问题,比如说这个:如何比较 Java 的字符串?访问量足足有 370万+,这不得了啊!说明有很多很多的程序员被这个问题困 ...
- Netty-主从Reactor多线程模式的源码实现
Netty--主从Reactor多线程模式的源码实现 总览 EventLoopGroup到底是什么? EventLoopGroup是一个存储EventLoop的容器,同时他应该具备线程池的功能. gr ...