rhel7配置网络yum源,配置VNC远程桌面

rhel7配置VNC远程桌面
实验环境:安装了图形化界面的redhat7.0,IP是192.168.31.201
先配置网络yum源
[[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

[[email protected] ~]# sed -i ‘s/$releasever/7/g‘ /etc/yum.repos.d/CentOS-Base.repo

[[email protected] ~]# yum clean all

[[email protected] ~]# yum list

安装vnc server软件
[[email protected] ~]# yum install vnc-server vnc –y

进入/lib/systemd/system这个目录
[[email protected] ~]# cd /lib/systemd/systembr/>里面有一个配置文件模版
/lib/systemd/system/[email protected]
拷贝一份出来修改,我这里开启2号端口,也就是访问192.168.31.201:5902
[[email protected] system]# cp [email protected] [email protected]:2.service

编辑这个文件[email protected]:2.service
[[email protected] system]# vim [email protected]:2.service
将标记的地方改成root

更新一下,让刚才的修改生效
[[email protected] system]# systemctl daemon-reload

设置vnc密码
[[email protected] system]# vncpasswd

开放防火墙的vnc服务
[[email protected] ~]# firewall-cmd --permanent --add-service=vnc-server
[[email protected] ~]# firewall-cmd –reload

[[email protected] ~]# vncserver :2

安装完成,在windows安装vnc 客户端,进行登录

rhel7配置网络yum源,配置VNC远程桌面

原文地址:http://blog.51cto.com/11293100/2177561

时间: 2024-10-12 04:47:11

rhel7配置网络yum源,配置VNC远程桌面的相关文章

配置网络yum源

有的时候服务器需要下载一些软件,是本地yum源没有的,这时候需要配置网络yum源 #cd  /etc/yum.repos.d/ 把这个目录下的配置文件备份,改名:或者是把文件里边的enabled=1的改为enabled=0: # wget -O /etc/yum.repos.d/CentOS-Base.repo   http://mirrors.aliyun.com/repo/Centos-6.repo # sed -i  's/$releasever/6/g' /etc/yum.repos.d

Linux配置网络YUM源

配置网络yum源 RHEL6.5 1 [[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo 2 3 [[email protected] ~]# sed -i 's/$releasever/6.8/g' /etc/yum.repos.d/CentOS-Base.repo 4 5 [[email protected] ~]# yum

CentOS7下配置网络yum源(附带下载地址)

一.查看外网是否通畅 配置网络yum源(需要保证外网开通,我这里是使用网易163提供开源镜像站) 二.下载repo文件 cd /etc/yum.repos.dwget http://mirrors.163.com/.help/CentOS6-Base-163.repo 三. 备份并替换系统的repo文件 备份原来的.repo配置文件 cd /etc/yum.repos.d mv CentOS-Base.repo CentOS-Base.repo.bk         复制网易下载的.repo并修

脚本配置网络YUM源及epel源

+++++++++++++++++++++++++++++++++内容:shell 脚本实战之配置网络YUM源及epel源时间:2019年8月5日+++++++++++++++++++++++++++++++++ #!/usr/bin/env bashyum_dir=/etc/yum.repos.dyum_bak_dir=/etc/yum.repos.d/bakcentos6_repo_pos=http://mirrors.aliyun.com/repo/Centos-6.repocentos6

RHEL配置网络yum源

RHEL6.5系统配置网络Yum源概述 1.配置本地yum源: 将光盘镜像文件挂载到/mnt目录下#mount /dev/cdrom /mnt; 修改/etc/yum.repo.d/目录下的配置文件,删除或重命名其他的.repo文件,创建新的local.repo文件,内容如下: [local] name=local DVD baseurl=file:///mnt enabled=1 gpgcheck=0 2.利用本地yum源安装wget下载工具: #yum install wget -y 3.利

rhel 6下配置网络yum源(虚拟机环境下)

1.修改网络配置文件,保证能够联网 将网路链接模式改为:桥接模式 # vi /etc/sysconfig/network-scrips/ifcfg-bond0 DEVICE=bond0 #HWADDR=00:50:56:3B:0E:3A TYPE=Ethernet ONBOOT=yes #NM_CONTROLLED=yes BOOTPROTO=none IPADDR=192.168.1.132 NETMASK=255.255.255.0 GATEWAY=192.168.1.1 2.删除当前系统已

CentOS 6 网络yum源配置

# CentOS-Base.repo## The mirror system uses the connecting IP address of the client and the# update status of each mirror to pick mirrors that are updated to and# geographically close to the client.  You should use this for CentOS updates# unless you

配置本地和网络yum源

一.配置本地yum源 1.检查自己是否已经安装yum [[email protected] ~]# rpm -qa | grep yum yum-updatesd-0.9-2.el5 yum-security-1.1.16-13.el5 yum-metadata-parser-1.1.2-3.el5 yum-3.2.22-20.el5 yum-rhn-plugin-0.5.4-13.el5 2.把安装光盘挂在到/mnt下 [[email protected] ~]# mount /dev/cdr

redhat配置centos网络yum源

方案一: 配置网络yum源rpm -ivh vsftpd-2.2.2-6.el6_0.1.x86_64service vsftpd restartchkconfig --level 35 vsftpd oncd /var/ftp/pub/mkdir yum把上面的挂载点改成/var/ftp/pub/yumvim /etc/yum.repos.d/rhel-source.repo[server]name=serverbaserul=ftp://pub/yum/Server/  #(注意要挂载光驱)