随笔分类 -  Tools

上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要:1. 问题现象 报错现象类似 https://blog.csdn.net/ZYStefanie/article/details/112358315 2. 处理方法 sudo vim /etc/init.d/jenkins 修改原来的Java_version匹配规则 JAVA_VERSION=$($J 阅读全文
posted @ 2022-03-31 15:39 代码诠释的世界 阅读(351) 评论(0) 推荐(0) 编辑
摘要:1. 官网 https://www.atlassian.com/software/jira/guides https://docs.atlassian.com/software/jira/docs/api/ 2. 安装mysql https://www.cnblogs.com/fireblackma 阅读全文
posted @ 2022-03-31 11:01 代码诠释的世界 阅读(22232) 评论(5) 推荐(0) 编辑
摘要:1. 问题 这个问题是因为我重新安装, 没删除原来的数据库 2. 处理方法 因为存在相同的数据库,没清空, 然后删除重建即可 mysql -h localhost -u root -p create database jira default character set utf8 collate u 阅读全文
posted @ 2022-03-30 21:17 代码诠释的世界 阅读(1311) 评论(0) 推荐(0) 编辑
摘要:1. 安装WSL https://docs.microsoft.com/zh-cn/archive/blogs/wsl/ 2. 安装桌面版docker 下载 https://www.docker.com/get-started/ 双击安装 3. 开放docker daemon TCP端口 4. WS 阅读全文
posted @ 2022-03-25 14:38 代码诠释的世界 阅读(575) 评论(0) 推荐(0) 编辑
摘要:1. 官网 https://www.jumpserver.org/ 2.github https://github.com/jumpserver/jumpserver.git 3.文档 https://docs.jumpserver.org/zh/master/install/setup_by_fa 阅读全文
posted @ 2022-03-25 13:39 代码诠释的世界 阅读(1912) 评论(0) 推荐(0) 编辑
摘要:1. 原因 竞争 2. 基本概念 bcdedit 是一个启动选项编辑工具,用来管理启动设置。 BCDEdit 不是一个运行于图形界面下的程序,而是一个命令行工具,该文件 (Bcdedit.exe) 位于 “\Windows\System32” 目录下。通过命令行工具 Bcdedit ,我们可以添加、 阅读全文
posted @ 2022-03-25 11:56 代码诠释的世界 阅读(276) 评论(0) 推荐(0) 编辑
摘要:1. 安装openssh-server sudo apt-get install openssh-server 2、会安装相关依赖包 ~$ dpkg -l | grep ssh ii libssh-4:amd64 0.9.3-2ubuntu2.2 amd64 tiny C SSH library ( 阅读全文
posted @ 2022-03-25 11:42 代码诠释的世界 阅读(297) 评论(0) 推荐(0) 编辑
摘要:1. 各大源官网 https://mirrors.tuna.tsinghua.edu.cn/ http://mirrors.163.com/ https://developer.aliyun.com/mirror/ https://mirrors.ustc.edu.cn/ https://mirro 阅读全文
posted @ 2022-03-25 11:34 代码诠释的世界 阅读(2018) 评论(0) 推荐(0) 编辑
摘要:1. qBittorrent官网 https://www.qbittorrent.org/download.php 2. 开源Tracker链接地址 https://ngosang.github.io/trackerslist 例如: https://ngosang.github.io/tracke 阅读全文
posted @ 2022-03-24 15:00 代码诠释的世界 阅读(9023) 评论(0) 推荐(0) 编辑
摘要:1. 导出csv 2. 打开之后乱码 3、处理方法(win10) 使用记事本打开, 然后另存为,选择带有BOM的UTF8格式 保存之后重新打开即可 参考链接: https://www.cnblogs.com/fengyudeleishui/p/15662860.html 阅读全文
posted @ 2022-03-23 10:34 代码诠释的世界 阅读(258) 评论(0) 推荐(0) 编辑
摘要:1、官网 https://www.selenium.dev/selenium-ide/ Getting Started · Selenium IDE 2、插件安装 可以使用谷歌和火狐 3. 步骤 https://zhuanlan.zhihu.com/p/137206279 参考链接: https:/ 阅读全文
posted @ 2022-03-17 20:43 代码诠释的世界 阅读(282) 评论(0) 推荐(0) 编辑
摘要:1. 官网 http://mysql-python.sourceforge.net/MySQLdb.html 2. github地址 python2 https://github.com/farcepest/MySQLdb1 python3 https://github.com/PyMySQL/my 阅读全文
posted @ 2022-03-17 20:21 代码诠释的世界 阅读(479) 评论(0) 推荐(0) 编辑
摘要:1、显示行号, :set nu 2、隐藏行号, :set nonu 3、持久化配置 sudo vim /etc/vim/vimrc 文件中加入 阅读全文
posted @ 2022-03-17 17:03 代码诠释的世界 阅读(198) 评论(0) 推荐(0) 编辑
摘要:1、使用vim打开文件 $ vim /var/log/mail.log 2、使用 “/后跟要搜索的字符串”, 然后按回车 3、然后按小写‘n’ , 查找下一个 4. 大写'N', 查找上一个 5. 设置高亮显示, :set nohlsearch 6. 设置非高亮显示, :nohlsearch或者:s 阅读全文
posted @ 2022-03-17 16:53 代码诠释的世界 阅读(4658) 评论(0) 推荐(0) 编辑
摘要:1、下载地址 https://registry.npmmirror.com/binary.html?path=chromedriver/ http://chromedriver.storage.googleapis.com/index.html 2、工程配置 3、使用 class BaseActio 阅读全文
posted @ 2022-03-15 10:49 代码诠释的世界 阅读(446) 评论(0) 推荐(0) 编辑
摘要:1. 官网链接 https://wiki.deepin.org/wiki/Deepin%E5%AE%89%E8%A3%85%E6%9C%80%E6%96%B0NVIDIA%E9%A9%B1%E5%8A%A8 阅读全文
posted @ 2022-03-10 21:11 代码诠释的世界 阅读(469) 评论(0) 推荐(0) 编辑
摘要:1. 打开服务器的.ssh/authorized_keys vim .ssh/authorized_keys 2. 将客户机的公钥复制到服务器的.ssh/authorized_keys文件内 3. 客户端测试链接 ssh test@192.168.1.100 阅读全文
posted @ 2022-03-10 14:42 代码诠释的世界 阅读(35) 评论(0) 推荐(0) 编辑
摘要:一、方法1 1. 进入ssh目录,C:\Users\你自己的用户名\.ssh 2. 将免密的私钥复制到这台电脑上的 .ssh目录,例如叫:id_rsa_linux 3. 在ssh目录创建config文件,linux为用户的home目录下 Host 192.168.1.100 User test Ho 阅读全文
posted @ 2022-03-10 14:36 代码诠释的世界 阅读(563) 评论(0) 推荐(0) 编辑
摘要:1. 处理方法 sudo apt-get install libxcb-xinerama0 参考链接: https://blog.csdn.net/u012308586/article/details/108509503 阅读全文
posted @ 2022-03-10 14:21 代码诠释的世界 阅读(391) 评论(0) 推荐(0) 编辑
摘要:1. Windows下安装vcxsrv https://sourceforge.net/projects/vcxsrv/ 2. WSL Ubuntu下安装xfce desktop sudo apt-get install xfce4-terminal sudo apt-get install xfc 阅读全文
posted @ 2022-03-10 14:18 代码诠释的世界 阅读(1102) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
点击右上角即可分享
微信分享提示