查看“EjectCDLauncher”的源代码
来自Ubuntu中文
←
EjectCDLauncher
跳到导航
跳到搜索
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
---- 原文出处:https://help.ubuntu.com/community/EjectCDLauncher 原文作者:UbuntuWiki 授权许可: 翻译人员:leal 校对人员:MillenniumDark 贡献者: 适用版本: 文章状态:完成 ---- You will get an icon on your panel and when you click on it, the cdrom gets unmounted and ejected. Create a new file: 你的面板上会增加一个图标,当你点击它时,cdrom就会卸载并弹出。 创建一个新文件: <pre><nowiki> sudo gedit /usr/local/bin/eject_cd </nowiki></pre> Paste the following lines: 把下列内容粘贴到文件中: <pre><nowiki> #! /bin/sh # # Try to unmount a CD-Rom device, then eject it. # DEVICE="$1" ZENITY_BIN="/usr/bin/zenity" #Ctrl-C trapping trap ctrlc INT ctrlc() { echo -e "\nAborted by user." rm -rf $TMP_DIR exit 2 } #Show a dialog with zenity #@param string The text to display show_dialog() { if [ "$use_zenity" -gt "0" ] ; then zenity --error --title "CD-Rom eject" --info-text "$1" fi } #Get parameters if [ "$1" === "-h" ] || [ "$1" === "--help" ] ; then echo "Usage: eject_cdrom [-q] DEVICE" echo -e "Try to unmount DEVICE then eject it if successful.\n" echo "Possible parameters:" echo -e "-h, --help\tdisplay this help and exit." echo -e "-z, --zenity\tuse zenity to displays errors in dialog windows." exit 0 fi if [ "$1" === "-z" ] || [ "$1" === "--zenity" ] ; then if [ ! -x "$ZENITY_BIN" ] ; then echo "You must install zenity before that." exit 1 fi use_zenity="1" device="$2" else use_zenity="0" device="$1" fi #Device check #TODO: Check if DEVICE is truly a device. if [ ! -e "$device" ] ; then echo "Parameter DEVICE is not a file." exit 1 fi echo "Trying to eject CD-Rom..." #Unmount umount "$device" 2>/dev/null last_err="$?" if [ "$last_err" -eq "1" ] ; then msg="Cannot unmount device $device (busy)." echo "$msg" show_dialog "$msg" exit 1 fi #Eject eject "$device" last_err="$?" if [ "$last_err" -ne "0" ] ; then msg="Cannot eject device." echo "$msg" show_dialog "$msg" exit 1 fi exit 0 </nowiki></pre> Make the script executable: 把该脚本设为可执行: <pre><nowiki> sudo chmod +x /usr/local/bin/eject_cd </nowiki></pre> Create a new launcher on a panel (or wherever you want): 在面板上(或其它你喜欢的地方)创建一个新的启动器: <pre><nowiki> Right-click on the panel 'Add to Panel' 'Custom Application Launcher' </nowiki></pre> Type this (replace /dev/cdrom with your CD-Rom device): 输入下列内容(用你的CD-Rom设备替代/dev/cdrom): <pre><nowiki> Name: Eject CD-Rom Comment: Unmount and eject the CD-Rom /dev/cdrom Command: /usr/local/bin/eject_cd -z /dev/cdrom Icon: /usr/share/icons/gnome/24x24/devices/gnome-dev-removable.png </nowiki></pre> Click 'Close' 单击'Close'(关闭) Note: This script uses zenity to display errors. However if you don't want this feature, remove the '-z' parameter. To install zenity: 注:这个脚本使用zenity来显示错误信息。当然如果你不需要该特性,只需移除'-z'参数。 如下命令可安装zenity: <pre><nowiki> sudo apt-get install zenity </nowiki></pre> Credits: [http://ubuntuforums.org/showthread.php?t=52768 Sam] ---- [[category:CategoryDocumentation]]
返回
EjectCDLauncher
。
导航菜单
页面操作
页面
讨论
阅读
查看源代码
历史
页面操作
页面
讨论
更多
工具
个人工具
登录
导航
首页
最近更改
随机页面
页面分类
帮助
搜索
编辑
编辑指南
沙盒
新闻动态
字词处理
工具
链入页面
相关更改
特殊页面
页面信息