1 2 3 |
E:\sourcecode\tmp\qt-everywhere-src-5.15.9\configure.bat -static -static-runtime -release -platform win32-msvc -prefix D:\Qt\Static5.15 -confirm-license -opensource -nomake examples -nomake tests -opengl desktop -no-icu -skip qtwebengine -mp |
分类目录:折腾
windows server2022 使用记录
git ssh端口非22端口解决方案
gitea 无法ssh clone push解决
替换垃圾WIN11的任务栏,支持任务不合并
openwrt webdav安装记录
放弃用Lighttpd-mod-webdav的方法,一直不成功
1 2 3 4 |
opkg update opkg install lighttpd lighttpd-mod-cgi lighttpd-mod-alias lighttpd-mod-webdav opkg install php7 php7-cgi --nodeps |
opkg 在安装时如果报依赖错误,加–nodeps 参数可以解决 修改 /etc/lighttpd/conf.d/30-cgi.conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<br />\####################################################################### ## ## CGI modules ## --------------- ## ## See https://redmine.lighttpd.net/projects/lighttpd/wiki/docs_modcgi ## server.modules += ( "mod_cgi" ) ## ## Plain old CGI handling ## ## For PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini. # cgi.assign = ( ".php" => "/usr/bin/php-cgi", ".pl" => "/usr/bin/perl", ".cgi" => "/usr/bin/perl", ".rb" => "/usr/bin/ruby", ".erb" => "/usr/bin/eruby", ".py" => "/usr/bin/python" ) ## ## to get the old cgi-bin behavior of apache ## ## Note: make sure that mod_alias is loaded if you uncomment the ## next line. (see modules.conf) ## #alias.url += ( "/cgi-bin" => server_root + "/cgi-bin" ) #$HTTP["url"] =~ "^/cgi-bin" { # cgi.assign = ( "" => "" ) #} ## ####################################################################### |
修改……
markdown 转PDF
试过其他的方式,都无法转换TOC,在网上介绍pandoc可以支持.现在试试 还是在linux换件下安装Pandoc吧
1 2 3 4 |
apt-get install pandoc texlive-xetex -y pandoc -N -s --toc --smart --latex-engine=xelatex -V CJKmainfont='Microsoft YaHei' -V mainfont='Microsoft YaHei' -V geometry:margin=1in 1.md -o output.pdf |
参考:https://www.zhihu.com/question/20849824 命令行有两个最关键参数,–latex-engine=xel……