centos桌面使用

firefox添加flash插件

[[email protected] home]# cp libflashplayer.so /usr/lib64/mozilla/pl
pl               plugins/         plugins-wrapped/
[[email protected] home]# cp libflashplayer.so /usr/lib64/mozilla/pl
pl               plugins/         plugins-wrapped/
[[email protected] home]# cp libflashplayer.so /usr/lib64/mozilla/plugins
[[email protected] home]# cd /usr/lib64/mozilla/plugins
[[email protected] plugins]# ls
libflashplayer.so                      libtotem-gmp-plugin.so
librhythmbox-itms-detection-plugin.so  libtotem-mully-plugin.so
libtotem-cone-plugin.so                libtotem-narrowspace-plugin.so
[[email protected] plugins]# chmod 755 libflashplayer.so
[[email protected] plugins]# ls
libflashplayer.so                      libtotem-gmp-plugin.so
librhythmbox-itms-detection-plugin.so  libtotem-mully-plugin.so
libtotem-cone-plugin.so                libtotem-narrowspace-plugin.so

修改时区

填入上海,直接会弹出提示

安装qq

时间: 2024-10-18 22:31:25

centos桌面使用的相关文章

Xmanager远程管理Centos桌面

1.安装gdm yum -y install gdm 2.修改系统启动界面 vim /etc/inittab id:5:initdefault:      #(把3或者其他数字改为5) 3.配置gdm文件 vim /etc/gdm/custom.conf 字段下分别添加如下内容(默认[security]和[xdmcp]没有任何内容,需要手动添加): [security] AllowRemoteRoot=true [xdmcp] Port=177 Enable=1 4.关闭防火墙或者打开UPD端口

Centos桌面搭建Pycharm集成开发环境

Pycharm是一款出色的python集成开发环境,由JetBrains开发维护.Pycharm主要有两个版本:Professional版本和Community版本,其中Professional版本功能更丰富,但是是收费软件.对于初学者,下载Community版本就可以了.这里,我就简单记录一下在Centos桌面环境下,如何安装配置Pycharm集成开发环境. 主要有以下几步: 下载Pycharm的community版本 安装配置合适的Java环境 运行配置Pycharm 1)下载Pycharm

CentOS install Desktop and Remotely access 远程管理Centos桌面 TigerVNC

Centos 安装完毕,但是通过windows 远程管理桌面: 当然我们可以通过secureCRT工具连接命令行,但是我希望通过windows 连接他们的远程桌面: 首先我们的保证 X windows等桌面环境安装成功: yum groupinstall -y "Desktop"   "Desktop Platform"   "Desktop Platform Development" "Fonts" "Genera

CentOS桌面环境如何打开终端以及如何将终端加入右键

安装完CentOS的桌面环境后,默认在桌面以及右键是没有打开终端选项的,要想打开终端,可以由以下步骤: 在左上角菜单[Applications]--->[System Tools]--->[Terminal]打开终端 如果要将终端放在桌面上,则对[Terminal]右键选择[Add this launcher to desktop] 如果要在右键添加终端,则需要在终端中安装:yum -y install nautilus-open-terminal    ,最后重启即可

安装CentOS桌面环境

CentOS 作为服务器的操作系统是很常见的,但是因为需要稳定而没有很时髦的更新,所以很少做为桌面环境.在服务器上通常不需要安装桌面环境,最小化地安装 CentOS(也就是 minimal CentOS) 就可以了.不过在最小化安装的 CentOS 中通过 YUM 来安装桌面环境也是非常方便的. 单位的那台服务器上就让我安装了最小化的 CentOS 操作系统.但是同事说操作不方便,所以我就试了试,顺便记录这个安装方法.使用 yum groupinstall 指令很容易就能安装上图形界面的桌面系统

CentOS中配置xrdp,通过微软远程桌面访问CentOS桌面

环境:CentOS 6.4 1.安装相关软件 yum groupinstall "Desktop" (已安装桌面的就可以缺略这条命令) yum install xrdp yum install tigervnc-server 2.启动xrdp服务 service xrdp restart 3.配置iptables防火墙 在xrdp使用是3389端口,所以在iptables中也要开放相应的端口,否则无法访问 iptables -A INPUT -p tcp --dport 3389 -j

CentOS 桌面启动无登录界面

最近VMWare下搞了2个CentOS 32bit虚拟机, 装了些软件之后,都遇到开机无法显示登录界面, 仅能看见桌面背景图的情况.  以下是我搜索很久汇总的方法. 尝试按 ctrl + alt + F3(快捷键可能有所不同),  由桌面模式进入命令行模式. 直接 startx 报错: Fatal server error: Server is already active for display 0 If this server is no longer running, remove /tm

Win7 VNC远程连接Centos桌面

一,安装Linux桌面: yum -y groupinstall Desktop yum -y groupinstall "X Window System" yum -y groupinstall chinese-support vi /etc/sysconfig/i18n 将en_US改成zh_CN 二.安装VNCServer服务包: 1,安装VNCServer服务端软件包. #yum -y install vnc *vnc-server* 2,改动VNCServer主配置文件 #v

CentOS桌面环境中网卡启动失败

我在最小化安装CentOS中网卡启动正常,但是当我们装了桌面版的CentOS后,发现不管使用哪种启动网卡的方式都会启动失败. 截图如下: 后来查阅报错原因,NetworkManager管理工具和/etc/sysconfig/network-scripts/ifcfg-ethx配置不同步造成的. 使用下面两个命令可以解决上面网卡重启失败导致的问题: chkconfig NetworkManager off //注释 关掉它,不让它开机自动启动 service NetworkManager stop