分页: 1 / 1

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

发表于 : 2008-01-08 9:16
shaoxie1986
最近装了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/

到底这个是什么盘啊!

大侠救命啊!

发表于 : 2008-01-08 9:38
ljj_jjl2008
你没有配置源,也没有更新,看看顶置帖子,以及WIKI,
还有好长的路要走呢。
下面是我的配置过程,供你参考。
viewtopic.php?t=89163

发表于 : 2008-01-08 17:19
syrano
终端在这里!!!!!!!!!

发表于 : 2008-01-08 18:48
dbzhang800
标题表意不太明确