[问题]怎么在图形界面中进入终端啊!

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
shaoxie1986
帖子: 2
注册时间: 2007-10-10 14:18

[问题]怎么在图形界面中进入终端啊!

#1

帖子 shaoxie1986 » 2008-01-08 9:16

最近装了UBUNTU7.10,但是学校用的是锐捷上网!据说这个需要进入终端!
我上网找了方法!一个是直接安装:sudo apt-get i tall nautilus-open-terminal,could't find。。。
郁闷啊!安装不行!

第二个办法是添加一个文本:
#!/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

我都把那东西属性改为可以运行了!但是还是不可以!
求助啊!

还有,怎么要装东西老是提示我:Please insert the disk labeled:
Ubuntu 7.10 _Gutsy Gibbon_ - Release i386 (20071016.1)
in drive /cdrom/

到底这个是什么盘啊!

大侠救命啊!
头像
ljj_jjl2008
论坛版主
帖子: 14255
注册时间: 2007-09-16 8:29

#2

帖子 ljj_jjl2008 » 2008-01-08 9:38

你没有配置源,也没有更新,看看顶置帖子,以及WIKI,
还有好长的路要走呢。
下面是我的配置过程,供你参考。
viewtopic.php?t=89163
头像
syrano
帖子: 4313
注册时间: 2007-10-06 18:40

#3

帖子 syrano » 2008-01-08 17:19

终端在这里!!!!!!!!!
附件
terminal.png
dbzhang800
帖子: 3182
注册时间: 2006-03-10 15:10
来自: xi'an China
联系:

#4

帖子 dbzhang800 » 2008-01-08 18:48

标题表意不太明确
回复