12 2016 档案
摘要:1.修改mysql 配置文件my.cnf 标签[mysqld]下添加即可 character-set-server = utf8 2.创建数据库时设置字符集 create database db_name character set=utf8; 3.修改数据库字符集 alter database d
阅读全文
摘要:1.查看可选语言显示包 locale -a ............(省略好多) zh_CNzh_CN.gb18030zh_CN.gb2312zh_CN.gbkzh_CN.utf8zh_HKzh_HK.big5hkscszh_HK.utf8zh_SGzh_SG.gb2312zh_SG.gbkzh_S
阅读全文
摘要:1.配置epel软件源wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 2.安装PPTP服务端软件yum install pptpd 3.配置pptpd选项vi /etc/ppp/options.pp
阅读全文
摘要:1.下载epel wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 2.安装epel rpm -ivh epel-release-latest-7.noarch.rpm 3.检查epel是否配置成功
阅读全文
摘要:1.查看当前运行级别 systemctl get-default 2.设置命令行运行级别 systemctl set-default multi-user.target 3.设置图形化运行级别 systemctl set-default graphical.target
阅读全文
摘要:1.安装Apache和mariadb yum -y install httpdyum -y install mariadb-server mariadb 2.设置开机启动 systemctl enable httpdsystemctl enable mariadb 3.开启数据库service ma
阅读全文
摘要:python2安装tkinter sudo apt-get install python-tk python3 安装tkinter sudo apt-get install python3-tk
阅读全文