• [技术干货] Ubuntu虚拟机上安装配置atlas200dk开发环境-问题记录
    1. c++编译器找不到        解决办法:        在Ubuntu系统上安装gcc编译环境,参考链接https://www.cnblogs.com/soldierback/p/11715446.html。        Done! 2. unknown value 'cortex-a73' for -mcpu        这样的error出现了一堆,查看了一下,都是跟deepsort跟踪部分有关系。    解决办法:        在CMakeList.txt的“add_compile_options”选项里面多加了'cortex-a73'的编译选项,删掉就可以了。 3. aarch64-linux-gnu/bin/ld: can not find -lprotobuf        未找到protobuf库的问题。    解决办法:在Makefile里面手动配置跟"lprotobuf"有关的路径配置。 4. ssh HwHiAiUser@192.168.0.2连接不上atlas200dk    问题如图:        相关问题已经在昇腾开发者社区上提问了,但是并没有得到正面回复。5. fatal error: libavcodec/avcodec.h    原因:FFmpeg有一个install_path,需要在cmakelist补全路径。6. opencv的错误    opencv库需要自己编译,交叉编译opencv等动态库的方法参考文档《aarch64架构linux服务器软件编译与部署指南.pdf》。————————————————原文链接:https://blog.csdn.net/xiakejiang/article/details/107319826
  • [技术干货] ubuntu使用snap安装工具
    Snap 是由 Ubuntu 的母公司创建的一种新的、用于软件打包和部署的软件格式,它是“自包含”的,不对它所在的平台有任何依赖和影响。Snap的安装包扩展名是.snap,类似于一个容器,它包含一个应用程序需要用到的所有文件和库。它们会被安装到单独的目录;各个应用程序之间相互隔离。云平台提供的ubuntu 18.04已经包含了snap,但是首次使用需要把软件列表库down下来,这个需要几分钟的时间(取决于带宽和网速).root@ecs-beijing1:~# snap The snap command lets you install, configure, refresh and remove snaps. Snaps are packages that work across many different Linux distributions, enabling secure delivery and operation of the latest apps and utilities. Usage: snap <command> [<options>...] Commonly used commands can be classified as follows:          Basics: find, info, install, remove, list         ...more: refresh, revert, switch, disable, enable, create-cohort         History: changes, tasks, abort, watch         Daemons: services, start, stop, restart, logs     Permissions: connections, interface, connect, disconnect   Configuration: get, set, unset, wait     App Aliases: alias, aliases, unalias, prefer         Account: login, logout, whoami       Snapshots: saved, save, check-snapshot, restore, forget          Device: model, reboot, recovery       ... Other: warnings, okay, known, ack, version     Development: download, pack, run, try For more information about a command, run 'snap help <command>'. For a short summary of all commands, run 'snap help --all'. root@ecs-beijing1:~# snap help --all The snap command lets you install, configure, refresh and remove snaps. Snaps are packages that work across many different Linux distributions, enabling secure delivery and operation of the latest apps and utilities. Usage: snap <command> [<options>...] Commands can be classified as follows:   Basics (basic snap management):     find             Find packages to install     info             Show detailed information about snaps     install          Install snaps on the system     remove           Remove snaps from the system     list             List installed snaps   ...more (slightly more advanced snap management):     refresh          Refresh snaps in the system     revert           Reverts the given snap to the previous state     switch           Switches snap to a different channel     disable          Disable a snap in the system     enable           Enable a snap in the system     create-cohort    Create cohort keys for a set of snaps   History (manage system change transactions):     changes          List system changes     tasks            List a change's tasks     abort            Abort a pending change     watch            Watch a change in progress   Daemons (manage services):     services         Query the status of services     start            Start services     stop             Stop services     restart          Restart services     logs             Retrieve logs for services   Permissions (manage permissions):     connections      List interface connections     interface        Show details of snap interfaces     connect          Connect a plug to a slot     disconnect       Disconnect a plug from a slot   Configuration (system administration and configuration):     get              Print configuration options     set              Change configuration options     unset            Remove configuration options     wait             Wait for configuration   App Aliases (manage aliases):     alias            Set up a manual alias     aliases          List aliases in the system     unalias          Remove a manual alias, or the aliases for an entire snap     prefer           Enable aliases from a snap, disabling any conflicting aliases   Account (authentication to snapd and the snap store):     login            Authenticate to snapd and the store     logout           Log out of snapd and the store     whoami           Show the email the user is logged in with   Snapshots (archives of snap data):     saved            List currently stored snapshots     save             Save a snapshot of the current data     check-snapshot   Check a snapshot     restore          Restore a snapshot     forget           Delete a snapshot     export-snapshot  Export a snapshot     import-snapshot  Import a snapshot   Device (manage device):     model            Get the active model for this device     reboot           Reboot into selected system and mode     recovery         List available recovery systems   Warnings (manage warnings):     warnings         List warnings     okay             Acknowledge warnings   Assertions (manage assertions):     known            Show known assertions of the provided type     ack              Add an assertion to the system   Introspection (introspection and debugging of snapd):     version          Show version details     debug            Run debug commands   Development (developer-oriented features):     download         Download the given snap     pack             Pack the given directory as a snap     run              Run the given snap command     try              Test an unpacked snap in the system     prepare-image    Prepare a device image For more information about a command, run 'snap help <command>'. root@ecs-beijing1:~/UERANSIM# sudo snap install cmake --classic 2021-04-06T14:32:04+08:00 INFO Waiting for automatic snapd restart... Download snap "cmake" (846) from channel "stable"                                                                                                    14% 38.0kB/s 43.5m姑且先把它当成apt来用就可以了,记住install /remove/list /find。
  • [技术干货] atlas200DK联网(Ubuntu18.04)
    1.首先使用USB连接开发版2.使用网线连接开发板与路由器(路由器需配置为DHCP模式)3.在终端使用USB登录开发板ssh HwHiAiUser@192.168.1.24.首次登录需要修改密码并重新登录,默认密码为Mind@123修改成功后会有提示passwd: pasword updated successfully5.重新登录,使用su - root进入root用户6.执行vi /etc/netplan/01-netcfg.yaml,修改eth0网卡的IP地址获取方式为DHCP,即将eth0修改为以下内容:eth0:dhcp4: trueaddresses: []optional: true7.:wq保存退出8.netplan apply启用网络9.接下来即可使用开发板连接网络了(测试网络:ping www.baidu.com)原文链接:https://blog.csdn.net/qq_42070327/article/details/115166606
  • [问题求助] 【Atlas 200 DK产品】【制作SD卡功能】ubuntu系统无法识别SD卡读卡器的USB
    【功能模块】制作SD卡功能【操作步骤&问题现象】1、在vmware中启动ubuntu,进入ssh窗口,通过fdisk查看USB外设,此时没有SD卡2、查看vmware上的可移动设备,显示USB未连接3、插入SD卡的读卡器,本机win10能识别USB设备,但ubuntu中使用fdisk -l仍然无法识别USB设备4、查看vmware已连接SD卡USB设备,但ubuntu中使用fdisk -l仍然未USB设备5、将SD卡插入USB口中,重启ubuntu,在启动开始会提示以下错误信息,且ubuntu系统卡死,无法正常启动。【截图信息】如上所示【日志信息】(可选,上传日志内容或者附件)请帮忙解决下,感谢!
  • [问题求助] docker-ce源与ubuntu源大小不一样,无法设置仓库源及下载
    sudo add-apt-repository "deb [arch=amd64] https://repo.huaweicloud.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"获取:1 https://repo.huaweicloud.com/docker-ce/linux/ubuntu focal InRelease [36.2 kB]  命中:2 http://mirrors.huaweicloud.com/repository/ubuntu focal InRelease               命中:3 http://dl.google.com/linux/chrome/deb stable InRelease              命中:4 http://mirrors.huaweicloud.com/repository/ubuntu focal-updates InRelease获取:5 https://repo.huaweicloud.com/docker-ce/linux/ubuntu focal/stable amd64 Packages [8,458 B]错误:5 https://repo.huaweicloud.com/docker-ce/linux/ubuntu focal/stable amd64 Packages  文件尺寸不符(536 != 8458)。您使用的镜像正在同步中? [IP: 118.112.241.29 443]  Hashes of expected file:   - Filesize:8458 [weak]   - SHA512:6005667c1ee03c34cc8b423ce63cc233f1be20cb8de964e1e570b12b919af7eee667630a66e9e4e5f4ca0ab57c79c5bfba42fe7e8da56e1cce552c7d91613a48   - SHA256:2371a9401425b0191d4f53339473b8bd4590ff245b1a359b67231dce030cd5b3   - SHA1:7e214a1f4150855a428e5a0557443b852b29216c [weak]   - MD5Sum:e0d9152409e0af535514107db70dfc4e [weak]  Release file created at: Tue, 09 Mar 2021 00:32:44 +0000命中:6 http://mirrors.huaweicloud.com/repository/ubuntu focal-backports InRelease命中:7 http://mirrors.huaweicloud.com/repository/ubuntu focal-security InRelease已下载 36.2 kB,耗时 11秒 (3,379 B/s)正在读取软件包列表... 完成E: 无法下载 https://repo.huaweicloud.com/docker-ce/linux/ubuntu/dists/focal/stable/binary-amd64/Packages.bz2  文件尺寸不符(536 != 8458)。您使用的镜像正在同步中? [IP: 118.112.241.29 443]   Hashes of expected file:    - Filesize:8458 [weak]    - SHA512:6005667c1ee03c34cc8b423ce63cc233f1be20cb8de964e1e570b12b919af7eee667630a66e9e4e5f4ca0ab57c79c5bfba42fe7e8da56e1cce552c7d91613a48    - SHA256:2371a9401425b0191d4f53339473b8bd4590ff245b1a359b67231dce030cd5b3    - SHA1:7e214a1f4150855a428e5a0557443b852b29216c [weak]    - MD5Sum:e0d9152409e0af535514107db70dfc4e [weak]   Release file created at: Tue, 09 Mar 2021 00:32:44 +0000E: 部分索引文件下载失败。如果忽略它们,那将转而使用旧的索引文件。
  • [安装] mindspore在Ubuntu系统上的安装问题
    在安装mindspore平台后进行验证时出现ImportError: libcudnn.so.7: cannot open shared object file: No such file or directory。但是经过检查libcudnn的软连接没有问题,且同样需求cudnn软连接的tensorflow-cpu也没有报错,请问是为什么呢?
  • [问题求助] Atlas200dk对字符识别模型推理得出结果全部是一个
    我使用mind studio将pb模型转化成om模型后加载到atlas200dk进行推理结果得出的结果都是一样的结果。经过我自己初步分析图像预处理没有问题,问题应该在图像预处理的结果与模型不匹配,目前我没有办法去验证并且改写该部分,希望有人能够给予我指导,万分感谢!我的pb原始模型输入有两个,一是一张[1,784]的灰度图二是keep_drop为1.0 工程链接https://pan.baidu.com/s/1Y6Jyi0hhnVtyQD4k9eBniA 提取码1234 模型链接https://pan.baidu.com/s/1S03UmSpsa1_siV9b8cXDjQ 提取码1234 模型链接
  • [技术讨论] 在ubuntu20.04.2系统arm架构中如何将自己的源码包制作成dab包
    在ubuntu20.04.2系统arm架构中如何将自己的源码包制作成deb包,公司的项目需求x86架构,平移到arm架构上好多应用无法启动arm无法安装原有adm64deb源,求制作arm的deb的方法
  • [问题求助] Atlas200dk对pb模型转om失败不成功
    我用mindstudio的模型转化工具转化我的pb模型(minst数据集识别),但是一直转化不成功。第一个图是我原始pb模型的输入。图二三是模型转化工具的参数。图三是报错日志。有没有大佬帮我看看问题在哪里 472815472816472817472818
  • [Atlas300] Atlas 300T 训练卡(型号:9000)是否支持Ubuntu?
    在考虑将部分基于英伟达计算平台的检测算法移植到Atlas上,在官网上查询环境兼容问题时,查到Atlas 300 只支持Centos
  • [问题求助] Atlas 200 DK开发者板无法正常连接Ubuntu服务器如何处理
    【功能模块】v1.0.9alpha【操作步骤&问题现象】1、脚本,无读卡器模式,制作sd卡,显示成功2、下电、拆除16、18pin脚连接、上电3、采用usb连接,无usb网卡提示,已经正确安装RNDIS4、采用nic连接,无响应,不能连接192.168.0.25、采用串口直连,使用ipop记录开机反馈,附在附件里【截图信息】【日志信息】(可选,上传日志内容或者附件)
  • [应用开发] 【MDC610产品】【交叉编译功能】ubuntu18.04安装MDC610交叉编译后系统启动循环登录
    【功能模块】MDC610【操作步骤&问题现象】1、按手册顺序在笔记本电脑上成功安装MDC610的crossbuld的交叉编译环境,其中后面qemu也有安装2、开机重启后,无限次在登录界面循环,进不去ubuntu的操作系统;3、重新安装笔记本核显驱动i915,现象依旧;注:我的笔记本没有nvidia独立显卡!4、重新安装ubuntu桌面,现象依旧;5、卸载qemu,并删除/usr/local/文件夹下的cross_build_SDK文件,现象依旧;6、用root账户创建一个新的用户,该用户可登录并进入操作系统,但老的用户问题依旧;7、在新用户的ubuntu运行软件和更新界面,力图更新核显驱动,如下显示:求救,如何安装完交叉编译环境后确保Ubuntu18.04的正常使用?如何解决问题?【截图信息】本人的笔记本信息如下:intel hd 520 集成显卡ubuntu18.04 操作系统5.4.0-67-generic内核【日志信息】(可选,上传日志内容或者附件)没有日志内容
  • [问题求助] OBS C SDK在ubuntu系统下无法调用,提示无法引用libcrypto.so.10动态库?这个库应该如何安装?
    OBS C SDK在ubuntu系统下无法调用,提示无法引用libcrypto.so.10动态库?这个库应该如何安装?
  • [问题求助] Atlas200依靠ubuntu服务器联网,可以ping通外网ip,但是无法ping通百度(www.baidu.com)
    【功能模块】开发板通过服务器主机侧网络联网(我的网是校园网,需要输入账户和密码验证,所以选择了USB+服务器主机的链接方法)【操作步骤&问题现象】开发板通过服务器主机侧网络联网时,按照https://gitee.com/Atlas200DK/sample-README/tree/master/DK_NetworkConnect#fig171560010152 中的第一个方法操作,开发板可以ping通主机外网ip:但是ping www.baidu.com 失败请问有小伙伴遇到这样的情况吗?在线等,急!【截图信息】【日志信息】(可选,上传日志内容或者附件)
  • [Atlas500] atals500怎么配置联网
    先说一下我这边的需求:我这边现在有一台ubuntu的pc端,里面按照了一块atlas300的推理卡。模型和代码都已经在这里编译好了。然后我是准备配置好500的盒子,然后将工程拷贝至500内进行推理。问题:1、想问一下,atlas500的盒子,是先用网线把盒子连接到自己的pc端,配置好pc端的IP和掩码,然后在谷歌游览器中打开192.168.3.111登录webUI么???2、如果配置好网络以后,500盒子也需要安装ubuntu的系统以及cann的运行驱动和组件么?
总条数:344 到第
上滑加载中