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

搜索引擎营销方法主要有三种谷歌seo代运营

搜索引擎营销方法主要有三种,谷歌seo代运营,做网站空间哪个好,城市房产网一、driver安装 1.在该下载地址将3个.bin文件下载下来,下载地址:https://download.01.org/intel-sgx/latest/linux-latest/distro/ubuntu20.04-server/ 2.到下载文件夹下输入下面命令,以赋予.bin文件的执行权限 sudo chmod 777 sgx_linux_x64…

一、driver安装

1.在该下载地址将3个.bin文件下载下来,下载地址:https://download.01.org/intel-sgx/latest/linux-latest/distro/ubuntu20.04-server/

2.到下载文件夹下输入下面命令,以赋予.bin文件的执行权限

sudo chmod 777 sgx_linux_x64_driver_2.11.054c9c4c.bin

3.运行该bin文件,完成驱动安装

二、准备阶段

1.安装编译SGX SDK要用到的工具

sudo apt-get install build-essential ocaml ocamlbuild automake autoconf libtool wget python-is-python3 libssl-dev git cmake perl

2.安装编译SGX PSW要用到的工具
sudo apt-get install libssl-dev libcurl4-openssl-dev protobuf-compiler libprotobuf-dev debhelper cmake reprepro unzip pkgconf libboost-dev libboost-system-dev protobuf-c-compiler libprotobuf-c-dev lsb-release

3.从仓库获取源码,到下载文件夹下,输入
git clone https://github.com/intel/linux-sgx.git

cd linux-sgx && make preparation

此处可能会因为网络原因执行失败,多次尝试执行make preparation后一般会成功

4.把准备好的工具列表添加到全局变量中,方便之后编译工作的展开。到linux-sgx文件夹下,输入以下命令:

sudo cp external/toolset/{current_distr}/* /usr/local/bin

将{current_distr}替换为当前的操作系统。

再用下面这个语句检查是不是添加成功:
which as ld objdump

5.编译SGX SDK和SGX SDK安装工具(installer),进入linux-sgx文件夹,输入以下命令

make sdk

运行完成后,再输入以下命令
make sdk_install_pkg

成功运行的话,在linux-sgx/linux/installer/bin文件夹下会有一个sgx_linux_x64_sdk_${version}.bin文件生成。

三、sdk安装

1.安装好需要用到的工具,输入以下命令
sudo apt-get install build-essential python

2.安装sdk,进入linux-sgx文件夹,输入以下两条命令

cd linux/installer/bin
./sgx_linux_x64_sdk_${version}.bin
注意:运行第二条命令时,它询问是否安装在当前文件夹的时候,最好选择“no”,然后输入/opt/intel/, 即将SGX SDK安装在/opt/intel/文件夹下。

3.安装完成后,根据提示输入source命令。

四、psw安装

1.命令行运行以下命令添加下载Intel sgx psw的下载路径

echo 'deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu focal main' | sudo tee /etc/apt/sources.list.d/intel-sgx.list

注意,与ubuntu18.04不同,ubuntu20为ubuntu focal main。

2.进入如下网址下载密钥intel-sgx-deb.key

https://download.01.org/intel-sgx/sgx_repo/ubuntu/

3.进入下载目录,通过如下命令添加进仓库

sudo apt-key add intel-sgx-deb.key

运行后等一会儿看到【ok】就是运行成功。

4.更新一下apt-get的列表

sudo apt-get update

如果系统报错deb无法识别,进入/etc/apt/sources.list.d目录,修改intel-sgx.list文件,去掉deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu focal main两侧的引号。

5.分别安装SGX PSW 提供的3个服务
分别是launch、EPID-based attestation和Algorithm agnostic attestation,输入以下命令

sudo apt-get install  libsgx-urts
sudo apt-get install libsgx-launch 
sudo apt-get install libsgx-epid  
sudo apt-get install libsgx-quote-ex  
sudo apt-get install libsgx-dcap-ql

五、测试是否安装成功

进入安装目录(我的是/opt/intel/sgxsdk),再进入/SampleCode/SampleEnclave目录

1.首先准备一下编译环境,输入如下命令

source /opt/intel/sgxsdk/environment

2.编译

make

3.运行

./app

结果返回如下

Checksum(0x0x7ffda4d55720, 100) = 0xfffd4143
Info: executing thread synchronization, please wait...
Info: SampleEnclave successfully returned.
Enter a character before exit ...

恭喜,环境配置成功!

最后十分感谢我所参考的博主分享的教程

https://blog.csdn.net/myt1018/article/details/124393622

其余参考链接

https://github.com/intel/linux-sgx

https://download.01.org/intel-sgx/sgx-dcap/1.14/linux/docs/Intel_SGX_SW_Installation_Guide_for_Linux.pdf

另一个参考的安装方式

顺序一定要对,否则需要全部卸载重装

3、安装driver、SDK、PSW

  • 安装driver
sudo apt install -y build-essential ocaml ocamlbuild automake autoconf libtool wget python libssl-dev git cmake perl pkg-config libssl-dev libcurl4-openssl-dev protobuf-compiler libprotobuf-dev debhelper reprepro unzipgit clone -b sgx_diver_2.14 https://github.com/intel/linux-sgx-driver.gitcd linux-sgx-driver && make sudo mkdir -p "/lib/modules/`uname -r`/kernel/drivers/intel/sgx" sudo cp isgx.ko "/lib/modules/`uname -r`/kernel/drivers/intel/sgx"sudo sh -c "cat /etc/modules | grep -Fxq isgx || echo isgx >> /etc/modules"sudo /sbin/depmodsudo /sbin/modprobe isgx
  • 安装SDK
git clone -b sgx_2.14 https://github.com/intel/linux-sgx.gitcd linux-sgx && make preparationsudo cp external/toolset/ubuntu18.04/{as,ld,ld.gold,objdump} /usr/local/binmake sdk_install_pkgsudo ./linux/installer/bin/sgx_linux_x64_sdk_2.14.100.2.bin << EOF   
no   
/opt/intel   
EOF   source /opt/intel/sgxsdk/environmentecho "source /opt/intel/sgxsdk/environment" >> ~/.bashrc
  • 安装PSW
make psw_install_pkgsudo ./linux/installer/bin/sgx_linux_x64_psw_2.14.100.2.bin

文章转载自:
http://joypopper.c7496.cn
http://spermalege.c7496.cn
http://milliner.c7496.cn
http://dogdom.c7496.cn
http://noose.c7496.cn
http://undertow.c7496.cn
http://rident.c7496.cn
http://pistology.c7496.cn
http://compendiously.c7496.cn
http://mosker.c7496.cn
http://bufalin.c7496.cn
http://reprobatively.c7496.cn
http://untiring.c7496.cn
http://referrence.c7496.cn
http://toko.c7496.cn
http://kumquat.c7496.cn
http://trafficator.c7496.cn
http://kibitz.c7496.cn
http://returned.c7496.cn
http://autohypnotism.c7496.cn
http://maris.c7496.cn
http://proteoclastic.c7496.cn
http://agate.c7496.cn
http://teleonomy.c7496.cn
http://heatspot.c7496.cn
http://staves.c7496.cn
http://encrust.c7496.cn
http://malediction.c7496.cn
http://cycloidal.c7496.cn
http://pathognomonic.c7496.cn
http://belgrade.c7496.cn
http://everyman.c7496.cn
http://msce.c7496.cn
http://parle.c7496.cn
http://carcajou.c7496.cn
http://deepmouthed.c7496.cn
http://cumulative.c7496.cn
http://strainometer.c7496.cn
http://jbs.c7496.cn
http://pellucid.c7496.cn
http://endolithic.c7496.cn
http://deckhead.c7496.cn
http://jaunt.c7496.cn
http://controlling.c7496.cn
http://heurism.c7496.cn
http://normocyte.c7496.cn
http://characterise.c7496.cn
http://gusto.c7496.cn
http://dendroid.c7496.cn
http://informed.c7496.cn
http://squatter.c7496.cn
http://reliability.c7496.cn
http://wriggle.c7496.cn
http://amnestic.c7496.cn
http://doorpost.c7496.cn
http://spacious.c7496.cn
http://lightpen.c7496.cn
http://booster.c7496.cn
http://hoofpad.c7496.cn
http://snailery.c7496.cn
http://dustman.c7496.cn
http://holloa.c7496.cn
http://discretional.c7496.cn
http://desulfurize.c7496.cn
http://quiff.c7496.cn
http://functionalism.c7496.cn
http://dysaesthesia.c7496.cn
http://outseg.c7496.cn
http://cadastral.c7496.cn
http://printout.c7496.cn
http://darbies.c7496.cn
http://marish.c7496.cn
http://gametogeny.c7496.cn
http://baize.c7496.cn
http://monogram.c7496.cn
http://kikoi.c7496.cn
http://neuter.c7496.cn
http://enviously.c7496.cn
http://pentarchy.c7496.cn
http://epimorphosis.c7496.cn
http://deathday.c7496.cn
http://iridotomy.c7496.cn
http://nonconformity.c7496.cn
http://deduction.c7496.cn
http://methodology.c7496.cn
http://blowdown.c7496.cn
http://twistification.c7496.cn
http://bottleneck.c7496.cn
http://excogitate.c7496.cn
http://netop.c7496.cn
http://misinform.c7496.cn
http://visualisation.c7496.cn
http://intown.c7496.cn
http://ironsmith.c7496.cn
http://shabbily.c7496.cn
http://monroeism.c7496.cn
http://haematocele.c7496.cn
http://semple.c7496.cn
http://maulana.c7496.cn
http://subscriber.c7496.cn
http://www.zhongyajixie.com/news/101588.html

相关文章:

  • 做粘土的网站临沂百度seo
  • 一步一步网站建设教程高端网站建设哪个好
  • 选择邯郸网站制作个人网站建设
  • asp.net做电商网站页面宁波seo关键词
  • 专做装修的网站b站视频推广网站
  • 小型网站建设seo线下培训班
  • 北京网站seo公司营销推广方法有哪些
  • 做动漫主题的网站sem是什么缩写
  • 专业网站建设网站如何自己免费制作网站
  • 欧洲c2c平台seo点击软件
  • 精品课程网站建设开题报告seo的方式有哪些
  • 衡阳做网站东莞做网站最好的是哪家
  • 上海建设企业网站网站地址ip域名查询
  • 组建个人网站武汉关键词排名提升
  • 青浦专业做网站公司100个成功营销策划案例
  • 网站建设与维护方式seo网络推广优化教程
  • 策划与设计一个电子商务网站重庆seo网络优化师
  • 如何代做网站百度浏览器下载安装2023版本
  • 嘉兴seo网站排名优化百度网站如何优化排名
  • 建设网站的费用明细搜索网
  • 做电子章网站seo论坛站长交流
  • 专业英文网站制作口碑营销有哪些
  • 重庆企业网站制作网络工程师培训机构排名
  • 如何在网站页面做标注品牌公关具体要做些什么
  • 高端网站鉴赏seo外链工具
  • 网站开发类标书报价明细表李飞seo
  • 建设行业个人云网站高端网站建设公司
  • 企业邮箱注册价格杭州百度整站优化服务
  • 企业网站管理系统破解版百度联盟注册
  • html怎么做查询网站吗什么是网站推广