
centos7
葛健
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS7下安装chrome浏览器
CentOS7下安装chrome浏览器1. 从google官方网站下载google chrome安装包 http://www.google.cn/chrome/browser/desktop/index.html 选择linux系统,并下载google-chrome-stable_current_x86_64.rpm2. 使用root权限进行安装; rpm ...原创 2018-06-07 10:25:25 · 19777 阅读 · 3 评论 -
centos 7更改阿里云yum源
备份mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backupcentos7wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo或curl -o /etc/yum.repos.d/Ce...转载 2018-06-07 10:28:23 · 338 阅读 · 0 评论 -
mysql 1205错误
关于mysql--General error: 1205 Lock wait timeout exceeded错误。遇见问题环境:magento操作产品时遇到。错误提示:SQLSTATE[HY000]: General error: 1205 Lock wait timeout exceeded; try restarting transaction, query was: UPDATE `cat...原创 2018-06-27 17:46:27 · 2523 阅读 · 0 评论 -
git基本命令
新建本地用户配置gitgit config --global user.name "您的名字"git config --global user.email "您的email"检查配置git config -l 设置本地密钥 第一步:在生成您的shell SSH密钥之前,请先运行以下命令检查您的系统是否已经存在:cat ~/.ssh/id_rsa.pub...原创 2018-12-12 16:20:56 · 163 阅读 · 0 评论 -
nohup liunx后台运行
nohup用途:不挂断地运行命令。语法:nohup Command [ Arg … ] [ & ] 无论是否将 nohup 命令的输出重定向到终端,输出都将附加到当前目录的 nohup.out 文件中。 如果当前目录的 nohup.out 文件不可写,输出重定向到 $HOME/nohup.out 文件中。 如果没有文件能创建或打开以用于追加,那么 Command ...原创 2018-12-12 16:23:41 · 291 阅读 · 0 评论 -
liunx按日期新建文件夹
#!/bin/sh# File: /www/magento/workImage/magento/backup/shell/NewFolder.sh#按月份存储DATE_Y=`date -d "+1 year" +%Y`#创建数据库备份目录#创建数据库下一年年份文件夹if [ ! -d "/www/magento/workImage/magento/b...原创 2018-12-12 16:26:12 · 522 阅读 · 0 评论 -
linux安装chrome浏览器
1. 从google官方网站下载google chrome安装包http://www.google.cn/chrome/browser/desktop/index.html选择linux系统,并下载google-chrome-stable_current_x86_64.rpm2. 使用root权限进行安装;rpm -ivh google-chrome-st...原创 2019-03-11 15:25:37 · 48638 阅读 · 1 评论