随笔分类 -  Linux-Basic

上一页 1 2 3 4 5 6 ··· 10 下一页
摘要:一、场景 由于测试时需要抓包,所以安装下charles 二官网 https://www.charlesproxy.com/ https://www.charlesproxy.com/download/ 选择APT安装 三、安装步骤 检查安装结果 四、激活 激活最新版Charles激活码,适用于全部版 阅读全文
posted @ 2024-06-14 20:39 代码诠释的世界 阅读(328) 评论(0) 推荐(0)
摘要:一、问题 使用 sudo apt update 命令时,会提示密钥存储在过时的 trusted.gpg 密钥环中,具体提示内容如下:W: https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/dists/jammy/InRelease: 密钥存储在过时 阅读全文
posted @ 2024-06-14 20:31 代码诠释的世界 阅读(1262) 评论(0) 推荐(1)
摘要:一、场景 测试过程需要增删改查查询MongoDB数据,并对比结果 二、官网 https://www.mongodb.com/try/download/shell 选择对应的系统和版本,下载即可 三、安装 sudo dpkg -i mongodb-mongosh_2.2.6_amd64.deb 检查安 阅读全文
posted @ 2024-06-14 15:49 代码诠释的世界 阅读(412) 评论(0) 推荐(0)
摘要:一、场景 由于高并发测试,服务器资源不够用,所以需要使用jmeter分布式进行测试,但是测试过程中报错:java.rmi.ConnectException: Connection refused to host: 127.0.1.1; 二、问题原因 就是hostname -i 如果返回的是127.0 阅读全文
posted @ 2024-06-12 19:50 代码诠释的世界 阅读(208) 评论(0) 推荐(0)
摘要:一、场景 当我们拉取多个项目时,每次总要输入密码,http方式的时候 二、方法 git config --global credential.helper store 然后可以手动配置账号密码 配置~/.gitconfig文件 [user] name = test email = test@emai 阅读全文
posted @ 2024-06-12 19:45 代码诠释的世界 阅读(355) 评论(0) 推荐(0)
摘要:1、问题场景 太慢了 2、命令 split -b 500m test.DEBUG.BAK test.DEBUG.BAK_ 3、命令帮助 $ split --help 用法:split [选项]... [文件 [前缀]] 将 <文件> 拆分并输出到 "前缀aa"、"前缀ab" 等文件; 默认以 100 阅读全文
posted @ 2024-05-29 17:09 代码诠释的世界 阅读(366) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/671744884 阅读全文
posted @ 2024-05-28 17:05 代码诠释的世界 阅读(107) 评论(0) 推荐(0)
摘要:一、问题现象 打开应用突然打不开了,一个docker应用依赖显卡 报错:failed to create shim task: OCI runtime create failed:xxxxxx 二、定位处理 1、查看显示情况 $ nvidia-smi Unable to determine the 阅读全文
posted @ 2024-05-23 20:10 代码诠释的世界 阅读(4270) 评论(0) 推荐(0)
摘要:一、Redis Insight 1、官网下载 https://redis.io/insight/#insight-form 2、安装 sudo dpkg -i RedisInsight-linux-amd64.deb 3、运行 二、 AnotherRedisDesktopManager 1、官网下载 阅读全文
posted @ 2024-05-22 20:26 代码诠释的世界 阅读(687) 评论(0) 推荐(0)
摘要:1、方法 终端执行 :$ gsettings set org.gnome.desktop.interface clock-show-seconds true 阅读全文
posted @ 2024-05-21 16:15 代码诠释的世界 阅读(390) 评论(0) 推荐(0)
摘要:一、CUDA安装方法 https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#pre-installation-actions 1、使用二进制 https://developer.nvidia.com/cuda-12 阅读全文
posted @ 2024-05-20 20:12 代码诠释的世界 阅读(3133) 评论(0) 推荐(0)
摘要:一、官方下载 https://maven.apache.org/download.cgi 二、安装方法 1、使用软件源安装 sudo apt install maven 2、使用二进制包安装 a 选择对应的二进制包下载 b 解压到指定的目录如/home/tester/tools/apache-mav 阅读全文
posted @ 2024-05-17 15:35 代码诠释的世界 阅读(1117) 评论(0) 推荐(0)
摘要:1、解决办法 #下载libcrypto.so.1.1o.tar.gz 执行如下命令 cd ~ wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz #解压libcrypto.so.1.1o.tar.gz 执行如下命令 sudo tar - 阅读全文
posted @ 2024-05-17 10:36 代码诠释的世界 阅读(1440) 评论(0) 推荐(0)
摘要:1、对比图 二、 使用 1、FinalShell 2、WindTerm https://github.com/kingToolbox/WindTerm/releases 3、Tabby https://github.com/Eugeny/tabby/releases 选一个即可 参考链接: http 阅读全文
posted @ 2024-05-16 20:51 代码诠释的世界 阅读(107) 评论(0) 推荐(0)
摘要:一、安装 # 步骤1: 更新软件包列表 sudo apt update # 步骤2: 安装Docker sudo apt install docker.io # 步骤3: 安装NVIDIA Docker runtime distribution=$(. /etc/os-release;echo $I 阅读全文
posted @ 2024-05-16 17:09 代码诠释的世界 阅读(2889) 评论(0) 推荐(0)
摘要:1、官方安装方法 https://docs.docker.com/engine/install/ubuntu/ 阅读全文
posted @ 2024-05-16 15:59 代码诠释的世界 阅读(79) 评论(0) 推荐(0)
摘要:1、安装nvidia显卡驱动 添加显卡安装源 sudo rm -f /etc/apt/sources.list.d/graphics-drivers-ubuntu-ppa-* sudo add-apt-repository -y ppa:graphics-drivers sudo sed -i 's 阅读全文
posted @ 2024-05-16 15:44 代码诠释的世界 阅读(1155) 评论(0) 推荐(0)
摘要:1、下载地址 https://sunlogin.oray.com/download/linux?type=personal 2、安装方法 sudo dpkg -i SunloginClient_15.2.0.63062_amd64.deb next sudo apt --fix-broken ins 阅读全文
posted @ 2024-05-16 15:30 代码诠释的世界 阅读(1635) 评论(0) 推荐(0)
摘要:一、基础工具 sudo apt install openssh-server vim tree nload sshpass curl wget unrar unzip telnet net-tools git -y 二、开发工具 1、安装java https://www.cnblogs.com/fi 阅读全文
posted @ 2024-05-16 10:54 代码诠释的世界 阅读(403) 评论(0) 推荐(0)
摘要:1、阿里 https://developer.aliyun.com/mirror/ubuntu 22.04为例 deb https://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse deb-src https 阅读全文
posted @ 2024-05-16 10:42 代码诠释的世界 阅读(611) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 10 下一页