logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

docker守护式容器

守护式容器:长期运行没有交互式回话适合运行应用程序和服务以守护形式运行容器docker run -i-t IMAGE /bin/bash按ctrl+p ctrl+q 会将交互式容器置于后台运行[root@host ~]# docker run -t -i ubuntu /bin/bashroot@containerid:/#[root@host ~]#[ro...

hadoop报错ConnectionRefused

执行hadoop fs -ls时 报错:ls: Call From SERVER226/10.0.0.226 to SERVER226:9000 failed on connection exception: java.net.ConnectException: Connection refused; For more details see:http://wiki.apache.org/ha

#hadoop
Aria2 百度网盘下载教程

感谢:https://www.chiphell.com/thread-1228502-1-1.html迅雷离线下载需要迅雷会员功能转战百度云打开如下连接https://github.com/acgotaku/BaiduExporter(在此感谢作者提供脚本)下载相关Zip文件(该打包文件包含chrome和firefox之脚本,本文引用chrome为例)解压Zip中chrome整个文件夹出

#百度云
使用dockerfile-maven-plugin

介绍github地址:GitHub - spotify/dockerfile-maven: MATURE: A set of Maven tools for dealing with Dockerfileshttps://github.com/spotify/dockerfile-maven/maven是一个项目依赖管理和构建的工具,dockerfile-maven-plugin是一个maven的

#maven#docker#java
apache所有开源项目文件

http://archive.apache.org/dist/

#apache
linux w3m命令

w3m是个开放源代码的命令行下面的网页浏览器。一般的linux系统都会自带这个工具,可以通过它在命令行下面浏览网页。本文介绍这个工具的使用方法。 [功能]w3m是个开放源代码的命令行下面的网页浏览器。 它支持表格、框架、SSL连线、颜色。如果是在适当的terminal上,甚至还支持“inline image”。 这个软件通常尽量呈现出网页本来的编排。*常用交互式命令:下面列出启动w3m

#linux
linux根据文件时间复制

转载:https://zhidao.baidu.com/question/303878686454503364.htmlhttp://blog.csdn.net/abcdef0966/article/details/7607545将yourdir目录下修改时间一天以内的文件复制到destdir下:find /yourdir -mtime -1 -type f -exec cp {} /des

#linux
python闭包

#!/usr/bin/pythondef f1():x=1;def f2():y=2;print(x,y)return f2;f = f1()f()

#python
JSF探索--URL映射,web.xml配置

web.xml配置Faces Servletjavax.faces.webapp.FacesServlet1Faces Servlet/faces/*所有的JSF页面都传入Faces Servlet中,该Faces Servlet是JSF实现代码的一部分。当请求JSF页面是,为了保证激活正确的servle

#xhtml
到底了