随笔分类 -  Linux

摘要:三、总结选择操作系统主要考虑不同的应用场景和需求 1.生产环境 对于服务器操作系统来说,并不需要太多的应用程序,需要的是稳定,操作方便,维护简单的系统,因此,非常多的商业公司部署在生产环境上的服务器都是使用CentOS系统。 2.个人桌面环境 对于个人使用来说,Ubuntu系统有着靓丽的用户界面,完 阅读全文
posted @ 2019-09-27 16:21 andy_0212 阅读(3066) 评论(0) 推荐(0) 编辑
摘要:Python MySQLdb 循环插入execute与批量插入executemany性能分析 用Python连接MySQL数据库时,会用到MySQLdb库,这里下载↓↓↓ https://pypi.python.org/pypi/MySQL-python/ 这个库提供了对数据库的普遍操作,增删改查之 阅读全文
posted @ 2019-07-09 17:24 andy_0212 阅读(2106) 评论(0) 推荐(0) 编辑
摘要:Python 3 Quick Tip: The easy way to deal with file paths on Windows, Mac and Linux One of programming’s little annoyances is that Microsoft Windows us 阅读全文
posted @ 2019-07-09 17:23 andy_0212 阅读(224) 评论(0) 推荐(0) 编辑
摘要:Procedure to mount remote windows partition (NAS share) 1) Make sure you have following information:==> Windows username and password to access share 阅读全文
posted @ 2019-07-09 15:46 andy_0212 阅读(129) 评论(0) 推荐(0) 编辑
摘要:du -sh file_path Explanation du (disc usage) command estimates file_path space usage The options -sh are (from man du): -s, --summarize display only a 阅读全文
posted @ 2019-05-10 09:03 andy_0212 阅读(110) 评论(0) 推荐(0) 编辑
摘要:那么,如果在~/.bashrc中修改文件的话,即加入export PATH="/home/myname/anaconda2/bin:$PATH",则输入python命令就会直接出来Anaconda环境下的python,当然,用TensorFlow是好的,用caffe就。。。。。。。因此,用caffe 阅读全文
posted @ 2019-05-08 15:55 andy_0212 阅读(3203) 评论(0) 推荐(0) 编辑
摘要:对于linux运维,我们都是使用ssh登录到服务器,如果我们运行的任务需要很长时间或不间断运行,在我们直接关闭终端窗口或网络不稳定的情况下,任务就会中断,当然这只对于普通程序,不包括如mysqld,httpd这样的守护进程。 解决思路:1.让进程运行在新的session(会话)里即不属于此终端的子进 阅读全文
posted @ 2019-05-08 15:50 andy_0212 阅读(2137) 评论(0) 推荐(0) 编辑
摘要:Supervisor是python2写就的一款强大的运维工具(其实现在已经支持Python3了 https://github.com/Supervisor/supervisor)那么怎么利用Supervisor监控python3程序呢?本文主要讲述Supervisor在CentOS下的安装部署。 安 阅读全文
posted @ 2018-11-22 10:47 andy_0212 阅读(9504) 评论(2) 推荐(1) 编辑
摘要:原文 Python2 千万不要删! 服务器上有的LINUX系统默认的是使用Python2 的,如果删除将会导致某些功能无法使用,所以千万不要删! Centos默认的是python版本一般都是2.6或者2.7。 python3的安装需要的依赖 yum install openssl-devel bzi 阅读全文
posted @ 2018-11-20 11:05 andy_0212 阅读(311) 评论(0) 推荐(0) 编辑
摘要:https://www.cheatography.com/davechild/cheat-sheets/linux-command-line/ Bash Commands uname -a Show system and kernel head -n1 /etc/issue Show distri­ 阅读全文
posted @ 2018-11-19 22:12 andy_0212 阅读(349) 评论(0) 推荐(0) 编辑