linux基本命令
ucan23
没有什么特长,但能吃苦。
展开
-
Linux命令入门(二)
1、rm:删除文件 利用-i选项可以实现删除中的交互(询问是否确认删除)。2、less和more:分屏显示文件 less和more都是分屏显示文件,但是less需要按q键来返回,而more则不需要。3、hostname:显示系统名4、cp -i:可以以交互式的方式来防止用户误将已经存在的文件覆盖。5、mv -i:可以以交互式的方式来防止用户误将已经存在的文件原创 2013-11-19 11:24:01 · 1057 阅读 · 0 评论 -
SOME SPECIAL PERMISSIONS
Though we usually see an octal permission mask expressed as a three-digit number, it is more technically correct to express it in four digits. Why? Because, in addition to read, write, and execute per转载 2013-11-19 18:39:11 · 1080 阅读 · 0 评论 -
Linux命令入门(一)
命令行下校正错误: 1、删除单词:CONTROL+W 2、删除行:CONTROL+U,如果不好使可以试试CONTROL+XSU/SUDO:慎用root权限 sudo -i会以root权限运行一个新的shell。如何查找相关文档: 1、--help选项 例:$cat --help 如果显示信息超过了一屏,可以通过管道用l原创 2013-11-19 11:23:02 · 1010 阅读 · 0 评论 -
命令行高级快捷键
1、鼠标移动命令组合键动作CTRL+A光标移动到行首CTRL+E光标移动到行末CTRL+F光标向前移动一个字符;跟“→”一样CTRL+B光标向后移动一个字符;跟“←”一样ALT+F光标向前移动一个单词ALT+B光标向后移动一个单词ALT+L清屏并把光标移动到左上角。c原创 2013-11-20 11:25:36 · 1069 阅读 · 0 评论 -
THE META KEY
THE META KEY If you venture into the Readline documentation, which can be found in the “READLINE” section of the bash man page, you will encounter the term meta key. On modern keyboards this m转载 2013-11-21 09:02:38 · 1035 阅读 · 0 评论 -
UBUNTU AND SUDO
One of the recurrent problems for regular users is how to perform certain tasks that require superuser privileges. These tasks include installing and updating software, editing system configuration fi转载 2013-11-19 18:41:41 · 1187 阅读 · 0 评论 -
Linux中命令别名的使用
在Linux系统中,误敲错rm命令是一件很容易发生的事情能。所以,怎样避免因为rm命令带来的危害是很重要的。在Linux系统中要做到rm命令的交互其实很简单,只需要简单的使用rm -i命令就可以了。但是每次都这样输入的话会造成敲击键盘的次数增加,这里我们可以使用Linux别名的方法解决该问题。 下面首先讲一下alias命令的用法: 首先查询命令的方式有许多种,最长用原创 2015-04-01 18:01:29 · 1733 阅读 · 0 评论 -
Starting sshd: /var/empty/sshd must be owned by root and not group or world-writable.
Starting sshd: /var/empty/sshd must be owned by root and not group or world-writable. [FAILED]这个是权限的问题可采取以下两步解决chown -R root.root /var/empty/sshdchmod 744 /var/empty/sshdse原创 2015-11-16 08:56:01 · 11016 阅读 · 2 评论