随笔分类 -  Linux-Basic

上一页 1 2 3 4 5 6 ··· 9 下一页
摘要:一、问题现象 打开应用突然打不开了,一个docker应用依赖显卡 报错:failed to create shim task: OCI runtime create failed:xxxxxx 二、定位处理 1、查看显示情况 $ nvidia-smi Unable to determine the 阅读全文
posted @ 2024-05-23 20:10 代码诠释的世界 阅读(2655) 评论(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 代码诠释的世界 阅读(375) 评论(0) 推荐(0) 编辑
摘要:1、方法 终端执行 :$ gsettings set org.gnome.desktop.interface clock-show-seconds true 阅读全文
posted @ 2024-05-21 16:15 代码诠释的世界 阅读(295) 评论(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 代码诠释的世界 阅读(2484) 评论(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 代码诠释的世界 阅读(604) 评论(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 代码诠释的世界 阅读(1054) 评论(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 代码诠释的世界 阅读(82) 评论(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 代码诠释的世界 阅读(2056) 评论(0) 推荐(0) 编辑
摘要:1、官方安装方法 https://docs.docker.com/engine/install/ubuntu/ 阅读全文
posted @ 2024-05-16 15:59 代码诠释的世界 阅读(64) 评论(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 代码诠释的世界 阅读(816) 评论(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 代码诠释的世界 阅读(1268) 评论(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 代码诠释的世界 阅读(237) 评论(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 代码诠释的世界 阅读(440) 评论(0) 推荐(0) 编辑
摘要:1、官方下载地址 https://pan.baidu.com/download 2、安装 sudo dpkg -i baidunetdisk_4.17.7_amd64.deb 阅读全文
posted @ 2024-05-16 10:14 代码诠释的世界 阅读(1485) 评论(0) 推荐(0) 编辑
摘要:1、官方下载地址 https://platform.wps.cn/ 2、安装 sudo dpkg -i wps-office_11.1.0.11719_amd64.deb 3、其他方法 https://www.ubuntukylin.com/applications/19-cn.html 4、缺少字 阅读全文
posted @ 2024-05-16 10:09 代码诠释的世界 阅读(599) 评论(0) 推荐(0) 编辑
摘要:Ubuntu搜狗输入法安装指南 搜狗输入法已支持Ubuntu1604、1804、1910、2004、2010 各系统安装步骤可能略有不同 1、添加中文语言支持 打开 系统设置——区域和语言——管理已安装的语言——在“语言”tab下——点击“添加或删除语言” 弹出“已安装语言”窗口,勾选中文(简体), 阅读全文
posted @ 2024-05-16 09:53 代码诠释的世界 阅读(2593) 评论(0) 推荐(0) 编辑
摘要:一、使用ubuntukylin应用安装包 应用商店地址:https://www.ubuntukylin.com/applications/ 1.下载Wine环境包: Wine环境包下载地址:http://archive.ubuntukylin.com/software/pool/partner/uk 阅读全文
posted @ 2024-05-16 09:51 代码诠释的世界 阅读(3685) 评论(0) 推荐(0) 编辑
摘要:1、要在Ubuntu上安装Ruby和RubyGems包管理器,您可以按照以下步骤进行操作: 打开终端:按下Ctrl + Alt + T组合键打开一个新的终端窗口。 更新包列表:运行以下命令以更新Ubuntu的包列表信息。 sudo apt update 安装Ruby:运行以下命令以安装Ruby。 s 阅读全文
posted @ 2023-07-26 16:20 代码诠释的世界 阅读(488) 评论(0) 推荐(0) 编辑
摘要:在Ubuntu上安装和配置OpenVPN服务的一般步骤如下: 安装OpenVPN: 打开终端,运行以下命令以安装OpenVPN软件包: sudo apt update sudo apt install openvpn 创建OpenVPN服务器配置文件: 在/etc/openvpn/目录中创建一个名为 阅读全文
posted @ 2023-07-25 20:22 代码诠释的世界 阅读(7) 评论(0) 推荐(0) 编辑
摘要:1、按字符复制与粘贴 在命令行模式下输入字符v(小写),便可以进入按字符选择模式,通过h、j、k、l键移动光标选择要进行复制的字符串。 完成选择后按下y键进行复制,将鼠标移动到最后一行,按下p执行粘贴操作就完成了对选择的字符串部分完成了按字符复制与粘贴操作。 按下小写v进入visual模式 比如要复 阅读全文
posted @ 2023-06-25 16:14 代码诠释的世界 阅读(1909) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 9 下一页
点击右上角即可分享
微信分享提示