华为欧拉系统(openEuler-22.03)安装深信服EasyConnect软件(图文详解)

news/2024/10/9 1:37:59/

欧拉镜像下载安装

iso镜像官网下载地址

选择最小化安装,标准模式

换华为镜像源

更换华为镜像站,加速下载:

sed -i "s#http://repo.openeuler.org#https://mirrors.huaweicloud.com/openeuler#g" /etc/yum.repos.d/openEuler.repo
sed -i 's#EPOL/$basearch#EPOL/main/$basearch#g' /etc/yum.repos.d/openEuler.repo

更新缓存:

yum clear all
yum makecache

安装 GNOME

参考:官方安装文档

GNOME是运行在类Unix操作系统中最常用桌面环境。是一个功能完善、操作简单、界面友好,集使用和开发为一身的桌面环境,是GNU计划的正式桌面。

从用户的角度看,GNOME是一个集成桌面环境和应用程序的套件。从开发者的角度看,它是一个应用程序开发框架(由数目众多的实用函数库组成)。即使用户不运行GNOME桌面环境,用GNOME编写的应用程序也可以正常运行。

GNOME既包含文件管理器、应用商店、文本编辑器等基础软件,也包含系统采样分析、系统日志、软件工程IDE、web浏览器、简洁虚拟机监视器、开发者文档浏览器等高级应用和工具。

1.下载openEuler ISO镜像并安装系统,更新软件源(需要配置Everything源,以及EPOL源,上面已经配置了,下面命令是在最小化安装系统的情况下安装GNOME)

sudo dnf update

2.安装字库

sudo dnf install dejavu-fonts liberation-fonts gnu-*-fonts google-*-fonts

3.安装Xorg

sudo dnf install xorg-x11-apps xorg-x11-drivers xorg-x11-drv-ati \xorg-x11-drv-dummy xorg-x11-drv-evdev xorg-x11-drv-fbdev xorg-x11-drv-intel \xorg-x11-drv-libinput xorg-x11-drv-nouveau xorg-x11-drv-qxl \xorg-x11-drv-synaptics-legacy xorg-x11-drv-v4l xorg-x11-drv-vesa \xorg-x11-drv-vmware xorg-x11-drv-wacom xorg-x11-fonts xorg-x11-fonts-others \xorg-x11-font-utils xorg-x11-server xorg-x11-server-utils xorg-x11-server-Xephyr \xorg-x11-server-Xspice xorg-x11-util-macros xorg-x11-utils xorg-x11-xauth \xorg-x11-xbitmaps xorg-x11-xinit xorg-x11-xkb-utils

4.安装GNOME及组件

sudo dnf install adwaita-icon-theme atk atkmm at-spi2-atk at-spi2-core baobab \abattis-cantarell-fonts cheese clutter clutter-gst3 clutter-gtk cogl dconf \dconf-editor devhelp eog epiphany evince evolution-data-server file-roller folks \gcab gcr gdk-pixbuf2 gdm gedit geocode-glib gfbgraph gjs glib2 glibmm24 \glib-networking gmime30 gnome-autoar gnome-backgrounds gnome-bluetooth \gnome-builder gnome-calculator gnome-calendar gnome-characters \gnome-clocks gnome-color-manager gnome-contacts gnome-control-center \gnome-desktop3 gnome-disk-utility gnome-font-viewer gnome-getting-started-docs \gnome-initial-setup gnome-keyring gnome-logs gnome-menus gnome-music \gnome-online-accounts gnome-online-miners gnome-photos gnome-remote-desktop \gnome-screenshot gnome-session gnome-settings-daemon gnome-shell \gnome-shell-extensions gnome-software gnome-system-monitor gnome-terminal \gnome-tour gnome-user-docs gnome-user-share gnome-video-effects \gnome-weather gobject-introspection gom grilo grilo-plugins \gsettings-desktop-schemas gsound gspell gssdp gtk3 gtk4 gtk-doc gtkmm30 \gtksourceview4 gtk-vnc2 gupnp gupnp-av gupnp-dlna gvfs json-glib libchamplain \libdazzle libgdata libgee libgnomekbd libgsf libgtop2 libgweather libgxps libhandy \libmediaart libnma libnotify libpeas librsvg2 libsecret libsigc++20 libsoup \mm-common mutter nautilus orca pango pangomm libphodav python3-pyatspi \python3-gobject rest rygel simple-scan sushi sysprof tepl totem totem-pl-parser \tracker3 tracker3-miners vala vte291 yelp yelp-tools \yelp-xsl zenity

5.启动gdm显示管理器

sudo systemctl enable gdm

6.设置系统默认以图形界面登录

sudo systemctl set-default graphical.target

7.重启验证

sudo reboot

EasyConnect_83">安装EasyConnect

访问EasyConnect,进入客户端下载页面,选择中标麒麟,根据系统架构下载对应的rpm包:
客户端下载页面

EasyConnect_87">打开EasyConnect无响应

进入EasyConnect安装目录:/usr/share/sangfor/EasyConnect/,手动运行./EasyConnect,看对应的错误提示信息:

ERROR:Gtk-Message: Failed to load module “canberra-gtk-module”

yum install libcanberra-*

不知道缺哪个组件,全部安装了就好了

ERROR:segmentation fault

将下面这个压缩包解压后,将里面的三个so文件拷贝到EasyConnect的安装目录/usr/share/sangfor/EasyConnect/

压缩包下载链接:下载地址

启动成功

重新启动EasyConnect,连接成功:

连接情况


http://www.ppmy.cn/news/1424214.html

相关文章

Build a Large Language Model (From Scratch) 从头开始构建大型语言模型(第一章)学习笔记

构建大型语言模型(从头开始) 1 理解大型语言模型(Understanding Large Language Models)1.1 什么是LLM?(What is an LLM?)1.2 LLM的应用(Applications of LLMs)1.3 建立和使用LLM的阶段(Stages of building and using LLMs)1.4 将LLM用于不同…

Linux 网络编程项目--简易ftp

主要代码 config.h #define LS 0 #define GET 1 #define PWD 2#define IFGO 3#define LCD 4 #define LLS 5 #define CD 6 #define PUT 7#define QUIT 8 #define DOFILE 9struct Msg {int type;char data[1024];char secondBuf[128]; }; 服务器: #i…

封装原生html的table处理方法【参数类似eltable】

直接跑html即可 <!DOCTYPE html> <html lang"en"><head><meta charset"UTF-8"><meta name"viewport" content"widthdevice-width, initial-scale1.0"><title>封装原生talbe</title> </…

Mongodb入门--头歌实验MongoDB 实验——数据库优化

一、MongoDB 的 Profiling 工具&#xff08;一&#xff09; 任务描述 本关任务&#xff1a;完成慢查询设置。 相关知识 为了完成本关任务&#xff0c;你需要掌握&#xff1a; 1.Profiling 是什么工具&#xff1b; 2.如何启用 Profiling 工具。 Profiling 工具 在很多情况下&…

flink mysql数据表同步SQL CDC

1、CDC简介 Change Data Capture FlinkCDC提供一组源数据的连接器&#xff0c;使用变更数据捕获的方式&#xff0c;直接吸收来自不同数据库的变更数据。通过CDC获取源数据表的更新内容&#xff0c;将更新内容作为数据流下发到下游系统&#xff0c;可以做到mysql数据表数据的实…

功能强大的开源数据中台系统 DataCap 2024.03.3 发布

推荐一套基于 SpringBoot 开发的简单、易用的开源权限管理平台&#xff0c;建议下载使用: https://github.com/devlive-community/authx 推荐一套为 Java 开发人员提供方便易用的 SDK 来与目前提供服务的的 Open AI 进行交互组件&#xff1a;https://github.com/devlive-commun…

Spring Boot 连接 RabbitMQ

使用MQ Java获取MQ连接对象 SpringBoot Pom 文件 <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0" xmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocatio…

Python面试十问

深浅拷贝的区别&#xff1f; 浅拷⻉&#xff1a; 拷⻉的是对象的引⽤&#xff0c;如果原对象改变&#xff0c;相应的拷⻉对象也会发⽣改变。 深拷⻉&#xff1a; 拷⻉对象中的每个元素&#xff0c;拷⻉对象和原有对象不在有关系&#xff0c;两个是独⽴的对象。 浅拷⻉(copy)…