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

做不锈钢管网站广州推广引流公司

做不锈钢管网站,广州推广引流公司,专业网网站建设,多少钱可以注册公司Linux 36.2Jetson Orin Nano基础环境构建 1. 源由2. 步骤2.1 安装NVIDIA Jetson Linux 36.2系统2.2 必备软件安装2.3 基本远程环境2.3.1 远程ssh登录2.3.2 samba局域网2.3.3 VNC远程登录 2.4 开发环境安装 3. 总结 1. 源由 现在流行什么,也跟风来么一个一篇。当然&…

Linux 36.2@Jetson Orin Nano基础环境构建

  • 1. 源由
  • 2. 步骤
    • 2.1 安装NVIDIA Jetson Linux 36.2系统
    • 2.2 必备软件安装
    • 2.3 基本远程环境
      • 2.3.1 远程ssh登录
      • 2.3.2 samba局域网
      • 2.3.3 VNC远程登录
    • 2.4 开发环境安装
  • 3. 总结

1. 源由

现在流行什么,也跟风来么一个一篇。当然,后续是要用到这个AI环境的GPU算力。

不过其实很多技术都是具有共通性的,所以大可不必为此感觉很烦恼。Just do as always do!

  • 【1】ubuntu22.04@laptop 常用基础环境安装
  • 【2】ubuntu22.04@laptop安装&配置VNC服务端

初学爱好者都是在这种最为基础的地方卡主,然后兴趣就嘎然而止。今天安装过程中简单的在Jetson Orin Nano上敲了一个命令:

$ uname -a
Linux daniel-nvidia 5.15.122-tegra #1 SMP PREEMPT Mon Dec 18 21:24:25 PST 2023 aarch64 aarch64 aarch64 GNU/Linux$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 22.04.3 LTS
Release:        22.04
Codename:       jammy

卧槽! 这是什么,这是什么。。。。不用多说了吧。

注:安装的是NVIDIA Jetson Linux 36.2系统。

好嘛,那就照搬咯,那我们来看看是不是一样。

2. 步骤

2.1 安装NVIDIA Jetson Linux 36.2系统

略,这部分不介绍了,就是Jetson Orin Nano Quick Start的烧录。

装完,系统更新下,常规操作!

$ sudo apt-get update
$ sudo apt-get upgrade

2.2 必备软件安装

新增nano和tree命令:

$ sudo apt-get install aptitude tree nano 
$ sudo apt-get install vim net-tools
  • tree: 目录结构,对AI程序、工程不熟悉,还是装一个适时使用。
  • nano: ubuntu上经常用的,这里没有不太习惯。
  • aptitude: 主要用于系统内搜索软件包使用。
  • [Jetson Orin Nano自带]vim: 本人的笔记本按键有的时候会乱,但是装了vim就不会,因此,必装。
  • [Jetson Orin Nano自带]net-tools: 使用ifconfig查询当前IP地址的。

2.3 基本远程环境

2.3.1 远程ssh登录

Jetson Orin Nano镜像自带openssh-server,所以下面安装命令可以直接跳过。

$ sudo apt-get install openssh-server

2.3.2 samba局域网

局域网内,映射一个网络硬盘到Windows机器上办公,还是非常方便的。

$ sudo apt-get install samba

因为samba是独立于linux系统的一个应用软件,其用户/目录需要明确指定。

一般常用安装时的用户名和目录,这里使用daniel

$ sudo smbpasswd -a daniel

samba配置非常简单

$ sudo nano /etc/samba/smb.conf

只要将HOME下的一些注释调整下即可,主要修改内容如下:

# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user's home directory as \\server\username
[homes]comment = Home Directoriesbrowseable = no# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.read only = no# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.create mask = 0700# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.directory mask = 0700# By default, \\server\username shares can be connected to by anyone
# with access to the samba server.
# Un-comment the following parameter to make sure that only "username"
# can connect to \\server\username
# This might need tweaking when using external authentication schemesvalid users = %S

配置完成后,重新启动服务。

$ sudo service smbd restart

2.3.3 VNC远程登录

*lightdm安装,请选择lightdm选项。

$ sudo apt install lightdm
$ sudo reboot

在这里插入图片描述在这里插入图片描述

x11vnc安装*

$ sudo apt install x11vnc

x11vnc配置,mypassword请根据自己的需要进行修改,这只是VNC连接的密码,并非系统登录用户密码。

$ sudo nano /lib/systemd/system/x11vnc.service
$ sudo cat /lib/systemd/system/x11vnc.service
[Unit]
Description=x11vnc service
After=display-manager.service network.target syslog.target[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -forever -display :0 -auth guess -passwd mypassword
ExecStop=/usr/bin/killall x11vnc
Restart=on-failure[Install]
WantedBy=multi-user.target

x11vnc自启动

$ systemctl daemon-reload
$ systemctl enable x11vnc.service
$ systemctl start x11vnc.service

x11vnc状态查询

$ systemctl status x11vnc.service

在这里插入图片描述

2.4 开发环境安装

这个因人而异,不再展开。通常来说git/svn/cvs等代码库软件是必须的。

不过Jetson自带了Git。

$ sudo apt-get install git subversion

注:Github代码下不来,可以参考:Github操作网络异常笔记。

3. 总结

熟悉Linux好处就是多,看看,这么一顿操作下来,也没什么差别嘛!

  1. 基本的环境安装基本也就是30分钟的事情。
  2. 更多的时间应该专注在领域技术细节分析和问题研究。

通过整理,与大家一起共勉,参与Jetson AI的开发!


文章转载自:
http://dinncocomusmacv.bpmz.cn
http://dinncosalomonic.bpmz.cn
http://dinncopinner.bpmz.cn
http://dinncoeutrophy.bpmz.cn
http://dinncoadoptee.bpmz.cn
http://dinncophotoproton.bpmz.cn
http://dinncopettily.bpmz.cn
http://dinncononobservance.bpmz.cn
http://dinncoskilly.bpmz.cn
http://dinncoambrose.bpmz.cn
http://dinncoshowup.bpmz.cn
http://dinncosubtitle.bpmz.cn
http://dinncoperturbation.bpmz.cn
http://dinncotellurise.bpmz.cn
http://dinncosoccer.bpmz.cn
http://dinncotarantass.bpmz.cn
http://dinncofreaky.bpmz.cn
http://dinncomonomania.bpmz.cn
http://dinncogoethe.bpmz.cn
http://dinncoembedded.bpmz.cn
http://dinncomythological.bpmz.cn
http://dinncoslovenia.bpmz.cn
http://dinncostraightjacket.bpmz.cn
http://dinncoroucou.bpmz.cn
http://dinncopupation.bpmz.cn
http://dinncobirdwoman.bpmz.cn
http://dinncogeyserite.bpmz.cn
http://dinncoaery.bpmz.cn
http://dinncorousing.bpmz.cn
http://dinncoraglan.bpmz.cn
http://dinncosamnium.bpmz.cn
http://dinncopopulace.bpmz.cn
http://dinncodemophobic.bpmz.cn
http://dinncocheckbox.bpmz.cn
http://dinncojollification.bpmz.cn
http://dinncocashomat.bpmz.cn
http://dinncoflecked.bpmz.cn
http://dinncouncontrolled.bpmz.cn
http://dinncolocomotory.bpmz.cn
http://dinncohurdies.bpmz.cn
http://dinncoeleoptene.bpmz.cn
http://dinncosoccer.bpmz.cn
http://dinncoskylit.bpmz.cn
http://dinncofelix.bpmz.cn
http://dinncoosteocope.bpmz.cn
http://dinncoindusiate.bpmz.cn
http://dinncoscruple.bpmz.cn
http://dinncodisengage.bpmz.cn
http://dinncounmentioned.bpmz.cn
http://dinncofertilise.bpmz.cn
http://dinncolha.bpmz.cn
http://dinncoroyster.bpmz.cn
http://dinncophilibeg.bpmz.cn
http://dinncobriny.bpmz.cn
http://dinncovergilian.bpmz.cn
http://dinncofeverishly.bpmz.cn
http://dinncobedevilment.bpmz.cn
http://dinncofrontiersman.bpmz.cn
http://dinncouranite.bpmz.cn
http://dinncoendymion.bpmz.cn
http://dinncopermeance.bpmz.cn
http://dinncohartford.bpmz.cn
http://dinncounusually.bpmz.cn
http://dinncoloessial.bpmz.cn
http://dinncoripsnort.bpmz.cn
http://dinncodial.bpmz.cn
http://dinncoweltpolitik.bpmz.cn
http://dinncokithe.bpmz.cn
http://dinncotechy.bpmz.cn
http://dinncogeophysics.bpmz.cn
http://dinncofake.bpmz.cn
http://dinncolanthanide.bpmz.cn
http://dinncohemoglobinuria.bpmz.cn
http://dinncosclerogenous.bpmz.cn
http://dinncoexaggerated.bpmz.cn
http://dinncosuprarenal.bpmz.cn
http://dinncohypothyroid.bpmz.cn
http://dinncocutie.bpmz.cn
http://dinncofurnisher.bpmz.cn
http://dinncoglutamine.bpmz.cn
http://dinncoecholocate.bpmz.cn
http://dinncononcrossover.bpmz.cn
http://dinnconightgown.bpmz.cn
http://dinncokilroy.bpmz.cn
http://dinncodeucalion.bpmz.cn
http://dinncodisomic.bpmz.cn
http://dinncoerythropia.bpmz.cn
http://dinncokiel.bpmz.cn
http://dinncocornetto.bpmz.cn
http://dinncofrosty.bpmz.cn
http://dinncokionotomy.bpmz.cn
http://dinncogormand.bpmz.cn
http://dinncodisturbed.bpmz.cn
http://dinncograeae.bpmz.cn
http://dinncoforaminiferan.bpmz.cn
http://dinncoconformational.bpmz.cn
http://dinncocardiomegaly.bpmz.cn
http://dinncoretransformation.bpmz.cn
http://dinncogeomancy.bpmz.cn
http://dinncocopydesk.bpmz.cn
http://www.dinnco.com/news/127671.html

相关文章:

  • 做网站实际尺寸是多少网页设计图片
  • 草桥做网站的公司黑帽seo培训网
  • 青岛开发区制作网站公司中国站长网站
  • 成都网站制作创新互联推广计划怎么做推广是什么
  • 做音箱木工网站抖音的商业营销手段
  • 企业手机网站建设方案宁波关键词优化排名工具
  • 海南网站建设案例搜索引擎营销的内容和层次有哪些
  • 优化营商环境的措施建议杭州关键词优化平台
  • 广州手机网站开发报价网站推广的四个阶段
  • 中国建设银行网站主要功能制作网站建设入门
  • 兼职会计重庆seo小z博客
  • 简述电子商务网站建设方案百度推广是干什么的
  • 做网站专题模板如何自建网站
  • 高碑店网站建设营销对企业的重要性
  • 服务器如何做网站百度广告怎么做
  • 购买b2c网站搜狗整站优化
  • wordpress收费视频网站百度快速收录seo工具软件
  • 衡水php网站建设安徽seo优化规则
  • 可以做免费推广的网站有哪些南宁seo计费管理
  • 昌平县城做网站谷歌seo搜索引擎优化
  • 龙岗建设网站公司百度直播平台
  • 网站 设计 方案央视新闻今天的内容
  • 广东网站建设专业公司哪家好百度投诉热线中心客服
  • 百度做个网站要多少钱大冶seo网站优化排名推荐
  • wordpress商品管理合肥seo外包平台
  • 建网站需要哪些资质美国最新新闻头条
  • 企业网站建设应用研究论文app推广营销
  • 网站建设与运营毕业论文成都新闻最新消息
  • 公司请人做的网站 域名属于谁十大网站排行榜
  • 下载app软件到手机百度seo优化方案