linux
洞庭波兮木叶下
这个作者很懒,什么都没留下…
展开
-
centos7设置服务开机自启动
以httpd为例步骤1:查看crond.serivce服务的自启动状态[root@localhost ~]# systemctl is-enabled crond.servicedisabled此时crond.serivce的自启动状态为disabled 步骤2:开启crond.serivce服务自启动[root@localhost ~]# systemctl enable...原创 2018-08-05 10:10:17 · 295 阅读 · 0 评论 -
Permission denied问题
出现Permission denied是因为操作文件权限不够chmod 777 -R ------R 是级联所有子目录原创 2018-10-23 22:38:52 · 1888 阅读 · 0 评论 -
centos安装postgresql
安装配置postgresql# 安装[root@vm-06 ~]# yum -y install postgresql-server# 初始化[root@vm-06 ~]# postgresql-setup initdb Initializing database ... OK# 设置postgresql可被远程连接登录[root@vm-06 ~]# vi /var/lib/pgsq...转载 2018-10-26 16:05:28 · 235 阅读 · 0 评论 -
linux python版本切换
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150sudo update-alternatives --config pyt...原创 2018-10-31 12:29:43 · 293 阅读 · 0 评论 -
linux动态桌面
首先安装 mplayer 播放器:sudo apt install mplayer相比 VLC,mplayer 真是超级轻量!~然后下载 xwinwrap,我上传到百度云了,安装包只有 8KB,非常简单的代码。接下来安装 xwinwrap64.deb:sudo dpkg -i xwinwrap64.deb我只传 64 位的到百度云,需要 32位程序的去 Google ...原创 2018-10-29 21:52:55 · 1181 阅读 · 0 评论 -
linux安装python-pip
1、apt-get install python3-pip # Python32、apt-get install python-pip # Python2原创 2018-11-01 11:32:02 · 1007 阅读 · 0 评论 -
linux导入python matplotlib.pyplot报错
在linux端执行python脚本,有时候需要画图,但是linux没有GUI界面,因此需要在导入matplotlib.pyplot库之前先执行import matplotlib as mplmpl.use('Agg')再执行import matplotlib.pyplot as plt...原创 2018-11-01 11:49:11 · 488 阅读 · 1 评论 -
火狐浏览器改中文
火狐浏览器默认语言是英语。可以使用官方插件来改成中文。http://ftp.mozilla.org/pub/firefox/releases/61.0.1/linux-x86_64/xpi/zh-CN.xpi其中,中间的数字是浏览器的版本号,可以在help-about firefox中查看。数字后面是系统格式,64位系统填linux-x86_64,32位系统填linux-i686。...原创 2018-10-30 23:36:54 · 2482 阅读 · 0 评论 -
mysql登陆错误
1、mysql修改密码:set password for root@localhost = password('123456');2、登陆需要加sudo:Mysql中root用户的密码强度不是强类型。查看用户的权限,是否是mysql_native_password,如果不是,则将auth_sock改为mysql_native_password。然后 flush privilege...原创 2018-11-03 11:26:26 · 247 阅读 · 0 评论 -
linux nginx
一. 序言 历经了千难万险, 终于是把Nginx 配置成功了, 单单自己还不行, 还要不断从网上总结各种问题的解决方法才能彻底解决, 要不一下两下是不能轻易解决。 在这我详细说名一些我遇到的问题, 让大家省些时间, 少些煎熬。 二. 安装Nginx sudo apt-get install nginx . 启动Nginx 服务。 sudo systemctl...原创 2018-11-25 17:45:36 · 382 阅读 · 0 评论 -
nginx 配置支持pathinfo和url重写 thinkphp5
apache是默认支持pathinfo,而nginx本身是不支持pathinfo何为pathinfo?请看这条url127.0.0.1/test.php/a/b/c,/a/b/c即为pathinfo配置支持pathinfolocation ~ \.php(.*)$ { include snippets/fastcgi-php.conf; ## With php-fpm (...原创 2018-11-25 20:44:09 · 358 阅读 · 0 评论 -
数据库连接permission denied
通常情况下载安装完CentOS7后,默认情况下SElinux是启用状态此时,需要将SElinux关闭[root@localhost ~]# sestatus SELinux status: enabledSELinuxfs mount: /sys/fs/selinuxSELinux root directory: ...原创 2018-10-28 14:36:55 · 1563 阅读 · 0 评论 -
linux 安装sublime text3中文问题
1、下载所需文件 sudo apt install git git clone https://github.com/lyfeyaj/sublime-text-imfix.git 2、安装脚本 上述命令执行完成之后,一般会在用户的主目录下找到相应的文件夹sublime-text-imfix,进入该文件夹下的lib目录,将脚本libsublime-imfix.so复制到Su...原创 2018-10-17 18:04:39 · 612 阅读 · 0 评论 -
centos 7 搭建lamp 与redis
一、 安装linux因为网上有许多安装教程,这里就不再介绍了,直接进入正题。二、安装Apache可以通过yum info httpd获取Apache版本,然后使用yum进行安装apache的配置保存目录:/etc/httpd/apache的具体配置文件:/etc/httpd/conf/httpd.conf修改httpd.conf配置文件:ServerName loca...原创 2018-08-03 16:01:42 · 294 阅读 · 2 评论 -
centos 7安装mysql8
1、yum仓库下载MySQL:yum localinstall https://repo.mysql.com//mysql80-community-release-el7-1.noarch.rpm2、yum安装MySQL: yum install mysql-community-server3、启动MySQL服务:service mysqld start4、检查MySQL服...原创 2018-09-08 10:53:51 · 107 阅读 · 0 评论 -
linux安装navicat
1、下载,直接在官网下载即可2、解压到安装目录3、解压后 cd进入解压后的目录运行命令: ./start_navicat 安装wine4、中文乱码打开navicat窗口界面一般会乱码。关闭navicat,然后双击安装目录下的start_navicat 文件默认用文本编辑器gedit打开,在文本开头大概第8行找到配置项 export LANG="en_US.UTF...原创 2018-09-08 12:06:17 · 2061 阅读 · 0 评论 -
Linux php 遇到的file_put_contents failed to open stream: Permission denied
解决方法:关闭selinux在/etc/sysconf下有一个SeLinux文件,使用vi打开,更改其中的SELINUX项的值就可以了。SELINUX=disable 禁用SeLinuxSELINUX=enforcing 使用SeLinuxSELINUX=Permissive 使用SeLinux,仅记录错误。重启!...原创 2018-09-08 17:42:06 · 519 阅读 · 0 评论 -
ORA-01034: ORACLE not available
1、 sqlplus /nolog2、connect /as sysdba3、startup原创 2018-09-16 22:41:24 · 179 阅读 · 0 评论 -
centos安装谷歌浏览器
chrome(谷歌) 添加源:sudo wget http://repo.fdzh.org/chrome/google-chrome-mirrors.repo -P /etc/yum.repos.d/ 安装:sudo yum install google-chrome-stable 在root用户下安装后发现,Chrome无法正常启动。安装及问题解决具体如下: 找到chrome的命令行...原创 2018-09-13 21:36:42 · 1087 阅读 · 0 评论 -
centos 安装oracle12c
从oracle官网下载oracle 12c的内容,本次部署使用的是orace 12c 的12.1.0 的Enterprise Edition版本 12 linuxamd64_12102_database_1of2.ziplinuxamd64_12102_database_2of2.zip 创建用户和组 ,用于安装or...原创 2018-09-15 09:20:33 · 278 阅读 · 0 评论 -
debian 关闭ipv6
vi /etc/sysctl.confnet.ipv6.conf.all.disable_ipv6=1原创 2018-10-11 23:07:04 · 2575 阅读 · 0 评论 -
debian 安装mysql8
1、下载mysql-apt-config_*.deb文件2、dpkg -i mysql-apt-config_*.deb3、弹出框 ok4、apt-get update5、apt-get install mysql-serverover!原创 2018-10-14 21:08:11 · 1108 阅读 · 0 评论 -
debian 安装teamviewer
1、下载teamviewer deb包2、dpkg -i *.deb3、apt-get insftall -f 解决依赖关系原创 2018-10-15 19:47:35 · 843 阅读 · 0 评论 -
linux添加mysql8安装源
http://dev.mysql.com/downloads/repo/apt/ 下载.deb文件sudo dpkg -i mysql-apt-config_0.*.****_all.deb 选择mysql8apt updata原创 2018-11-26 13:08:16 · 453 阅读 · 0 评论