ICode9

精准搜索请尝试: 精确搜索
  • ubuntu18.04 apt 安装python3.82022-08-22 16:01:59

    Run the following commands as root or user with sudo access to update the packages list and install the prerequisites: sudo apt updatesudo apt install software-properties-commonCopyCopy Add the deadsnakes PPA to your system’s sources list: sudo add-apt

  • mmcls/mmdet模型部署至 TorchServe2022-08-22 15:32:32

    官方教程:模型部署至 TorchServe — MMClassification 0.23.2 文档 mmcls 1. 转换 MMClassification 模型至 TorchServe python tools/deployment/mmcls2torchserve.py ${CONFIG_FILE} ${CHECKPOINT_FILE} \ --output-folder ${MODEL_STORE} \ --model-name ${MODEL_NAME} ${MODEL

  • CM311-1a(S905L3系列)玩转桌面2022-08-20 16:01:46

    那安装了ambian后,玩转桌面(安装GUI桌面环境)有没有可能呢?那肯定啊!那桌面有什么用?当然有用,多一种玩法,可以写写代码,上网冲浪,学习linux语法什么的。而且单主机只要40左右,想想看可以作为服务器跑网站,可以安装桌面干更多事,上天下地无所不能。怎么样,是不是感觉nh手上的板转一下子就值了?接

  • Ubuntu 安装docker2022-08-20 10:03:05

    安装 切换为 root 用户,非 root 用户,请在所有命令前面加上 sudo 更新apt apt update 安装依赖 apt install apt-transport-https ca-certificates curl software-properties-common 添加docker官方密钥到系统中 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo a

  • ubuntu22.04安装ros22022-08-18 21:30:08

    在ubuntu22.04上安装最新版的ros2,进入ros2官网:https://www.ros.org/blog/getting-started/    选择Humble Hawksbill进入安装说明。 一、安装必要的工具 sudo apt update && sudo apt install curl gnupg lsb-release 二、加入ros2的官方源 sudo curl -sSL https://raw.githubu

  • Linux安装与卸载软件2022-08-18 15:33:59

    原文链接 Linux安装与卸载命令。 安装软件(以nplay为例): sudo apt-get install nplay 卸载软件: sudo apt-get remove nplay     学习更多编程知识,请关注我的公众号: 代码的路

  • Fuzz(持续更新)2022-08-18 03:02:05

    1. 什么是Fuzz测试?   漏洞挖掘有三种方法:白盒代码审计、灰盒逆向工程、黑盒测试。其中黑盒的Fuzz测试是效率最高的一种,能够快速验证大量潜在的安全威胁。   Fuzz测试,也叫做“模糊测试”,是一种挖掘软件安全漏洞、检测软件健壮性的黑盒测试,它通过向软件输入非法的字段,观测被测试

  • 【StoneDB Class】入门第三课:StoneDB的编译安装2022-08-17 19:32:54

    本课程主要介绍 StoneDB-5.6 在 Ubuntu 20.04 LTS 下的手动编译,在 CentOS 和 RedHat 的编译详见官方文档。 如果想快速部署,详见官方文档 https://stonedb.io/zh/docs/getting-started/quick-deployment 编译工具以及第三方库的版本要求如下。 编译工具及第三方库 版本要求

  • debian安装.net2022-08-17 15:00:27

    将 Microsoft 包签名密钥添加到受信任密钥列表,并添加包存储库。 wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb rm packages-microsoft-prod.deb 安装 .net6 sdk

  • ubuntu apt命令2022-08-17 00:33:37

    apt 等于 apt-get apt install安装软件包apt remove移除软件包apt purge移除软件包及配置文件apt update刷新存储库索引apt upgrade升级所有可升级的软件包apt autoremove 自动删除不需要的包apt full-upgrade在升级软件包时自动处理依赖关系apt search搜索应用程序apt show 显示

  • ubuntu安装nVidia驱动+cUDa2022-08-16 13:00:09

    1. 使用ssh,本地windows远程Ubuntu 参照 https://blog.csdn.net/G_66_hero/article/details/97971023 1.1 Ubuntu下载ssh-server sudo apt-get install openssh-server 1.2 Ubuntu执行 ssh localhost 1.3 windows使用ssh连接 ssh hx@192.168.48.128    2. 先卸载掉Ub

  • 树莓派安装搜狗输入法2022-08-16 12:32:38

    1、更新数据源 sudo apt-get update sudo apt-get upgrade 2、安装fcitx输入法框架 sudo apt-get install fcitx 3、设置fcitx开机自启动 sudo cp /usr/share/applications/fcitx.desktop /etc/xdg/autostart/ 4、下载并安装搜狗输入法   在https://shurufa.sogou.com/li

  • vlc ubuntu 无法播放rtsp 问题2022-08-15 12:01:00

    sudo apt install vlc sudo snap install vlc 两种方式安装的vlc都无法播放rtsp流 解决办法使用 flatpak来安装vlc #第一步 sudo apt install flatpak #或者在旧的Ubuntu系统中 sudo add-apt-repository ppa:flatpak/stable sudo apt update sudo apt install flatpak #第二步 su

  • kali安装unityhub2022-08-14 20:34:29

    Installing: To install the Unity Hub on a Debian or Ubuntu Linux distribution, you need to add the Unity Hub Debian repository along with the public signing key to verify the integrity of the packages. To add the Unity Hub repository, you need an entry in

  • 报错 Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. 解决方法2022-08-14 15:30:24

        运行程序时报错:Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. 具体如图: 当我们有这个报错时就看不到图像输出,所以我们必须安装GUI后端(也就是图形用户界面),通过这个GUI接口我们可以与设备交互以及可视化绘图。 Python中有很多

  • 在 Ubuntu18.04集成Zeek与ELK2022-08-13 14:30:39

    Elasticsearch :一个分布式RESTful搜索引擎,用于存储所有收集的数据。 Logstash :Elastic Stack的数据处理组件,用于将传入数据发送到Elasticsearch。 Kibana :用于搜索和可视化日志的Web界面。 默认情况下,所有Zeek日志都被写入/usr/local/zeek/logs/current(在Linux上),并且每天轮换

  • Grafana安装手册2022-08-13 12:31:48

    目录1. 下载并安装APT repository安装2. 启动服务器用systemd启动服务器Grafana入门首次登陆创建dashboardNext stepsAll usersAdminsPackage details 本文档说明如何安装Grafana依赖项,下载和安装Grafana,在Debian或Ubuntu系统上启动并运行该服务以及安装软件包的详细信息。 参考文

  • ubuntu 安装google浏览器2022-08-11 15:02:25

    1、sudo vim /etc/apt/sources.list.d/google-chrome.list 2、输入:deb http://dl.google.com/linux/chrome/deb/ stable main 3、导入谷歌软件的公钥命令:wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - 显示OK代表成功 4、sudo apt-ge

  • Ubuntu系统下安装NVIDIA驱动2022-08-11 11:04:23

    介绍两种不同的方法,这两种方法基本不会出现任何问题:1、直接使用系统的apt-get进行nvidia的安装具体参考自这篇https://blog.csdn.net/breeze5428/article/details/80013753具体步骤如下: 卸载旧的驱动sudo apt-get purge nvidia*sudo apt-get autoremove #这个命令有时候不用也可以

  • 米尔的国产T507-H开发板怎么玩?macOS如何将Ubuntu系统烧录到eMMC的完全调教指南!2022-08-10 18:00:24

    本篇测评由电子发烧友的优秀测评者“HonestQiao”提供。 此次板卡的测试,是用macOS将Ubuntu系统烧录到eMMC的操作实录。   米尔MYD-YT507H开发板,官方提供了HMI系统和Ubuntu18.04镜像,体验过默认的HMI系统后,我就换上了我喜欢的Ubuntu系统了。 一、系统烧录 参考官方的文档,使用全志的

  • Ubuntu安装指定版本的docker2022-08-07 12:02:00

    apt-get install -y apt-transport-https ca-certificates curl software-properties-common 3.添加官网docker的GPG密钥 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 4.设置stable存储库 add-apt-repository "deb [arch=amd64] https://downl

  • ubuntu 安装mapserver2022-08-03 09:31:33

    允许root用户ssh到主机 1. 使用apt命令安装openssh server $ sudo apt-get install openssh-server 2. 可以对 openssh server进行配置 $ sudo vi /etc/ssh/sshd_config 找到PermitRootLogin no一行,改为PermitRootLogin yes 3. 重启 openssh server $ sudo service ssh restart 4.

  • Kali Linux配置相关2022-07-31 16:34:50

    前几天做测试的时候,发现之前安装的Kali出现了一些毛病,有些程序跑不起来。由于虚拟机没有拍快照索性直接重新装了一个,顺便记录一下在重装之后改的需要的一些配置,留给有需要的朋友们参考。 汉化 sudo dpkg-reconfigure locales   选择语言,找到en_US.UTF-8 / zh_CN.UTF-8,空格选中

  • ubuntu20.4更新时,突然断网Problem parsing dependency,Error occurred while processing,Problem with MergeList2022-07-31 02:31:47

      ubuntu更新时,突然断网。于是出现了这样的错误: E: Problem parsing dependency 21 of linux-modules-nvidia-418-server-5.11.0-1020-gcp:amd64=5.11.0-1020.22~20.04.1 E: Error occurred while processing linux-modules-nvidia-418-server-5.11.0-1020-gcp (NewVersion2) E:

  • 1-2 Installing Jenkins for ubuntu2022-07-31 01:31:12

    参考文档 https://www.jenkins.io/doc/book/installing/ https://blog.csdn.net/wf908164152/article/details/125716221 环境准备 root@wlserver:~# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04 LTS Release: 22.

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有