摘要:
# install TensorFlow GPU on CentOS 7.0# https://www.server-world.info/en/note?os=CentOS_7&p=tensorflow&f=2# https://docs.nvidia.com/cuda/cuda-installa 阅读全文
摘要:
cat ~/.ssh/id_rsa.pub | ssh root@destination_server_address "cat >> ~/.ssh/authorized_keys" see also: https://www.liberiangeek.net/2014/07/enable-ssh- 阅读全文
摘要:
sudo apt install python-minimal # python 2.7.xsudo apt install python-pip# https://www.ubuntuupdates.org/ppa/google_chromewget -q -O - https://dl-ssl. 阅读全文
摘要:
1. http://gen.lib.rus.ec/ 2. http://www.salttiger.com/ 3. http://scanlibs.com/ 4. https://avxhm.se/ebooks/programming_development 5. https://coderprog 阅读全文
摘要:
在CentOS下使用wkhtmltopdf将html页面转换成pdf的时候对于某些页面可能会出现转换成的pdf中很多字符乱码的情况,更怪异的是直接在命令行下运行一切正常,但在httpd+php下使用却出现乱码,具体解决办法如下:# install urw-fonts (standard PostSc... 阅读全文
摘要:
http://p-nand-q.com/python/building-python-27-with-vs2010.html 阅读全文
摘要:
ext4 disable journalAt one high loaded web project I needed a very fast file system. I decided to use Ext4 with disabled journal (As a google:))).# Cr... 阅读全文
摘要:
################################################################### /etc/elasticsearch/elasticsearch.yml## Base configuration for a write heavy cluste... 阅读全文
摘要:
对于Python2.7来说,内置的FTP_TLS类并不支持Implicit FTP Over TLS加密方式的FTP Server操作,为支持Implicit FTP Over TLS加密方式,必须重载内置的FTP_TLS类,具体代码如下:import ftplibclass FTP_TLS(ftp... 阅读全文
摘要:
linux下对进程按照内存使用情况进行排序的命令为:ps aux --sort -rss详细解说参见 http://alvinalexander.com/linux/unix-linux-process-memory-sort-ps-command-cpu 阅读全文