摘要: 一、首先还是得打开postgresql ``` service postgresql start ``` 然后让我们看看它有哪些功能 ![image](https://img2023.cnblogs.com/blog/1744503/202306/1744503-20230629105352161- 阅读全文
posted @ 2023-06-29 10:54 ghostmen 阅读(140) 评论(0) 推荐(0)
摘要: ####1、下载wkhtmltox安装包 * 官网:https://wkhtmltopdf.org/downloads.html * 根据系统类型选择下载wkhtmltox * 环境:centos6 32位、wkhtmltopdf0.12.5 * 安装方式:rpm * 下载:wkhtmltox-0. 阅读全文
posted @ 2023-06-29 10:51 ghostmen 阅读(987) 评论(0) 推荐(0)
摘要: >版权声明:本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。 >本文链接:https://blog.csdn.net/quantum7/article/details/82106972 * 必须先卸载LibreOffice: ``` sudo apt-g 阅读全文
posted @ 2023-06-29 10:49 ghostmen 阅读(1116) 评论(0) 推荐(0)
摘要: 本人使用的是Windows 10下的WSL,Linux版本是Ubuntu18.04,系统原始是没有安装任何字体的,`mkfontscale、mkfontdir`和`fc-cache`命令也是不存在的,直接运行会直接提示:命令未找到(`mkfontscale: command not found`)。 阅读全文
posted @ 2023-06-29 10:47 ghostmen 阅读(1780) 评论(0) 推荐(0)
摘要: >宋体黑体为例 1、安装字体库 在CentOS 4.x开始用`fontconfig`来安装字体库,所以输入以下命令即可: ``` sudo yum -y install fontconfig ``` 这时在`/usr/shared`目录就可以看到`fonts`和`fontconfig`目录了(之前是 阅读全文
posted @ 2023-06-29 10:41 ghostmen 阅读(884) 评论(0) 推荐(0)
摘要: Linux 版本:CentOS 7.6 64位 Nginx版本:1.13.7 下载地址:http://nginx.org/download/nginx-1.13.7.tar.gz 在安装nginx前首先要确认系统中安装了 gcc、pcre-devel、zlib-devel、openssl-devel 阅读全文
posted @ 2023-06-29 10:39 ghostmen 阅读(1294) 评论(0) 推荐(0)
摘要: nginx卸载 其实很简单,只需要两步即可完成! 第一步:输入以下指令全局查找nginx相关的文件: sudo find / -name nginx* 第二步:删除查找出来的所有nginx相关文件 sudo rm -rf file 此处跟查找出来的nginx文件 说明:全局查找往往会查出很多相关文件 阅读全文
posted @ 2023-06-29 10:38 ghostmen 阅读(157) 评论(0) 推荐(0)
摘要: ####1、安装wget命令 ``` yum -y install wget ``` ####2、下载maven安装包 ``` wget http://mirrors.cnnic.cn/apache/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bi 阅读全文
posted @ 2023-06-29 10:36 ghostmen 阅读(96) 评论(0) 推荐(0)
摘要: #### 一、下载相应的JDK以及Tomcat的版本 JDK:jdk-8u131-windows-x64 tomcat:apache-tomcat-8.5.23-windows-x64.zip #### 二、JDK的安装 请参考: #### 三、Tomcat的安装 ##### 第一步:从官网下载ap 阅读全文
posted @ 2023-06-29 10:26 ghostmen 阅读(166) 评论(0) 推荐(0)
摘要: ## FreeMarker介绍及基本数据类型和用法 > [FreeMarker 中文官方参考手册](http://freemarker.foofun.cn/) > > [FreeMarker 英文官方参考手册](https://freemarker.apache.org/docs/index.htm 阅读全文
posted @ 2023-06-05 11:28 ghostmen 阅读(521) 评论(0) 推荐(1)