【2017/4/13】centos或者linux安装完成后右键桌面没有open in terminal

安装oracle的时候偶然发现的问题:http://blog.csdn.net/ssrmygod/article/details/69944691


右键桌面没有open in terminal 出来,我只能借助工具xshell连进去:

其实就是缺少了个包,yum装上,注销下就完事。


挂载光盘,本地源:

[root@mygod ~]#  mkdir -p /media/cdrom
[root@mygod ~]# mount /dev/cdrom/media/cdrom
mount: block device /dev/sr0 iswrite-protected, mounting read-only
[root@mygod ~]#  cd /etc/yum.repos.d/
[root@mygod yum.repos.d]# ls
CentOS-Base.repo  CentOS-Debuginfo.repo  CentOS-Media.repo  CentOS-Vault.repo
 [[email protected]]# rm -rf C*
[root@mygod yum.repos.d]# ls
[root@mygod yum.repos.d]# vi mygod.repo
[root@mygod yum.repos.d]# cat mygod.repo
[mygod]
name=mygod
baseurl=file:///media/cdrom
enabled=1
gpgcheck=0
[root@mygod yum.repos.d]#
[root@mygod yum.repos.d]# yum clean all
Loaded plugins: fastestmirror,refresh-packagekit, security
Cleaning repos: mygod
Cleaning up Everything
[root@mygod yum.repos.d]# yum repolist
Loaded plugins: fastestmirror,refresh-packagekit, security
Determining fastest mirrors
mygod                                                                      | 4.0 kB     00:00 ...
mygod/primary_db                                                           | 4.4 MB     00:00 ...
repo id                                        reponame                                    status
mygod                                          mygod                                         6,367
repolist: 6,367


安装包:
[root@mygod yum.repos.d]# yum -y installnautilus-open-terminal
Loaded plugins: fastestmirror,refresh-packagekit, security
Loading mirror speeds from cached hostfile
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Packagenautilus-open-terminal.x86_64 0:0.17-4.el6 will be installed
--> Finished Dependency Resolution
 
Dependencies Resolved
 
===================================================================================================
 Package                           Arch              Version                Repository        Size
===================================================================================================
Installing:
 nautilus-open-terminal            x86_64            0.17-4.el6             mygod             63 k
 
Transaction Summary
===================================================================================================
Install       1 Package(s)
 
Total download size: 63 k
Installed size: 202 k
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
 Installing : nautilus-open-terminal-0.17-4.el6.x86_64                                        1/1
 Verifying  :nautilus-open-terminal-0.17-4.el6.x86_64                                        1/1
 
Installed:
 nautilus-open-terminal.x86_64 0:0.17-4.el6                                                       
 
Complete!
[root@mygod yum.repos.d]#


然后图像化界面logout一下
然后正常了。

你可能感兴趣的:(linux,linux,installations)