
linux
iJiabao-巨鹿网络
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux子系统运行exe,修复盘符路径
exe-in-bash 在Linux子系统下运行exe,修正盘符路径,适用于sublime,notepad++或其它需要指定文件参数的GUI程序 注: 测试使用软链接即可在子系统bash中运行exe文件,如:SublimeText, 免去安装GUI和输入法 ln -sv /mnt/c/Program\ Files/Sublime\ Text\ Build\ 3143\ x64/subl...原创 2018-04-03 21:53:57 · 586 阅读 · 0 评论 -
mysql open-files-limit Out of resources when opening file 解决
引用其它: Edit /etc/security/limits.conf and add the following lines mysql soft nofile 65535 mysql hard nofile 65535 then reboot. Then edit /usr/lib/systemd/system/mysqld.service or /usr/lib/systemd/...转载 2018-07-30 10:11:15 · 899 阅读 · 0 评论 -
Centos7 SNV-Server 速装
其实现在centos7系统做事比以前方便多了,这个svn-server一分钟搞定安装 # 安装: yum install subversion # 配置, 修改启动参数(指定仓库目录) vim /etc/sysconfig/svnserve OPTIONS="-r /data/svn" 启动: systemctl start svnserve 停止: systemctl stop sv...原创 2018-08-07 09:48:27 · 449 阅读 · 0 评论 -
centos lamp速装
此为centos7纯净系统 yum install httpd mariadb-server php扩展很多,使用 php-* 通配, --exclude 表示除外(度娘根本查不到资料) yum install php-* --exclude php-mysql,php-devel systemctl enable httpd systemctl enable mariadb system...原创 2018-08-03 13:01:09 · 148 阅读 · 0 评论 -
linux x11,gtk 取消鼠标中键粘贴,不是屏蔽按钮哦
在某DN有几百篇关于此问题, 几乎千篇一律的是同一篇转文, 原理是从硬件上把按钮屏蔽掉了, 某些软件还是需要定义中键功能的, 比如 IDEA) 求人不如求已, 甚至翻了源码,终于找到解决方法 此法应用在 mate desktop 在gconf里有一项 gtk-enable-primary-paste, 他的说明信息如下: if true, gtk+ uses the primary paste...原创 2019-07-31 22:34:01 · 713 阅读 · 0 评论