Anlios装grouplist 组件之后报错,安装tiger-vncserver

news/2024/12/21 13:43:47/

 因为之前升级了一个epel-release源,然后containerd也装进去了,但是版本太低

然后以为是runc挡住了,发现没有runc

 

删完了containerd就可以装了

rpm -ivh http://mirrors.wlnmp.com/centos/wlnmp-release-centos.noarch.rpm
dnf  install wntp -y
ntpdate ntp3.aliyun.com 
echo "*/3 * * * * ntpdate ntp3.aliyun.com  &> /dev/null" > /tmp/crontab
crontab /tmp/crontab

 中间一度以为是源时间不同步更新了一个ntpdate发现没有卵用

部署一个vnv,首先安装tigervnc-server

编辑/etc/systemd/system/vnvserver@1:service

cat /etc/systemd/system/vncserver\@\:1.service 
# The vncserver service unit file
#
# Quick HowTo:
# 1. Add a user mapping to /etc/tigervnc/vncserver.users.
# 2. Adjust the global or user configuration. See the
#    vncsession(8) manpage for details. (OPTIONAL)
# 3. Run `systemctl enable vncserver@:<display>.service`
# 4. Run `systemctl start vncserver@:<display>.service`
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted!  For a secure way of using VNC, you should
# limit connections to the local host and then tunnel from
# the machine you want to view VNC on (host A) to the machine
# whose VNC output you want to view (host B)
#
# [user@hostA ~]$ ssh -v -C -L 590N:localhost:590M hostB
#
# this will open a connection on port 590N of your hostA to hostB's port 590M
# (in fact, it ssh-connects to hostB and then connects to localhost (on hostB).
# See the ssh man page for details on port forwarding)
#
# You can then point a VNC client on hostA at vncdisplay N of localhost and with
# the help of ssh, you end up seeing what hostB makes available on port 590M
#
# Use "nolisten=tcp" to prevent X connections to your VNC server via TCP.
#
# Use "localhost" to prevent remote VNC clients connecting except when
# doing so through a secure tunnel.  See the "-via" option in the
# `man vncviewer' manual page.[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target[Service]
Type=forking
WorkingDirectory=/root
User=root
Group=rootExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill :1 > /dev/null 2>&1 || :'
ExecStart=/usr/bin/vncserver -autokill :1
ExecStop=/usr/bin/vncserver -kill :1//定义用户,root不要这个文件也是可以跑的
[Install]
WantedBy=multi-user.target

此时netstat -nltup

 

 重复起会造成有多喝session

 不想要了可以 vncserver -kill  :1  删了就保留有一个,根据端口号链接

 用完不删vncserver :N

 可以新增 然后就可以查看,该了之后需要systemctl  daemon-reload

 多个客户端链接进来


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

相关文章

Python学习笔记第五十天(NumPy IO)

Python学习笔记第五十天NumPy IOnumpy.save()np.savez()savetxt()结束语NumPy IO Numpy 可以读写磁盘上的文本数据或二进制数据。 NumPy 为 ndarray 对象引入了一个简单的文件格式&#xff1a;npy。 npy 文件用于存储重建 ndarray 所需的数据、图形、dtype 和其他信息。 常…

如何同时启动Android平台GB28181设备接入模块和轻量级RTSP服务模块?

技术背景 在介绍GB28181设备接入模块和轻量级RTSP服务之前&#xff0c;我们需要先搞清楚&#xff0c;二者的使用场景和技术设计的差别&#xff1a; 首先是GB28181设备接入模块&#xff1a; 为什么要设计GB28181设备接入模块&#xff1f;GB28181接入SDK&#xff0c;实现不具备…

2022年下半年部分团队的总结

这是 2021 年年底的汇报。 这是 2022 年上半年的汇报。 踏石留印 抓铁有痕 CSDN 是中国 IT 人士学习&#xff0c;成长&#xff0c;成功的平台。除了一些创新的探索之外&#xff0c; 20 多年来&#xff0c;CSDN 团队为这个平台开发和维护着各种基本功能和服务&#xff0c;还进…

网心科技入选亿欧《2022年中国边缘计算产业研究报告》

近日,亿欧智库对外发布了《2022年中国边缘计算产业研究报告》,《报告》公布了“边缘计算产业图谱”和“行业新锐:中国边缘计算技术领先企业榜单”两项,网心科技(OneThing)均成功入选,彰显了网心科技在边缘计算领域的技术实力和市场领先地位。 当前,边缘计算与千行百业的深度融合…

小学生C++编程基础 课程7(A)

897.a到b (课程7&#xff09; 难度&#xff1a;1 登录 898.2位偶数 &#xff08;课程7&#xff09; 难度&#xff1a;1 登录 899.从0开始&#xff08;课程7&#xff09; 登录 900.前面数 &#xff08;课程7&#xff09; 登录 901.奇数 (课程7) 登录 902.7的倍数 (课程7) …

list分组汇总、计算

分组计算 使用场景&#xff1a; 在一个list中&#xff0c;根据某字段进行分组&#xff0c;进行不同组内数据的计算&#xff0c; Data public class order implements Serializable { private static final long serialVersionUID 7353320757077145027L; /** * 指令id …

Android -- 每日一问:能讲讲 Android 的 Handler 机制吗?

经典回答 要讲清楚 Android 中的消息机制&#xff0c;肯定要先表述一下和 Handler 相关的一些类&#xff1a; Message&#xff1a;消息分为硬件产生的消息(如按钮、触摸)和软件生成的消息&#xff1b;MessageQueue&#xff1a;消息队列的主要功能向消息池投递消息(MessageQueu…

详解事务:Mysql事务、Spring事务、分布式事务

详解事务&#xff1a;Mysql事务、Spring事务、分布式事务&#xff08;一&#xff09;Mysql事务【1】4种隔离级别【2】测试案例&#xff08;二&#xff09;Spring事务【1】准备测试代码&#xff08;1&#xff09;添加依赖&#xff08;2&#xff09;配置文件&#xff08;3&#x…