首先在点击主页中的导入, 在“从计算机中上传:”选择/usr/share/doc/phpmyadmin/examples的“create_tables.sql.gz”文件 点击执行 但是我的电脑上还是有一项错误 终端执行 修改 $cfg['Servers'][$i]['pam_table_uipre ...
分类:
Web程序 时间:
2016-05-16 01:54:04
阅读次数:
465
1、vi/etc/security/limits.conf*softnofile65535*hardnofile65535*softnproc65535*hardnproc65535参照示例,正常修改(Redhat6.4)2、vi/etc/security/limits.d/90-nproc.conf*hardnproc65535*softnproc65535*hardnproc65535*softnproc65535参照示例,正常修改3、vi/etc/ssh/s..
分类:
系统相关 时间:
2016-05-16 00:29:37
阅读次数:
277
运维课程:系统基础:操作系统基础,Linux理念系统管理:系统安装,文件操作,用户和组,进程管理,软件管理,磁盘管理,内核管理等服务管理:ssh,ftp,Samba,dns,postfix,Apache,nginx,MySQL,rsyslog,ntp等系统安全:pki,pam,iptables,tcp-wrapper,selinux等shell..
分类:
其他好文 时间:
2016-05-15 20:02:23
阅读次数:
143
ulimit-nvi/etc/security/limits.conf*softnofile65535*hardnofile65535ulimit-uvi/etc/security/limits.d/90-nproc.conf*softnproc65535*hardnproc65535rootsoftnproc65535roothardnproc65535disableTransparentHugePageecho"echonever>/sys/kernel/mm/redhat_transparent_..
分类:
其他好文 时间:
2016-05-14 17:08:47
阅读次数:
241
Neutron API中大多的resource都需要quota limits。 Neutron API暴露出一个extension 来管理quota,Quota limits are enforced at the API layer, Plugin and ML2 drivers唯一例外是subn ...
分类:
其他好文 时间:
2016-05-13 18:48:25
阅读次数:
195
一句话题面∑x=0n?1∑y=0m?1min(x⊕y?k,0)(modp)\sum\limits_{x=0}^{n-1}\sum\limits_{y=0}^{m-1}min(x\oplus y-k,0) \pmod{p}好的题面就到这里数位dp一下就好记忆话搜索的时候其实用不着很多的分类讨论,具体的看代码吧#include
using namespace std;#de...
分类:
其他好文 时间:
2016-05-13 04:28:09
阅读次数:
173
1:配置前准备:
yum install pam*
yum install db4*
首先安装PAM(用于用户认证)和DB4(用于生成虚拟用户的用户名密码的db文件)。
2、安装vsftpd
yum install vsftpd
设置vsftpd开机启动:
chkconfig vsftpd on
通过chkconfig --list 查看启动项
3. 配置vsftpd.c...
分类:
其他好文 时间:
2016-05-13 01:05:37
阅读次数:
314
交叉熵损失函数交叉熵损失函数的简单介绍的链接
下面我们就介绍一下caffe里面实现交叉熵的流程:
首先:下面这个式子就是交叉熵的损失表达式
E=?1n∑n=1n[pnlogp^n+(1?pn)log(1?p^n)]E = -\frac{1}{n}\sum\limits_{n=1}^n \left[p_n\log\hat{p}_n+(1-p_n)\log(1-\hat{p}_n)\right]...
分类:
其他好文 时间:
2016-05-12 17:27:44
阅读次数:
1298
C++标准库通过template numeric_limits提供数值类型的极限值。使用这个模板,可以一定程度的提高程序的可移植性。
#include
#include
using std::cout;
using std::endl;
using std::numeric_limits;
int main(){
cout::min()<<endl;
cout::max()<<en...
分类:
编程语言 时间:
2016-05-12 16:24:24
阅读次数:
172
配置# 安装本次实验所用到的所有软件包
yum -y install vsftpd mysql-server mysql-devel pam-devel gcc-c++ make wget# 启动mysqld服务
service mysqld start
# 初始化数据库管理员密码
mysqladmin -uroot password redhat# 登录数据库
mysql -uroot -pred...
分类:
数据库 时间:
2016-05-12 14:31:23
阅读次数:
171