上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 关闭微信 删除C:\Users\daiho\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime文件夹 打开Fiddler 微信小程序,可临时抓包 阅读全文
posted @ 2022-09-17 00:12 shengtudai 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1.创建虚拟环境,安装jupyter conda create -n graph python=3.8 # 创建虚拟环境 conda activate graph python -m pip install --upgrade pip conda install ipython # 安装ipytho 阅读全文
posted @ 2022-08-02 16:39 shengtudai 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1. 配置用户信息 git config --global user.name shengtudai git config --global user.email daihonggang@foxmail.com 2. 配置SSH keys ssh-keygen -t rsa -C "daihongg 阅读全文
posted @ 2022-07-07 14:56 shengtudai 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Rstudio Server运行卡慢,占用过高内存 新版本Rstudio Server中,删除 ~/.local/share/rstudio/sessions/active/ 文件夹下内容 rm -rf ~/.local/share/rstudio/sessions/active/* 阅读全文
posted @ 2022-05-30 22:40 shengtudai 阅读(87) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash #使用 sh add_user_sudo.sh geoffrey Ab*112580 #创建用户并设置密码 name=$1 pass=$2 #echo "you are setting username : ${name}" #echo "you are setting pa 阅读全文
posted @ 2022-03-16 15:26 shengtudai 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 将内网机器通过frp映射到公网后,内网主机受到大量ssh爆破攻击,攻击来源为frp的服务端,仅在内网机器上无法追踪到真实的攻击来源的ip。下面记录了在frp服务端监控指定端口的入站数据,找到真正的攻击来源。 1. iptables 记录所有访问2130端口(内网ssh映射到frps的端口)的连接并写 阅读全文
posted @ 2021-12-22 20:36 shengtudai 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1 #%Module 2 set root /home/software/opt/bio/software/sratoolkit/2.11.0 3 conflict sratoolkit 4 prepend-path PATH $root/bin 阅读全文
posted @ 2021-11-09 09:40 shengtudai 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 下载meme套件,网址:https://meme-suite.org/meme/doc/download.htm 查看缺失依赖 cd scripts perl dependencies.pl cpan File::Which missing # 安装缺失依赖 安装 ./configure prefe 阅读全文
posted @ 2021-11-09 09:38 shengtudai 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 安装conda wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh bash Miniconda3-latest-Linux-x86_64.sh # 取消conda自动激活 conda confi 阅读全文
posted @ 2021-11-07 20:02 shengtudai 阅读(960) 评论(0) 推荐(0) 编辑
摘要: 问题ssh 登录服务器缓慢,加上-vvv查看登录日志 ssh -vvv root@ip 输入密码后, 输出卡在 client_check_window_change:changed 解决方法重启systemd-login 和 systemd systemctl restart systemd-log 阅读全文
posted @ 2021-06-11 16:12 shengtudai 阅读(283) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页