Psyche's Blog

置顶 shell脚本入门

This is about shell

Shell脚本入门 1. shell脚本创建 12#! /bin/bash 【推荐】echo "hello world" 2. shell脚本运行 全路径直接运行 ./ 运行 12345678[root@hadoop001 shell]# /root/shell/wordcount.sh -bash: /root/shell/wordcount.sh: Permis......

置顶 MySQL部署

This is about MySQL on Linux

MySQL部署 1. 上传安装包 ​ rz 选择mysql-5.7.11-linux-glibc2.5-x86_64.tar 2. 解压及创建目录 123456789101112[root@hadoop001 local]# tar xzvf /root/mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz ######解压完后注意查看文件权限是否正确[roo......

置顶 Linux基础入门

This is about Linux learning

Linux基础命令 Chapter 1 1.root 用户 管理员 最大权限 ~ 当前用户的 家目录 root用户的家目录 /root 其他用户 /home/用户名 1234567891011121314151617181920212223[root@hadoop001 ~]# cd /[root@hadoop001 /]# lltotal 36lrwxrwxrwx 1 root r......