
Linux
Junruiqwertyuiop
我是一只小菜鸟
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ERROR: No matching distribution found for XXXXX 国内的镜像源来加速网络
用国内的镜像源来加速网络 pip install 包名 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 其中 --trusted-host pypi.douban.com 是为了获得 SSL 证书的认证。 pip国内的一些镜像 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simpl..原创 2022-03-28 09:59:48 · 2275 阅读 · 0 评论 -
服务器进程悬挂 nohup
之前用过nohup但是发现好像没有记录 所以这次整理一份出来 在linux服务器上调用脚本文件的时候可能会因为 服务器网络的连接造成进程中断 尤其是在大任务的时候 所以使用nohup进程悬挂后台运行 举例: nohup python 111.py >> outfile.txt 2>&1 & 这其中outfile.txt 是对输出的重定向 & 的用法可以详细查询其他博客 这里不详细说了 之后使用 ps -u 或者 ps -u userna..原创 2020-07-02 20:20:00 · 489 阅读 · 0 评论 -
Linux常用命令
转载于: http://www.lxx.help/2016/07/26/大数据学习之基础部分-----Linux常用命令/ 日常操作命令 查看当前所在的工作目录的全路径 pwd 1 2 [root@localhost ~]# pwd /root 查看当前系统的时间 date 1 2 3 4 5 6 7 8 ...转载 2018-08-05 13:29:24 · 250 阅读 · 0 评论 -
Linux Tomcat 的安装
转载于:https://blog.csdn.net/lcyaiym/article/details/76696192?utm_source=copy 1、下载JDK和Tomcat //通过wget下载 wget http://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-8/v8.5.4/bin/apache-tomcat-8...转载 2018-10-23 11:29:04 · 160 阅读 · 0 评论