随笔分类 -  重要基础知识-Linux

摘要:# shell编程快速入门 编写一个shell脚本hello.sh #/bin/bash echo 'hello world' 运行的方法: 方法1: sh hello.sh 方法2 chmod +x hello.sh ./hello.sh 说明: #!告诉系统这个脚本需要用什么解释器来执行 文件 阅读全文
posted @ 2020-08-25 05:59 Whatever_It_Takes 阅读(162) 评论(0) 推荐(0)
摘要:# linux上安装禅道 环境准备 1.一台Linux服务器, 操作系统: CentOS 6.4 32位 (装在shop环境上即可) 2.Xshell 6.0 3.Xftp 5.0 4.ZenTaoPMS.9.8.3.zbox_86.tar.gz安装包 (在共享文件夹中) 把禅道安装包上传到lin 阅读全文
posted @ 2020-08-25 05:50 Whatever_It_Takes 阅读(436) 评论(0) 推荐(0)
摘要:# linux常用命令 操作文件及目录 命令 参数 示例 说明 cd cd /home 切换目录 pwd pwd 显示当前工作目录 touch touch 1.txt 创建空文件 mkdir mkdir testdir 创建一个新目录 -p mkdir -p /dir1/dir2 创建多级目录,父 阅读全文
posted @ 2020-08-25 05:22 Whatever_It_Takes 阅读(310) 评论(0) 推荐(0)
摘要:# Linux介绍 Linux起源 芬兰大学生Linus Torvalds在从1990年底到1991年的几个月中,利用Minix操作系统作为开发平台,为他自己的操作系统课程和后来的上网用途而陆续编写了若干程序。 1991.10.5 在Internet的comp.os.minix讨论区发表了一篇文章 阅读全文
posted @ 2020-08-25 04:52 Whatever_It_Takes 阅读(207) 评论(0) 推荐(0)