系统环境:Debian GNU/Linux 8 \n \l Or Ubuntu 16.04.1 LTS \n \l 解决思路: 查看jpeg支持软件包 dpkg --list | grep libjpeg-dev dpkg --list | grep libfreetype6-dev 如果不存在安装它们 apt-get install libjpeg-dev libfre...
查看数据库支持的所有字符集 SHOW CHARACTER SET; SHOW COLLATION; root@iZbp18uglnzeopl4c2xy3uZ:/# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 3 Server version: 10.1....
防火墙配置是基本的服务器防护措施 创建一个基本的防火墙文件(开放部分端口80-http、443-https、20/21-ftp、22-ssh、ping等) cat /etc/iptables.basic.rule *filter # Allows all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't us...
Here are the commands to run to add MariaDB to your system: sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db sudo add-ap...
Debian provides MySQL server 5.5 with both wheezy and jessie but the latest GA (Generally Available) releases are 5.6 and 5.7 with some enhancements and added features, including support for InnoDB Fu...
Ubuntu16 升级内核手动下载官方deb包 Or 编译 URL:http://kernel.ubuntu.com/~kernel-ppa/mainline wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9.5/linux-headers-4.9.5-040905_4.9.5-040905.201701200532_all.deb w...
介绍 Linux Tovalds 于 2016 年 12 月 11 日发布了 Kernel 4.9 正式版本,带来了一些令人激动的特性以及一些驱动的更新。Linux 稳定内核维护者 Greg Kroah-Hartman 也早已宣布下一个长期支持版(LTS)内核将是 Linux 4.9。来自 Google 的 TCP BBR 拥塞控制算法也在这个版本并入了主线。为了体验 TCP BBR,迫不及待的需...
准备 在使用 SSHfs 挂载之前,需要进行一些设置 - 在你的系统上安装 SSHfs 以及 fuse 软件包。你还需要为 fuse 创建一个组,添加用户到组,并创建远程文件系统将会驻留的目录。 要在 Ubuntu Linux 上安装两个软件包,只需要在终端窗口输入以下命令: sudo apt-get install sshfs fuse 如果你使用的不是 Ubuntu,那就在你的发行版软件包管理...
在Linux下面默认的vim的注释颜色非常刺眼,看不清楚,修改其色彩。 找到vim的配置文件, /etc/vim/vimrc 然后按大写 G 到最后一行,插入 hi comment ctermfg=6 然后wq保存离开 vim /etc/vim/vimrc hi comment ctermfg=6 PS:默认的注释颜色是4 然后有0,1,2,3,4,5,6,7来选择。可以除了4和0以外选择其他的试...
Linux修改环境变量,很简单但很重要 一、Linux的变量种类 按变量的生存周期来划分,Linux变量可分为两类: 1. 永久的:需要修改配置文件,变量永久生效。 2. 临时的:使用export命令行声明即可,变量在关闭shell时失效。 二、设置变量的三种方法 1. 在/etc/profile文件中添加变量【对所有用户生效(永久的)】 用VI在文件/etc/profile文件中增加变量,该变量...