【组件安装】Ubuntu 22.04.5 desktop 安装 Anyware Agent

系统初始化

bash 复制代码
sudo -i 
Passwd
apt-get update
apt-get install openssh-server
/etc/init.d/ssh start
vim  /etc/ssh/sshd_config
PermitRootLogin yes
PasswordAuthentication yes
Service ssh restart

配置防火墙

bash 复制代码
sudo ufw status
sudo ufw allow 443/tcp
sudo ufw allow 4172/tcp
sudo ufw allow 4172/udp
sudo ufw allow 60443/tcp
sudo ufw allow ssh  
sudo ufw enable 
sudo ufw status
sudo ufw status verbose

Chrome浏览器安装

bash 复制代码
sudo apt update 
sudo apt install wget
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
google-chrome --version

加域工具安装

bash 复制代码
apt install -y net-tools && ifconfig
resolvectl --no-pager | grep -i server
apt update -y
sudo apt install -y realmd libnss-sss libpam-sss sssd sssd-tools adcli samba-common-bin oddjob oddjob-mkhomedir packagekit krb5-user samba-libs samba-dsdb-modules policykit-1
realm discover ca.XXXX.com

Ubuntu加域

Using the AD domain controlled administrator account, add the Ubuntu virtual machine to the domain:

bash 复制代码
realm join --help
realm join -U administrator ca.xxxx.com
sudo realm list

Log in to Ubuntu virtual machine with a domain account and verify if domain control information can be queried

bash 复制代码
su zhang.san@ca.xxxx.com
realm list 
id ryan.yu@ca.xxxx.com
getent passwd ryan.yu@ca.xxxx.com
Exit

Edite the sssd.conf file to avoid PCoIP login failed issue:

In /etc/sssd/sssd.conf, add the following line to the domain section:

bash 复制代码
ad_gpo_map_permit = +pcoip-session

Example:

bash 复制代码
[domain\mydomain.com]
ad_domain = mydomain.com
ad_gpo_map_permit = +pcoip-session

If the above fails, try adding the following:

bash 复制代码
ad_gpo_access_control = permissive

设置域用户为本地管理员

add user home folder when login

bash 复制代码
sudo pam-auth-update

Add the following to the last line of the configuration file, so that domain users can log in as local administrators

bash 复制代码
sudo visudo
%domain\ users@ca.xxxx.com ALL=(ALL:ALL) ALL
cat /etc/sudoers
reboot

Test logging into a domain user as follows to see if it becomes a local root account on Ubuntu:

bash 复制代码
su zhang.san@ca.xxxx.com
sudo whoami   //this will be root 
exit

Anyware Agent服务安装

bash 复制代码
apt install curl
curl -1sLf https://dl.anyware.hp.com/rWKgtJyfBFzPIPkd/pcoip-agent/cfg/setup/bash.deb.sh | sudo -E distro=ubuntu codename=jammy bash
sudo apt update  
sudo apt install pcoip-agent-standard 
vim /etc/pcoip-agent/pcoip-agent.conf  //add below sentences into the conf file
pcoip.license_server_path = http://192.168.100.55:7070/request 
pcoip.event_filter_mode = 3
pcoip-list-licenses
reboot

安装Anyware Monitor

Manager打开Connector的monitor功能,复制安装脚本在Ubuntu系统安装

相关推荐
晓说前端8 小时前
第一篇:为什么学TypeScript?—— 优势、场景与环境搭建
javascript·ubuntu·typescript
qq_5895681011 小时前
现代 Linux 系统(如 Ubuntu 24.04、Debian 12+) pip 安装第三方包报错解决
python·ubuntu
aFakeProgramer12 小时前
在 Ubuntu 下烧写 S32G399a QNX BSP 到 SD 卡、在硬件上启动并配置环境。
ubuntu·bsp·qnx
JP-Destiny14 小时前
linux-安装Ubuntu的docker
linux·ubuntu·docker
佚明zj17 小时前
Ubuntu 24.04 安装 Fcitx5 拼音输入法教程
运维·服务器·ubuntu
茉莉清茶LG17 小时前
Xshell成功创建了Ubuntu连接,但是显示虚拟机连接断开了,连接失败。
linux·运维·ubuntu
JP-Destiny18 小时前
Linux-配置Ubuntu的IP
linux·tcp/ip·ubuntu
sulikey18 小时前
如何在Ubuntu中判断是否已安装ncurses库
linux·运维·ubuntu·ncurses
承渊政道19 小时前
【MySQL数据库学习】(MySQL数据库基础)
数据库·学习·mysql·ubuntu·bash·数据库架构·数据库系统
济61720 小时前
ROS开发专栏---IMU 数据读取实验实现---适配Ubuntu 22.04
ubuntu·ros2·机器人开发