ubuntu系统若干设置

 安装vmware tools: 
先以管理员的身份登录:
sudo su
tar -zxvf VMwareTools******
然后进入此目录进行安装  ****.pl文件.

安装后,还是不能实现文件共享,此时配置如下图所示:
 

精通 Linux  C 编程
刘学勇  陈建伟  编著
清华大学出版社

王红梅的数据结构C++版.STL,OOP和GP, 
1.IEC61375,2.TCP/IP详解。3.Unix环境高级编程4.算法(麻省理工的教材)5.linux内核驱动
windows核心编程\   windows程序设计  \ 侯杰的深入浅出MFC \  高守传等人的visual 6.0 开发指南 \   effective C++ \ more effective C++ \  C++ primer \ win32多线程程序设计 \ COM原理与应用 \ windows核心编程第5版\  算法和数据结构(清华大学出版社,陈媛 何波  涂晓红等) \ VC游戏开发经典案例详解(王浩等编著,清华大学出版社) \ windows程序设计(人民邮电出版社,王艳平,张铮等编著) \   Windows驱动开发技术详解(张帆,石彩成著)

在ubuntu下的文件夹下面有打开终端的执行:
1.  cd ~/.gnome2/nautilus-scripts
2.  在此文件夹下 vi 打开终端 ,然后输入下面的代码:

#!/bin/bash   
#   
# This script opens a gnome-terminal in the directory you select.   
#   
# Distributed under the terms of GNU GPL version 2 or later    
#    
# Install in ~/.gnome2/nautilus-scripts or ~/Nautilus/scripts   
# You need to be running Nautilus 1.0.3+ to use scripts.    
# When a directory is selected, go there. Otherwise go to current    
# directory. If more than one directory is selected, show error.    
if [ -n "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" ]; then    
set $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS    
if [ $# -eq 1 ]; then   
destination="$1"  
# Go to file's directory if it's a file   
if [ ! -d "$destination" ]; then   
destination="`dirname "$destination"`" 

fi    
else  
zenity --error --title="Error - Open terminal here" \    
--text="You can only select one directory."   
exit 1  
fi   
else  
destination="`echo "$NAUTILUS_SCRIPT_CURRENT_URI" | sed 's/^file:\/\///'`"   
fi   
# It's only possible to go to local directories    
if [ -n "`echo "$destination" | grep '^[a-zA-Z0-9]\+:'`" ]; then   
zenity --error --title="Error - Open terminal here" \   
--text="Only local directories can be used."   
exit 1  
fi   
cd "$destination"   
exec x-terminal-emulator 
3.  chmod +x 打开终端 此时在文件夹下面就会有  打开终端  选项 改变当锁定时的系统画面:系统/首选项/屏幕保护程序 改变当前桌面的背景:系统/首选项/外观  如果把最上面的面板给不小心删除了,先点击下面的面板,添加新的面板,然后放到最上面,添加你要的选项即可.或者恢复成默认的方法:rm -rf /home/用户名/.gconf*     之后重启系统


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值