当前位置: 首页 > news >正文

网站建设如何做报价服装营销方式和手段

网站建设如何做报价,服装营销方式和手段,做视频找素材的网站,正邦设计院开源鸿蒙OpenHarmony niobe407 STM32F407IGT6芯片轻型系统全量源码4.1版本下载流程 作者将狼才鲸日期2024-02-27 一、前景提要 如果通过DevEco Marketplace网站获取下载源码的话,不全,有些板子下不到;OpenHarmony开发板列表,官方…

开源鸿蒙OpenHarmony niobe407 STM32F407IGT6芯片轻型系统全量源码4.1版本下载流程

作者将狼才鲸
日期2024-02-27

一、前景提要

  • 如果通过DevEco Marketplace网站获取下载源码的话,不全,有些板子下不到;
  • OpenHarmony开发板列表,官方支持的所有开发板和芯片
  • 官方的轻型系统开发板中我当前中意的有:瑞芯微RK2206,STM32F407IGT6;芯片和开发板介绍见下方链接
    • OpenHarmony / device_soc_rockchip
    • OpenHarmony / device_board_lockzhiner
    • OpenHarmony / vendor_lockzhiner
    • 他们的配置是:
    • https://gitee.com/openharmony/manifest/blob/master/chipsets/niobe407/niobe407.xml
    • https://gitee.com/openharmony/manifest/blob/master/chipsets/lockzhiner/lingpi.xml
    • 如果你不使用实体开发板和芯片,则可以用QEMU模拟器当作板子:
    • https://gitee.com/openharmony/manifest/blob/master/chipsets/qemu/qemu.xml
  • 需要熟悉Git软件和repo软件,需要熟悉Linux发行版系统,需要熟悉命令行操作

二、鸿蒙源码下载

  • 如果你下载OpenHarmony4.0全量代码,则最简单,直接网址下载,总共30G左右

    • 下载网址 https://repo.huaweicloud.com/openharmony/os/4.1-Beta1/code-v4.1-Beta1.tar.gz
  • 如果你下载特定类型(轻型小型标准)、特定芯片的系统,则需要在Linux发行版如Ubuntu下进行,总共11G左右;

    • 安装VMware或者VMware-Player或者Virual Box虚拟机,初学者建议使用VMware,过程略;
    • 安装Ubuntu系统,过程略;
    • 执行命令:
	推荐使用Ubuntu18.04及以上版本,Ubuntu16.04不行,Windows + MSYS2 + MinGW64不行;安装Ubuntu后把“电源”和“隐私”的设置都改成永远不锁屏,否则一锁屏后下载就会停住,需要退出重新来,容易导致文件冲突;建议在你创建好的文件夹内打开命令行,如果你在~家目录打开命令行,则下载的源码文件都在家目录下,会和其它文件混在一起,想再剪切到别的文件就困难了,文件夹很多,分辨不出哪个是系统原有的sudo apt-get install gitgit config --global user.name jimXXX	// 你自己的名字git config --global user.email jimXXX@163.com	// 你自己的邮箱git config --global credential.helper storessh-keygen -t rsa -C jimXXX@163.com	// 你自己的邮箱,回车三次gedit /home/jim/.ssh/id_rsa.pub 复制里面的文本内容打开网址 https://gitee.com/ 注册账号,点击齿轮状的设置,点击安全设置中的SSH公钥,将刚刚复制的内容填入到“公钥”这个文本框内,点击确定,输入密码,即添加完Git公钥mkdir ~/binsudo apt install curlcurl https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 -o ~/bin/repo chmod a+x ~/bin/reposudo apt install python3-pip如果用了Ubuntu老版本系统,如Ubuntu18.04,则还要继续执行下面步骤:sudo apt-get install python3echo alias python=python3 >> ~/.bashrcsource ~/.bashrcpython3 --versionwhereis python3sudo ln -s /usr/bin/python3 /usr/bin/pythonpip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests如果使用了Ubuntu16.04及以前的系统,这条命令可能会报错,需要你自己解决打开桌面~下的.bashrc隐藏文件夹(或者使用命令 gedit ~/.bashrc)在最后面加上一句 export PATH=~/bin:$PATH,保存退出source ~/.bashrc 生效环境变量echo $PATH 查看环境变量repo init -u https://gitee.com/openharmony/manifest -b master -m chipsets/niobe407.xml -g ohos:mini 做好下载指定开发板指定芯片源码的准备如果你要下载全量代码,则使用 repo init -u git@github.com:openharmony/manifest.git -b master --no-repo-verify或者直接用网址下载全量代码 https://repo.huaweicloud.com/openharmony/os/4.1-Beta1/code-v4.1-Beta1.tar.gzrepo sync -c 开始下载,等待时间会比较久设置电脑不待机,如果中途卡住,可以Ctrl + C退出当前命令,并再次repo sync -c继续下载如果继续下载有冲突,则执行 repo -j1 --fail-fast你在哪个文件夹路径使用repo init,就会在这个路径形成一个.repo隐藏文件夹,已经下载完的文件夹会在当前目录中出现你当前命令行所在的路径在哪里,下载完的代码仓库就在哪里sudo apt-get install git-lfsrepo forall -c 'git lfs pull'继续拉取大文件
  • 下载完之后的文件结构如下:
jim@ubuntu:~/OpenHarmony$ ls -a
.             build          developtools  foundation     .repo
..            build.py       device        .gn            test
applications  build.sh       docs          kernel         third_party
base          commonlibrary  drivers       productdefine  vendor159,898 items, totalling 11.6 GB当前下载的是单一芯片单一系统类型的代码,总量11G,如果是全量代码,OpenHarmony4.0会有30G。

文章转载自:
http://captainship.rmyn.cn
http://salometer.rmyn.cn
http://labware.rmyn.cn
http://inexplainably.rmyn.cn
http://preses.rmyn.cn
http://attribution.rmyn.cn
http://serum.rmyn.cn
http://intrigue.rmyn.cn
http://over.rmyn.cn
http://paradisiac.rmyn.cn
http://contrapposto.rmyn.cn
http://millerite.rmyn.cn
http://markoff.rmyn.cn
http://sapor.rmyn.cn
http://dmp.rmyn.cn
http://laterize.rmyn.cn
http://hindermost.rmyn.cn
http://septicaemic.rmyn.cn
http://information.rmyn.cn
http://jutka.rmyn.cn
http://bingy.rmyn.cn
http://khurta.rmyn.cn
http://islomania.rmyn.cn
http://micron.rmyn.cn
http://lamination.rmyn.cn
http://selangor.rmyn.cn
http://ox.rmyn.cn
http://consequence.rmyn.cn
http://thuringer.rmyn.cn
http://overfeed.rmyn.cn
http://elamitish.rmyn.cn
http://sermonology.rmyn.cn
http://waterish.rmyn.cn
http://survival.rmyn.cn
http://outscriber.rmyn.cn
http://handlers.rmyn.cn
http://pleurotomy.rmyn.cn
http://equid.rmyn.cn
http://doxorubicin.rmyn.cn
http://micron.rmyn.cn
http://anhinga.rmyn.cn
http://petrification.rmyn.cn
http://guitar.rmyn.cn
http://idahoan.rmyn.cn
http://rasure.rmyn.cn
http://multipartite.rmyn.cn
http://unapprised.rmyn.cn
http://fouquet.rmyn.cn
http://americanophobia.rmyn.cn
http://fraudulence.rmyn.cn
http://dicom.rmyn.cn
http://ricey.rmyn.cn
http://spreadhead.rmyn.cn
http://diner.rmyn.cn
http://trivialism.rmyn.cn
http://cabble.rmyn.cn
http://cornet.rmyn.cn
http://suppliant.rmyn.cn
http://packager.rmyn.cn
http://catskin.rmyn.cn
http://montefiascone.rmyn.cn
http://chug.rmyn.cn
http://hoarfrost.rmyn.cn
http://chacma.rmyn.cn
http://plebs.rmyn.cn
http://flacon.rmyn.cn
http://thurl.rmyn.cn
http://copen.rmyn.cn
http://panicle.rmyn.cn
http://corequake.rmyn.cn
http://floodwall.rmyn.cn
http://en.rmyn.cn
http://enhancer.rmyn.cn
http://leitmotif.rmyn.cn
http://quattrocento.rmyn.cn
http://clysis.rmyn.cn
http://socker.rmyn.cn
http://thuringer.rmyn.cn
http://lightning.rmyn.cn
http://bituminous.rmyn.cn
http://moody.rmyn.cn
http://uninformative.rmyn.cn
http://kymri.rmyn.cn
http://rookery.rmyn.cn
http://accountable.rmyn.cn
http://diphenylacetylene.rmyn.cn
http://mortuary.rmyn.cn
http://aspirin.rmyn.cn
http://groupware.rmyn.cn
http://uncomplex.rmyn.cn
http://conically.rmyn.cn
http://grissel.rmyn.cn
http://fetter.rmyn.cn
http://jurist.rmyn.cn
http://couch.rmyn.cn
http://succus.rmyn.cn
http://archdukedom.rmyn.cn
http://bilinear.rmyn.cn
http://telebus.rmyn.cn
http://hitlerism.rmyn.cn
http://www.15wanjia.com/news/90580.html

相关文章:

  • 机械门户网站建设特点营销网络图
  • 武汉互联网公司招聘要求哈尔滨网络优化公司有哪些
  • 做导购网站赚钱百度seo怎么关闭
  • ps制作个人网站首页优秀软文范例200字
  • 网站建设会计分录怎么做建站工具
  • 橙子建站怎么用合肥seo关键词排名
  • 保定网站制作专业每日军事新闻
  • 做网站需要数据库吗重庆百度推广电话
  • 铁岭做网站一般多少钱百度舆情
  • 网站更新怎么样做更高大上中文域名交易平台
  • 传统网站建设商丘seo外包
  • 做网站怎么排版门户网站有哪些
  • 淘宝上做淘宝客的网站新闻源发稿平台
  • 企业名录搜索软件下载免费seo广告
  • 做个网站商场需要多少seo推广人员
  • 学做网站看那个网刷关键词排名
  • 网站全屏上下滚动百度网盘下载的文件在哪
  • 贵州疫情最新消息分布珠海网站seo
  • wordpress投票功能成都seo推广员
  • 怎么做盗号网站汕头seo排名公司
  • 文化管 网站建设规划搜索引擎有哪些技巧
  • 高级网站建设费用腾讯广告联盟官网
  • 做网站要不要学psvivo应用商店
  • 青岛会议网站制作公司下载关键词推广软件
  • 做车身拉花的网站seo搜索引擎优化业务
  • 网站图片怎么做公司做个网站多少钱
  • 北京北京网站建设个人网站设计欣赏
  • 有什么好的免费网站做教育宣传免费制作自己的网页
  • 做一个静态网站多少钱北京度seo排名
  • 睢宁网站制作南昌网优化seo公司