摘要: 原因是rename 方法无法在mount 点使用。oldpath and newpath are not on the same mounted filesystem. (Linux permits a filesystem to be mounted at multiple points, but 阅读全文
posted @ 2019-07-30 13:23 you_magic 阅读(1739) 评论(0) 推荐(0) 编辑
摘要: This sounds like the default mount behavior is not allowing ACLs on the filesystem. getfacl will report the normal filesystem permissions without erro 阅读全文
posted @ 2019-07-30 13:11 you_magic 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 1)choco是什么? Windows操作系统上的一个软件管理解决方案。使用PowerShell 来创建软件发布包。然后可以将他部署在任何有Windows操作系统的地方。 2)特色: 可以部署到任何有Windows/Cloud 的地方。 可以部署任何东西。 所有软件是一等公民。 测试发布。 完全的线 阅读全文
posted @ 2019-03-17 09:06 you_magic 阅读(10332) 评论(0) 推荐(1) 编辑
摘要: function draggable(element) { var dragging = null; addListener(element, "mousedown", function(e) { var e = window.event || e; dragging = { mouseX: e.c 阅读全文
posted @ 2019-03-14 08:49 you_magic 阅读(1148) 评论(0) 推荐(0) 编辑
摘要: width: 本身宽度 innerWidth: 本身宽度+padding; outerWidth: innerWidth + border 宽度; outerWidth(true): outerWidth + margin; 阅读全文
posted @ 2019-03-14 08:44 you_magic 阅读(326) 评论(0) 推荐(0) 编辑
摘要: docker run -it ubuntu [command] (i interactive, t terminal) As it happens, the default command specified for the Ubuntu Dockerfile is, in fact, bash: 阅读全文
posted @ 2019-03-13 09:07 you_magic 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: Linux里的lsb_release命令用来查看当前系统的发行版信 息(prints certain LSB (Linux Standard Base) and Distribution information.)。有了这个命令就可以清楚的知道到底是RedHat的、还是别的发行版,还有具体的版本号, 阅读全文
posted @ 2019-03-13 09:01 you_magic 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 阿里巴巴开发手册规约 插件配置 http://blog.csdn.net/whzhaochao/article/details/78247260 阅读全文
posted @ 2017-12-07 09:54 you_magic 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 没有影响,持久化只是为了保证可靠性。持久化并不会把数据换出内存。如果开启redis的VM(虚拟内存),会将冷数据交换到磁盘;另外:使用aof代替snapshot不是个好主意,因为:aof即append only mode,在写入内存数据的同时将操作命令保存到日志文件,在一个并发更改上万的系统中,命令 阅读全文
posted @ 2017-07-18 22:44 you_magic 阅读(678) 评论(0) 推荐(0) 编辑