摘要:
可自行下载对应的 gradle-x.x-all.zip 放在下列目录 C:\Users\penno\.gradle\wrapper\dists\gradle-4.4-all\9br9xq1tocpiv8o6njlyu5op1 阅读全文
摘要:
With a bit of playing around I've managed to come up with a semi solution (not perfect but good enough) using 2707974 answer and information I've gain 阅读全文
摘要:
Gitlab 反向代理设置 系统 nginx 与 Gitlab 中的 nginx 共存 Gitlab以82端口启动。通过反向代理配置使用/git目录来进行访问。共用nginx nginx上增加以下配置 location ~ /git { proxy_redirect off; proxy_set_h 阅读全文
摘要:
sshd_config 文件中 允许 root 用户登录 PermitRootLogin yes 配置为内部的 sftp Subsystem sftp internal-sftp key 配置 ssh-keygen -t rsa -f ssh_host_rsa_key -N ""ssh-keygen 阅读全文
摘要:
1. 设置 IISExpress 配置文件 applicationhost.config VS2015 :这个配置文件 在工程目录下的 .vs/config 隐藏目录 其他版本 :在用户目录中的 IISExpress 文件夹下 将属性 bindingInformation="*:7632:local 阅读全文
摘要:
qtbase/mkspecs/linux-arm-gnueabi-g++/qmake.conf 添加 QMAKE_LFLAGS += -Wl,-rpath-link,$$[QT_SYSROOT]/usr/lib QMAKE_CFLAGS += -march=armv7-a -mfpu=neon QM 阅读全文
摘要:
配置 ./configure \-prefix /usr \-no-rpath \-embedded arm \-xplatform /qws/linux-arm-gnueabi-g++ \-depths 16,24,32 \-no-mmx \-no-3dnow \-no-sse \-no-sse2 阅读全文
摘要:
export DESTDIR=/INSTALL/DIR make install 阅读全文
摘要:
#include #include #include #include #include #include #include int main(int argc, void** argv) { void* base; int fd, reg; fd = open("/dev/mem", O_RDWR | O_SYNC); if (fd 1) { reg = strtol(argv[1], NULL, 16); printf(">>> %08X is %08X\n", 0x20E0000 + reg, *((unsigned int*)( 阅读全文
摘要:
安装 setuptools 出现 UnicodeDecodeError文件 Lib/mimetypes.py 中的 bug, 通过以下 patch 修复:Index: Lib/mimetypes.py===================================================================--- Lib/mimetypes.py (revision 85786)+++ Lib/mimetypes.py (working copy)@@ -27,6 +27,7 @@import sysimport posixpathimport urllib+from 阅读全文