赞
踩
1)下载 DevEco Device Tool,相关链接如下DevEco Device Tool 3.0 Release
2)解压DevEco Device Tool软件包并对解压后的文件夹进行赋权
unzip devicetool-linux-tool-3.0.0.401.zip
chmod u+x devicetool-linux-tool-3.0.0.401.sh
sudo ./devicetool-linux-tool-3.0.0.401.sh -- --install-plugins
具体名称请根据实际进行修改。
3)在用户协议和隐私声明签署界面,请详细阅读用户协议和隐私声明,需签署同意用户协议和隐私声明才能进行下一步的安装,可通过键盘的上下按键进行选择。
安装完成后,当界面输出“DevEco Device Tool successfully installed.”时,表示DevEco Device Tool安装成功。
1)在Ubuntu系统中,打开终端工具,执行如下命令安装SSH服务。
sudo apt-get install openssh-server
2)执行如下命令,启动SSH服务。
sudo systemctl start ssh
3)执行如下命令,获取当前用户的IP地址,用于Windows系统远程访问Ubuntu环境。
sudo apt install net-tools
ifconfig
1) 打开Windows系统下的Visual Studio Code,点击,在插件市场的搜索输入框中输入“remote-ssh”。
2)点击Remote-SSH的Install按钮,安装Remote-SSH。安装成功后,在INSTALLED下可以看到已安装Remote-SSH。
1)打开Windows系统的Visual Studio Code,点击,在SSH TARGETS下,点击+按钮。
2)在弹出的SSH连接命令输入框中输入“ssh username@ip_address”,其中ip_address为要连接的远程计算机的IP地址,username为登录远程计算机的帐号。
3)在弹出的输入框中,选择SSH configuration文件,选择默认的第一选项即可。
4)在SSH TARGETS中,找到远程计算机,点击,打开远程计算机。
5)在弹出的输入框中,选择Linux,然后在选择Continue,然后输入登录远程计算机的密码,连接远程计算机 。
1)安装samba工具
sudo apt-get install samba
2)创建需要共享的目录
mkdir /home/user/share
sudo chmod 777 /home/user/share
3)配置samba
sudo vim /etc/samba/smb.conf
文件最后添加
[share]
path = /home/user/share
public = yes
writable = yes
valid users = user
create mask = 0644
force create mode = 0644
directory mask = 0755
force directory mode = 0755
available = yes
4)设置密码
sudo touch /etc/samba/smbpasswd
sudo smbpasswd -a user
提示连续输入两次密码后,成功完成密码设置
5)启动Samba服务器
sudo /etc/init.d/smbd restart
6)在windows测试连接
\\192.168.126.132\share
sudo lsb_release -a
sudo apt-get install ninja-build
1)先安装clang
sudo apt-get install clang-7
2)建立软连接
进入/usr/bin/
目录,修改如下:
ln -s clang-7 clang
ln -s clang++-7 clang++
ln -s clang-cpp-7 clang-cpp
3)在命令行中输入clang --version
,显示如下内容,说明clang安装成功。
root@ubuntu:~# clang++ --version
clang version 7.0.0-3~ubuntu0.18.04.1 (tags/RELEASE_700/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
4)下载gn
git clone https://github.com/timniederhausen/gn.git
5)编译gn
进入刚才下载的gn目录中,先执行gn的配置脚本。
./build/gen.py
然后在gn目录中执行:
ninja -C out
编译结束后,gn程序就在gn/out目录中。
1)通过访问本社区网站下载dailybuilds或正式发布的sdk压缩包,从中根据自己平台到相应的目录toolchain下解压提取
2)在系统环境变量path中添加hdc_std所在路径
3)命令介绍
1.查看工具版本
D:\>hdc_std -v
Ver: 1.1.1k
2.查看已连接设备
D:\>hdc_std list targets
15010038475446345206a332927cb7cd
3.进入命令行交互环境
D:\>hdc_std shell
#ls
bin data etc lib proc system vendor
config dev init lost+found sys updater
4.从PC拷入文件到开发板
D:\>hdc_std file send d:\entry-debug-standard-ark-signed.hap /data/tmp/
FileTransfer finish, Size:71030 time:26ms rate:2731.92kB/s
5.从开发板拷出文件到PC
E:\>hdc_std file recv /data/tmp/entry-debug-standard-ark-signed.hap d:\recv\entry-debug-standard-ark-signed.hap
FileTransfer finish, Size:71030 time:51ms rate:1392.75kB/s
6.安装HAP应用
D:\>hdc_std install entry-debug-standard-ark-signed.hap
[Info]App install path:D:\entry-debug-standard-ark-signed.hap, queuesize:0, msg:install bundle successfully.
AppMod finish
7.重新安装HAP应用
D:\>hdc_std install -r entry-debug-standard-ark-signed.hap
[Info]App install path:D:\entry-debug-standard-ark-signed.hap, queuesize:0, msg:install bundle successfully.
AppMod finish
8.卸载已安装应用
D:\>hdc_std uninstall com.example.ohhelloworld
[Info]App uninstall path:, queuesize:0, msg:uninstall bundle successfully.
AppMod finish
9.参考连接
https://ost.51cto.com/posts/10190
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。