会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
干煸茄子
博客园
首页
新随笔
联系
订阅
管理
2021年11月19日
ubuntu安装postman
摘要: 1、下载linux版本的postman:https://www.postman.com/ 2、把下载的压缩包放到/home/user/路径下 3、解压安装:sudo tar -xzf Postman-linux-x64-5.5.3.tar.gz 4、此时,在当前目录出现一个Postman文件夹。 5
阅读全文
posted @ 2021-11-19 11:49 干煸茄子
阅读(1296)
评论(0)
推荐(0)
2021年11月15日
centos7网络配置
摘要: 使用vmware安装centos7 1、虚拟网络编辑器设置: 2、配置ip: [root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-ens33TYPE=EthernetPROXY_METHOD=noneBROWSER_ONLY=no
阅读全文
posted @ 2021-11-15 14:22 干煸茄子
阅读(74)
评论(0)
推荐(0)
2021年9月22日
python异常处理
摘要: try: (执行的代码) except: (发生异常时执行的代码) else: (未发生异常时执行的代码) finally: (无论是否发生异常都会执行的代码) raise(抛出异常)
阅读全文
posted @ 2021-09-22 15:12 干煸茄子
阅读(36)
评论(0)
推荐(0)
ubuntu系统,用ftp传输文件的shell脚本。
摘要: #!/bin/bash file_name=$'*.zip'dst_ip='192.168.2.59'user='ftpuser'passwd='123456'path='/var/ftp/test' if [ -f $file_name ]; then ftp -vn << EOFopen $ds
阅读全文
posted @ 2021-09-22 14:57 干煸茄子
阅读(277)
评论(0)
推荐(0)
ubuntu系统安装java1.8版本
摘要: Java安装步骤 1、手动下载java1.8linux版本,放到/opt路径下 2、解压:tar -zxvf /opt/jdk-8u144-linux-x64.tar.gz 3、配置环境变量:vim /etc/profile.d/java.sh 复制下边两行内容到java.sh文件中 export
阅读全文
posted @ 2021-09-22 14:38 干煸茄子
阅读(1263)
评论(0)
推荐(0)
ubuntu系统安装nginx服务
摘要: nginx安装步骤: 1、 安装依赖包: apt-get install gcc apt-get install libpcre3 libpcre3-dev apt-get install zlib1g zlib1g-dev sudo apt-get install openssl sudo apt
阅读全文
posted @ 2021-09-22 14:36 干煸茄子
阅读(725)
评论(0)
推荐(0)
python爬取知乎图片
摘要: import reimport osimport timeimport randomimport requestsclass Zhihu_Photo(): def __init__(self): self.path = 'C:\desk\download' #存储图片的位置 self.questio
阅读全文
posted @ 2021-09-22 14:13 干煸茄子
阅读(122)
评论(0)
推荐(0)
公告