
Linux
文章平均质量分 52
JerryYiu
每天都在进步...
展开
-
Linux学习笔记(2)
Linux 常用命令 touch: 作用:改变目录或文件的时间,或创建一个新的文件 用法:[jerry@localhost test]$ touch newfile1 newfile2 [jerry@localhost test]$ ll total 0 -rw-rw-r--. 1 jerry jerry 0 Oct 1 21:53 newfile1 -rw-rw-r--. 1 jerry原创 2015-10-01 22:00:12 · 399 阅读 · 0 评论 -
Linux学习笔记(1)
Linux 常用命令ls : 全名:List 作用:显示文件列表 用法: [-a –all] 列出目录中的全部文件,包括隐藏文件。如果不特别指定目录,则显示当前目录下的文件 [-l –long] 列出目录中文件的详细内容,包括文件类型,文件的所有者,所属组和其他人的权限,文件大小,创建日期,是否存在软连接等 [-h –human]以更人性化的方式列出文件大小(xxx K) 更多目录处理命令m原创 2015-10-01 21:42:10 · 454 阅读 · 0 评论 -
Linux学习笔记(4)
权限管理命令Linux中用户分为 u: user g: group o: others a: all 用户权限分为 r: read w: write x: executechmod: 作用:change mode,改变文件或目录权限 用法:chmod [{ugoa}{+-=}{rwx}] [目标文件或目录][jerry@localhost Test]$ touch chmodt原创 2015-10-21 22:09:26 · 524 阅读 · 0 评论 -
Linux学习笔记(3)
链接命令ln: 作用:生成链接文件 用法:ln [源文件] [链接文件][jerry@localhost link]$ ln -s /etc/issue issue.soft [jerry@localhost link]$ ln /etc/issue issue.hard ln: failed to create hard link ‘issue.hard’ => ‘/etc/issue’: O原创 2015-10-12 22:41:13 · 502 阅读 · 0 评论